(file) Return to System.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/System.h between version 1.3 and 1.52

version 1.3, 2001/04/12 07:25:20 version 1.52, 2005/03/08 02:54:34
Line 1 
Line 1 
 //BEGIN_LICENSE  //%2005////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a  // Permission is hereby granted, free of charge, to any person obtaining a copy
 // copy of this software and associated documentation files (the "Software"),  // of this software and associated documentation files (the "Software"), to
 // to deal in the Software without restriction, including without limitation  // deal in the Software without restriction, including without limitation the
 // the rights to use, copy, modify, merge, publish, distribute, sublicense,  // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 // and/or sell copies of the Software, and to permit persons to whom the  // sell copies of the Software, and to permit persons to whom the Software is
 // Software is furnished to do so, subject to the following conditions:  // furnished to do so, subject to the following conditions:
 // //
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL  // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING  // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 // DEALINGS IN THE SOFTWARE.  // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
   // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 // //
 //END_LICENSE  //==============================================================================
 //BEGIN_HISTORY  
 // //
 // Author: Michael E. Brasher  // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // $Log$  // Modified By:
 // Revision 1.3  2001/04/12 07:25:20  mike  //     Nag Boranna, Hewlett-Packard Company (nagaraja_boranna@hp.com)
 // Replaced ACE with new Channel implementation.  
 // Removed all ACE dependencies.  
 // //
 // Revision 1.1  2001/04/11 00:23:44  mike  // Modified By: Dave Rosckes (rosckes@us.ibm.com)
 // new files  //              Robert Kieninger, IBM (kieningr@de.ibm.com) for Bug#667
   //              David Dillard, VERITAS Software Corp.
   //                  (david.dillard@veritas.com)
   //              Sean Keenan, Hewlett-Packard Company (sean.keenan@hp.com)
 // //
 //  //%/////////////////////////////////////////////////////////////////////////////
 //END_HISTORY  
  
 #ifndef Pegasus_System_h #ifndef Pegasus_System_h
 #define Pegasus_System_h #define Pegasus_System_h
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
   #include <Pegasus/Common/String.h>
   #include <Pegasus/Common/Linkage.h>
   #include <Pegasus/Common/Logger.h>
   #include <sys/stat.h>
   
   
   #if defined(PEGASUS_OS_TYPE_WINDOWS)
   #ifndef mode_t
   typedef unsigned long mode_t;
   #endif
   #endif
   
   
   //
   // Protocal Type
   //
   #define TCP                        "tcp"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   
   #if defined(PEGASUS_OS_VMS)
       //
       // Needed to save filename. We do NOT use dlopen and dlsym.
       // VMS implementation uses OS specific code for these functions.
       //
       static String saveFileName;
   #endif
   
 /** This is an opaque type which is used to represent dynamic library /** This is an opaque type which is used to represent dynamic library
     handles returned by the System::loadDynamicLibrary() method and     handles returned by the System::loadDynamicLibrary() method and
     accepted by the System::loadDynamicProcedure() method.     accepted by the System::loadDynamicProcedure() method.
Line 49 
Line 82 
 /** This is an opaque type which is returned by System::loadDynamicSymbol(). /** This is an opaque type which is returned by System::loadDynamicSymbol().
     Values of this type may be casted to the appropriate target type.     Values of this type may be casted to the appropriate target type.
 */ */
   #if !defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM) && !defined(PEGASUS_PLATFORM_OS400_ISERIES_IBM) && !defined(PEGASUS_PLATFORM_AIX_RS_IBMCXX)
 typedef struct DynamicSymbolHandle_* DynamicSymbolHandle; typedef struct DynamicSymbolHandle_* DynamicSymbolHandle;
   #else
   extern "C" {typedef int (* DynamicSymbolHandle)(void);}
   #endif
   
  
  
 /** The System class defines wrappers for operating system related calls. /** The System class defines wrappers for operating system related calls.
Line 60 
Line 98 
 class PEGASUS_COMMON_LINKAGE System class PEGASUS_COMMON_LINKAGE System
 { {
 public: public:
       /** getCurrentTime - Gets the current time as seconds and milliseconds
       into the provided variables using system functions.
       @param seconds Return for the seconds component of the time.
       @param milliseconds Return for the milliseconds component of the time.
       @return The value is returned in the parameters.
       The time returned is as defined in number of seconds and milliseconds
       since 00:00 Coordinated Universal Time (UTC), January 1, 1970,
  
       */
     static void getCurrentTime(Uint32& seconds, Uint32& milliseconds);     static void getCurrentTime(Uint32& seconds, Uint32& milliseconds);
  
       /** getCurrentASCIITime Gets time/date in a fixed format. The format is
           YY MM DD-HH:MM:SS
           @return Returns String with the ASCII time date.
       */
       static String getCurrentASCIITime();
   
     static void sleep(Uint32 seconds);     static void sleep(Uint32 seconds);
  
     static Boolean exists(const char* path);     static Boolean exists(const char* path);
