(file) Return to ProviderManagerService.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / ProviderManager2 / Attic

Diff for /pegasus/src/Pegasus/ProviderManager2/Attic/ProviderManagerService.h between version 1.28 and 1.36

version 1.28, 2005/02/02 19:15:58 version 1.36, 2006/07/11 18:39:35
Line 1 
Line 1 
 //%2004////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems. // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
Line 6 
Line 6 
 // IBM Corp.; EMC Corporation, The Open Group. // IBM Corp.; EMC Corporation, The Open Group.
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.; // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group. // 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.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 48 
Line 52 
 #include <Pegasus/Common/CIMMessage.h> #include <Pegasus/Common/CIMMessage.h>
 #include <Pegasus/Common/OperationContextInternal.h> #include <Pegasus/Common/OperationContextInternal.h>
 #include <Pegasus/Common/AutoPtr.h> #include <Pegasus/Common/AutoPtr.h>
   #include <Pegasus/Common/List.h>
   #include <Pegasus/Common/Mutex.h>
 #include <Pegasus/Repository/CIMRepository.h> #include <Pegasus/Repository/CIMRepository.h>
 #include <Pegasus/Server/ProviderRegistrationManager/ProviderRegistrationManager.h> #include <Pegasus/Server/ProviderRegistrationManager/ProviderRegistrationManager.h>
  
 #include <Pegasus/ProviderManager2/SafeQueue.h>  
 #include <Pegasus/ProviderManager2/ProviderManagerRouter.h> #include <Pegasus/ProviderManager2/ProviderManagerRouter.h>
  
 #include <Pegasus/ProviderManager2/Linkage.h> #include <Pegasus/ProviderManager2/Linkage.h>
Line 65 
Line 70 
 public: public:
     ProviderManagerService(     ProviderManagerService(
         ProviderRegistrationManager* providerRegistrationManager,         ProviderRegistrationManager* providerRegistrationManager,
         CIMRepository* repository);          CIMRepository* repository,
           ProviderManager* (*createDefaultProviderManagerCallback)());
  
     virtual ~ProviderManagerService();     virtual ~ProviderManagerService();
  
     void unloadIdleProviders();     void unloadIdleProviders();
  
     static void indicationCallback(CIMProcessIndicationRequestMessage* request);     static void indicationCallback(CIMProcessIndicationRequestMessage* request);
     static void handleCimResponse(      static void responseChunkCallback(
         CIMRequestMessage& request, CIMResponseMessage& response);          CIMRequestMessage* request, CIMResponseMessage* response);
   
       /**
           Callback function to be called upon detection of failure of a
           provider module.
        */
       static void providerModuleFailureCallback (const String & moduleName,
           const String & userName, Uint16);
  
 private: private:
     ProviderManagerService();     ProviderManagerService();
Line 96 
Line 109 
  
     void _updateProviderModuleStatus(     void _updateProviderModuleStatus(
         CIMInstance& providerModule,         CIMInstance& providerModule,
         Uint16 fromStatus,          const Array<Uint16>& removeStatus,
         Uint16 toStatus);          const Array<Uint16>& appendStatus);
  
     static ProviderManagerService* providerManagerService;     static ProviderManagerService* providerManagerService;
  
     CIMRepository* _repository;     CIMRepository* _repository;
  
     SafeQueue<AsyncOpNode *> _incomingQueue;      List<AsyncOpNode,Mutex> _incomingQueue;
     SafeQueue<AsyncOpNode *> _outgoingQueue;      List<AsyncOpNode,Mutex> _outgoingQueue;
  
     ProviderManagerRouter* _basicProviderManagerRouter;     ProviderManagerRouter* _basicProviderManagerRouter;
     ProviderManagerRouter* _oopProviderManagerRouter;     ProviderManagerRouter* _oopProviderManagerRouter;
Line 120 
Line 133 
      */      */
     AtomicInt _unloadIdleProvidersBusy;     AtomicInt _unloadIdleProvidersBusy;
  
         friend class CMPIProviderManager;  
  
 }; };
  


Legend:
Removed from v.1.28  
changed lines
  Added in v.1.36

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2