Konsole::NullProcessInfo

Search for usage in LXR

Konsole::NullProcessInfo Class Reference

#include <ProcessInfo.h>

Inheritance diagram for Konsole::NullProcessInfo:

Public Member Functions

 NullProcessInfo (int pid, bool readEnvironment=false)
 
- Public Member Functions inherited from Konsole::ProcessInfo
QVector< QStringarguments (bool *ok) const
 
QString currentDir (bool *ok) const
 
QMap< QString, QStringenvironment (bool *ok) const
 
Error error () const
 
int foregroundPid (bool *ok) const
 
QString format (const QString &text) const
 
bool isValid () const
 
QString name (bool *ok) const
 
int parentPid (bool *ok) const
 
int pid (bool *ok) const
 
void setUserHomeDir ()
 
void update ()
 
QString userHomeDir () const
 
int userId (bool *ok) const
 
QString userName () const
 
QString validCurrentDir () const
 

Protected Member Functions

bool readProcessInfo (int pid, bool readEnvironment) override
 
void readUserName (void) override
 
- Protected Member Functions inherited from Konsole::ProcessInfo
 ProcessInfo (int pid, bool readEnvironment=false)
 
void addArgument (const QString &argument)
 
void addEnvironmentBinding (const QString &name, const QString &value)
 
void clearArguments ()
 
void setCurrentDir (const QString &dir)
 
void setError (Error error)
 
void setFileError (QFile::FileError error)
 
void setForegroundPid (int pid)
 
void setName (const QString &name)
 
void setParentPid (int pid)
 
void setPid (int pid)
 
void setUserId (int uid)
 
void setUserName (const QString &name)
 

Additional Inherited Members

- Public Types inherited from Konsole::ProcessInfo
enum  Error { NoError , UnknownError , PermissionsError }
 
enum  Field {
  PROCESS_ID = 1 , PARENT_PID = 2 , FOREGROUND_PID = 4 , ARGUMENTS = 8 ,
  ENVIRONMENT = 16 , NAME = 32 , CURRENT_DIR = 64 , UID = 128
}
 
typedef QFlags< Field > Fields
 
- Static Public Member Functions inherited from Konsole::ProcessInfo
static QString localHost ()
 
static std::unique_ptr< ProcessInfonewInstance (int pid, bool readEnvironment=false)
 

Detailed Description

Implementation of ProcessInfo which does nothing.

Used on platforms where a suitable ProcessInfo subclass is not available.

isValid() will always return false for instances of NullProcessInfo

Definition at line 327 of file ProcessInfo.h.

Constructor & Destructor Documentation

◆ NullProcessInfo()

NullProcessInfo::NullProcessInfo ( int pid,
bool readEnvironment = false )
explicit

Constructs a new NullProcessInfo instance.

See ProcessInfo::newInstance()

Definition at line 339 of file ProcessInfo.cpp.

Member Function Documentation

◆ readProcessInfo()

bool NullProcessInfo::readProcessInfo ( int pid,
bool readEnvironment )
overrideprotectedvirtual

This is called on construction to read the process state Subclasses should reimplement this function to provide platform-specific process state reading functionality.

When called, readProcessInfo() should attempt to read all of the necessary state information. If the attempt is successful, it should set the process id using setPid(), and update the other relevant information using setParentPid(), setName(), setArguments() etc.

Calls to isValid() will return true only if the process id has been set using setPid()

Parameters
pidThe process id of the process to read
readEnvironmentSpecifies whether the environment bindings for the process should be read

Implements Konsole::ProcessInfo.

Definition at line 344 of file ProcessInfo.cpp.

◆ readUserName()

void NullProcessInfo::readUserName ( void )
overrideprotectedvirtual

Implements Konsole::ProcessInfo.

Definition at line 349 of file ProcessInfo.cpp.


The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Aug 30 2024 11:51:42 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.