00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef _MPCL_SYSTEM_POSIX_1_SYSTEM__
00027 #define _MPCL_SYSTEM_POSIX_1_SYSTEM__
00028
00029 #include <syslog.h>
00030 #include "../system.hh"
00031
00032
00034 namespace mpcl
00035 {
00036
00038 namespace system
00039 {
00040
00042 class TSystem : public ISystem
00043 {
00044
00045 public:
00046
00048 typedef TBigEndianBuffer TBigEndianBuffer;
00049
00051 typedef TLittleEndianBuffer TLittleEndianBuffer;
00052
00054 typedef TMachineDependent TMachineDependent;
00055
00056
00057 public:
00058
00059
00060
00061
00062
00064 TSystem (void)
00065 {
00066 openlog (NULL, LOG_PID, LOG_USER);
00067 }
00068
00069 ~TSystem (void)
00070 {
00071 closelog();
00072 }
00073
00079 TString getCurrentDirectory (void) const;
00080
00081 char getDirectorySeparator (void) const;
00082
00083 std::size_t getFileSize (const char* pkcFILE_NAME) const
00084 throw (TErrorException);
00085
00086 char getPathSeparator (void) const;
00087
00088 int getProcessId (void) const;
00089
00096 void sleep (std::size_t zSECONDS, std::size_t zNANOSECONDS = 0) const;
00097
00098 void writeLogEntry ( const std::string& rkyMESSAGE ,
00099 ELogLevel eLEVEL = eNotice ,
00100 ELogFacility eFACILITY = eUser ) const;
00101
00102 void yield (void) const;
00103
00104 };
00105
00106
00107
00108
00109
00110
00111 extern TSystem tSystem;
00112
00113 }
00114
00115 }
00116
00117
00118 #endif // not _MPCL_SYSTEM_POSIX_1_SYSTEM__