Line 87 
Line 139 
  
     static Boolean renameFile(const char* oldPath, const char* newPath);     static Boolean renameFile(const char* oldPath, const char* newPath);
  
       static Boolean copyFile(const char* fromPath, const char* toPath);
   
       /** Unix issue:<br><br><b>RTLD_<bah></b> issue. Currently Pegasus uses RTLD_NOW during
           loading of the library if supported by OS.  Previous to 2.2, Pegasus used RTLD_GLOBAL on Linux
           - that behaviour is now deprecated.
       */
     static DynamicLibraryHandle loadDynamicLibrary(const char* fileName);     static DynamicLibraryHandle loadDynamicLibrary(const char* fileName);
  
       static void unloadDynamicLibrary(DynamicLibraryHandle libraryHandle);
   
       static String dynamicLoadError(void);
   
     static DynamicSymbolHandle loadDynamicSymbol(     static DynamicSymbolHandle loadDynamicSymbol(
         DynamicLibraryHandle libraryHandle,         DynamicLibraryHandle libraryHandle,
         const char* symbolName);         const char* symbolName);
   
   #if defined(PEGASUS_OS_VMS)
       static DynamicSymbolHandle loadVmsDynamicSymbol(
           const char* symbolName,
           const char* fileName,
           const char *vmsProviderDir);
   #endif
   
       static String getHostName();
       static String getFullyQualifiedHostName ();
       static String getSystemCreationClassName ();
       static String getHostIP(const String &hostName);
   
       static Uint32 _acquireIP(const char* hostname);
   
       static Uint32 lookupPort(
           const char * serviceName,
           Uint32 defaultPort);
   
       static String getEffectiveUserName();
   
       /**
       This function is used to input a password with echo disabled.
       The function reads up to a newline and returns a password of at most
       8 characters.
   
       @param  prompt      String containing the message prompt to be displayed
       @return             password obtained from the user
       */
       static String getPassword(const char* prompt);
   
       /**
       This function is used to encrypt the user's password.
       The encryption is compatible with Apache's  password file (generated using
       the htpasswd command )
   
       @param password     Password to be encrypted.
       @param salt         Two character string chosen from the set [a-zA-Z0-9./].
   
       @return             Encrypted password.
       */
       static String encryptPassword(const char* password, const char* salt);
   
       /**
       This function is used to verify whether specified user is a user
       on the local system.
   
       @param userName     User name to be verified.
   
       @return             true if the username is valid, else false
       */
       static Boolean isSystemUser(const char* userName);
   
       /**
       Checks whether the given user is a privileged user.
   
       @param userName     User name to be checked.
       @return             true if the user is a privileged user, else false
       */
       static Boolean isPrivilegedUser(const String& userName);
   
       /**
       This function returns the privileged user name on the system.
   
       @return             the privileged user name
       */
       static String getPrivilegedUserName();
   
       /**
       This function is used to verify whether the specified user is a member
       of the specified user group.
   
       @param userName     User name to be verified.
   
       @param groupName    User group name.
   
       @return             true if the user is a member of the user group,
                           false otherwise.
   
       @throw              InternalSystemError - If there is an error
                           accessing the specified user or group information.
       */
       static Boolean isGroupMember(const char* userName, const char* groupName);
   
       /**
       Changes the process user context to the specified user.
   
       @param userName     User name to set as the process user context.
   
       @return             True if the user context is successfully changed,
                           false otherwise.
       */
   #ifndef PEGASUS_OS_OS400
       static Boolean changeUserContext(const char* userName);
   #endif
       /**
       This function is used to get the process ID of the calling process.
   
       @return             Process ID
       */
       static Uint32 getPID();
   
       static Boolean truncateFile(const char* path, size_t newSize);
   
       /** Compare two strings but ignore any case differences.
           This method is provided only because some platforms lack a strcasecmp
           function in the standard library.
       */
       static Sint32 strcasecmp(const char* s1, const char* s2);
   
       /** Return just the file or directory name from the path into basename.
           This method returns a file or directory name at the end of a path.
           The path can be relative or absolute. If the path is the root,
           then empty string is returned.
       */
       static char *extract_file_name(const char *fullpath, char *basename);
   
       /** Return just the pathname into dirname. The fullpath can be relative
           or absolute. This method returns a path minus the file or
           directory name at the end of a supplied path (fullpath).
           If the fullpath is the root, then fullpath is returned.
           The resulting path will contain a trailing slash unless fullpath is
           a file or directory name, in which case, just the file or directory
           name is returned.
       */
       static char *extract_file_path(const char *fullpath, char *dirname);
   
       // Is absolute path?
       static Boolean is_absolute_path(const char *path);
   
       /** Changes file permissions on the given file.
           @param path path of the file.
           @param mode the bit-wise inclusive OR of the values for the desired
           permissions.
           @return true on success, false on error and errno is set appropriately.
       */
       static Boolean changeFilePermissions(const char* path, mode_t mode);
   
       /** Checks whether the specified file is owned by the effective user for
           the current process.
           @param path Path of the file to check.
           @return True if the file is owned by the effective user for the
           current process, false otherwise.
       */
       static Boolean verifyFileOwnership(const char* path);
   
       /**
           Flag indicating whether shared libraries are loaded with the
           BIND_VERBOSE option.
   
           THIS FLAG IS USED ON HP-UX ONLY.
        */
       static Boolean bindVerbose;
   
       /** This function is an abstraction for the openlog interface used in the Logger
           class.  Each platform intending to use system logs should support this interface
       */
       static void openlog(const String &);
   
       /** This function is an abstraction for the syslog interface used in the Logger
           class.  Each platform intending to use system logs should support this interface
       */
       static void syslog(Uint32, const char *);
   
       /** This function is an abstraction for the closelog interface used in the Logger
           class.  Each platform intending to use system logs should support this interface
       */
       static void closelog();
   
       // System ID constants for Logger::put and Logger::trace
       static const String CIMSERVER;
   
       // System ID constants for Logger::put and Logger::trace
       static const String CIMLISTENER;
   
 }; };
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.3  
changed lines
  Added in v.1.52

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2