(file) Return to cimserver.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Server

Diff for /pegasus/src/Server/cimserver.cpp between version 1.14 and 1.15

version 1.14, 2001/06/02 14:01:29 version 1.15, 2001/06/03 17:05:03
Line 34 
Line 34 
 #include <Pegasus/Common/PegasusVersion.h> #include <Pegasus/Common/PegasusVersion.h>
 #include <Pegasus/Protocol/Handler.h> #include <Pegasus/Protocol/Handler.h>
 #include <Pegasus/Common/Logger.h> #include <Pegasus/Common/Logger.h>
   #include <Pegasus/Common/System.h>
  
 PEGASUS_USING_PEGASUS; PEGASUS_USING_PEGASUS;
 PEGASUS_USING_STD; PEGASUS_USING_STD;
Line 81 
Line 82 
                     "Sets the severity level that will be logged "},                     "Sets the severity level that will be logged "},
         {"logs", "ALL", false, Option::STRING, 0, 0, "X",         {"logs", "ALL", false, Option::STRING, 0, 0, "X",
                         "Not Used "},                         "Not Used "},
         {"daemon", "false", false, Option::STRING, 0, 0, "d",          {"logdir", "./logs", false, Option::STRING, 0, 0, "logdir",
                           "Directory for log files"},
           {"clearlogs", "false", false, Option::BOOLEAN, 0, 0, "cl",
                           "Clears the log files at startup"},
           {"daemon", "false", false, Option::BOOLEAN, 0, 0, "d",
                         "Not Used "},                         "Not Used "},
         {"version", "false", false, Option::BOOLEAN, 0, 0, "v",         {"version", "false", false, Option::BOOLEAN, 0, 0, "v",
                         "Displays Pegasus Version "},                         "Displays Pegasus Version "},
Line 200 
Line 205 
     String portOption;     String portOption;
     om.lookupValue("port", portOption);     om.lookupValue("port", portOption);
  
       // Get the log file directory definition.
       // We put String into Cstring because
       // Directory functions only handle Cstring.
       // ATTN-KS: create String based directory functions.
       String logsDirectory;
       om.lookupValue("logdir", logsDirectory);
   
       char* lgDir = logsDirectory.allocateCString();
   
       if (!System::isDirectory(lgDir))
           System::makeDirectory(lgDir);
   
       if (!System::isDirectory(lgDir))
           cout << "Logging Disabled";
       delete [] lgDir;
   
       cout << "Logs Directory = " << logsDirectory << endl;
   
   
     char* address = portOption.allocateCString();     char* address = portOption.allocateCString();
  
     // Put out startup up message.     // Put out startup up message.
Line 217 
Line 241 
         om.print();         om.print();
  
     // Set up the Logger     // Set up the Logger
     Logger::setHomeDirectory("./logs");      Logger::setHomeDirectory(logsDirectory);
   
  
     // Put server start message to the logger     // Put server start message to the logger
     Logger::put(Logger::STANDARD_LOG, "CIMServer", Logger::INFORMATION,     Logger::put(Logger::STANDARD_LOG, "CIMServer", Logger::INFORMATION,
         "Start $0 %1 port $2 $3 ", 88, PEGASUS_NAME, PEGASUS_VERSION,          "Start $0 $1 port $2 $3 ", 88, PEGASUS_NAME,
                 address, (pegasusIOTrace ? " Tracing": " "));          PEGASUS_VERSION, address, (pegasusIOTrace ? " Tracing": " "));
  
     // try loop to bind the address, and run the server     // try loop to bind the address, and run the server
     try     try
Line 230 
Line 255 
         Selector selector;         Selector selector;
         CIMServer server(&selector, pegasusHome);         CIMServer server(&selector, pegasusHome);
  
           // bind throws an exception of the bind fails
         server.bind(address);         server.bind(address);
         delete [] address;         delete [] address;
         server.runForever();         server.runForever();


Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2