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

Diff for /pegasus/src/Pegasus/ProviderManager2/SimpleResponseHandler.h between version 1.9.8.1 and 1.14.4.4

version 1.9.8.1, 2006/02/10 16:12:57 version 1.14.4.4, 2009/11/03 13:11:55
Line 1 
Line 1 
 //%2006////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development  // Licensed to The Open Group (TOG) under one or more contributor license
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.  // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;  // this work for additional information regarding copyright ownership.
 // IBM Corp.; EMC Corporation, The Open Group.  // Each contributor licenses this file to you under the OpenPegasus Open
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;  // Source License; you may not use this file except in compliance with the
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.  // License.
 // 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
 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;  // copy of this software and associated documentation files (the "Software"),
 // EMC Corporation; Symantec Corporation; The Open Group.  // to deal in the Software without restriction, including without limitation
   // the rights to use, copy, modify, merge, publish, distribute, sublicense,
   // and/or sell copies of the Software, and to permit persons to whom the
   // Software is furnished to do so, subject to the following conditions:
   //
   // The above copyright notice and this permission notice shall be included
   // in all copies or substantial portions of the Software.
   //
   // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 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.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy  //////////////////////////////////////////////////////////////////////////
 // of this software and associated documentation files (the "Software"), to  
 // deal in the Software without restriction, including without limitation the  
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  
 // sell copies of the Software, and to permit persons to whom the Software is  
 // furnished to do so, subject to the following conditions:  
 //  
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  
 // 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.  
 //  
 //==============================================================================  
 //  
 // Author: Chip Vincent (cvincent@us.ibm.com)  
 //  
 // Modified By:  
 //      Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)  
 //      Dave Rosckes (rosckes@us.ibm.com)  
 //      Brian G. Campbell, EMC (campbell_brian@emc.com) - PEP140/phase2  
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 43 
Line 34 
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/ResponseHandler.h> #include <Pegasus/Common/ResponseHandler.h>
   #include <Pegasus/Common/CIMResponseData.h>
   #include <Pegasus/Common/SCMO.h>
  
 #include <Pegasus/ProviderManager2/Linkage.h> #include <Pegasus/ProviderManager2/Linkage.h>
  
Line 66 
Line 59 
 class PEGASUS_PPM_LINKAGE SimpleResponseHandler : virtual public ResponseHandler class PEGASUS_PPM_LINKAGE SimpleResponseHandler : virtual public ResponseHandler
 { {
 public: public:
     SimpleResponseHandler(void);      SimpleResponseHandler();
     virtual ~SimpleResponseHandler(void);      virtual ~SimpleResponseHandler();
  
     virtual void processing(void);      virtual void processing();
  
     virtual void complete(void);      virtual void complete();
  
     // return the number of objects in this handler     // return the number of objects in this handler
     virtual Uint32 size(void) const;      virtual Uint32 size() const;
  
     // clear any objects in this handler     // clear any objects in this handler
     virtual void clear(void);      virtual void clear();
  
     ContentLanguageList getLanguages(void);      ContentLanguageList getLanguages();
  
 protected: protected:
     virtual void send(Boolean isComplete);     virtual void send(Boolean isComplete);
  
 }; };
  
 class PEGASUS_PPM_LINKAGE SimpleInstanceResponseHandler : public SimpleResponseHandler, public InstanceResponseHandler  class PEGASUS_PPM_LINKAGE SimpleInstanceResponseHandler :
       public SimpleResponseHandler, public InstanceResponseHandler
 { {
 public: public:
     SimpleInstanceResponseHandler(void);      SimpleInstanceResponseHandler();
       ~SimpleInstanceResponseHandler();
  
     virtual void processing(void);      virtual void processing();
  
     virtual void complete(void);      virtual void complete();
  
     virtual Uint32 size(void) const;      virtual Uint32 size() const;
  
     virtual void clear(void);      virtual void clear();
  
     virtual void deliver(const CIMInstance & instance);     virtual void deliver(const CIMInstance & instance);
  
       virtual void deliver(const SCMOInstance& instance);
   
     virtual void deliver(const Array<CIMInstance> & instances);     virtual void deliver(const Array<CIMInstance> & instances);
  
     const Array<CIMInstance> getObjects(void) const;      const Array<CIMInstance> getObjects() const;
       const Array<SCMOInstance> getSCMOObjects() const;
  
 private: private:
     Array<CIMInstance> _objects;     Array<CIMInstance> _objects;
       Array<SCMOInstance> _scmoObjects;
       //CIMInstanceResponseData responseData;
 }; };
  
 class PEGASUS_PPM_LINKAGE SimpleObjectPathResponseHandler : public SimpleResponseHandler, public ObjectPathResponseHandler  class PEGASUS_PPM_LINKAGE SimpleObjectPathResponseHandler :
       public SimpleResponseHandler, public ObjectPathResponseHandler
 { {
 public: public:
     SimpleObjectPathResponseHandler(void);      SimpleObjectPathResponseHandler();
       ~SimpleObjectPathResponseHandler();
  
     virtual void processing(void);      virtual void processing();
  
     virtual void complete(void);      virtual void complete();
  
     virtual Uint32 size(void) const;      virtual Uint32 size() const;
  
     virtual void clear(void);      virtual void clear();
  
     virtual void deliver(const CIMObjectPath & objectPath);     virtual void deliver(const CIMObjectPath & objectPath);
  
       virtual void deliver(const SCMOInstance& objectPath);
   
     virtual void deliver(const Array<CIMObjectPath> & objectPaths);     virtual void deliver(const Array<CIMObjectPath> & objectPaths);
  
     const Array<CIMObjectPath> getObjects(void) const;      const Array<CIMObjectPath> getObjects() const;
       const Array<SCMOInstance> getSCMOObjects() const;
  
 private: private:
     Array<CIMObjectPath> _objects;     Array<CIMObjectPath> _objects;
       Array<SCMOInstance> _scmoObjects;
       //CIMInstanceNamesResponseData responseData;
 }; };
  
 class PEGASUS_PPM_LINKAGE SimpleMethodResultResponseHandler : public SimpleResponseHandler, public MethodResultResponseHandler  class PEGASUS_PPM_LINKAGE SimpleMethodResultResponseHandler :
       public SimpleResponseHandler, public MethodResultResponseHandler
 { {
 public: public:
     SimpleMethodResultResponseHandler(void);      SimpleMethodResultResponseHandler();
  
     virtual void processing(void);      virtual void processing();
  
     virtual void complete(void);      virtual void complete();
  
     // NOTE: this is the total size (count) of ALL parameters!     // NOTE: this is the total size (count) of ALL parameters!
     virtual Uint32 size(void) const;      virtual Uint32 size() const;
  
     virtual void clear(void);      virtual void clear();
  
     virtual void deliverParamValue(const CIMParamValue & outParamValue);     virtual void deliverParamValue(const CIMParamValue & outParamValue);
  
Line 154 
Line 160 
  
     virtual void deliver(const CIMValue & returnValue);     virtual void deliver(const CIMValue & returnValue);
  
     const Array<CIMParamValue> getParamValues(void) const;      const Array<CIMParamValue> getParamValues() const;
  
     const CIMValue getReturnValue(void) const;      const CIMValue getReturnValue() const;
  
 private: private:
     Array<CIMParamValue> _objects;     Array<CIMParamValue> _objects;
Line 165 
Line 171 
  
 }; };
  
 class PEGASUS_PPM_LINKAGE SimpleIndicationResponseHandler : public SimpleResponseHandler, public IndicationResponseHandler  class PEGASUS_PPM_LINKAGE SimpleIndicationResponseHandler :
       public SimpleResponseHandler, public IndicationResponseHandler
 { {
 public: public:
     SimpleIndicationResponseHandler(void);      SimpleIndicationResponseHandler();
  
     virtual void processing(void);      virtual void processing();
  
     virtual void complete(void);      virtual void complete();
  
     virtual Uint32 size(void) const;      virtual Uint32 size() const;
  
     virtual void clear(void);      virtual void clear();
  
     virtual void deliver(const CIMIndication & indication);     virtual void deliver(const CIMIndication & indication);
  
Line 190 
Line 197 
         const OperationContext & context,         const OperationContext & context,
         const Array<CIMIndication> & indications);         const Array<CIMIndication> & indications);
  
     const Array<CIMIndication> getObjects(void) const;      const Array<CIMIndication> getObjects() const;
  
     // ATTN: why is this variable public?     // ATTN: why is this variable public?
     CIMInstance _provider;     CIMInstance _provider;
Line 200 
Line 207 
  
 }; };
  
 class PEGASUS_PPM_LINKAGE SimpleObjectResponseHandler : public SimpleResponseHandler, public ObjectResponseHandler  class PEGASUS_PPM_LINKAGE SimpleObjectResponseHandler :
       public SimpleResponseHandler, public ObjectResponseHandler
 { {
 public: public:
     SimpleObjectResponseHandler(void);      SimpleObjectResponseHandler();
  
     virtual void processing(void);      virtual void processing();
  
     virtual void complete(void);      virtual void complete();
  
     virtual Uint32 size(void) const;      virtual Uint32 size() const;
  
     virtual void clear(void);      virtual void clear();
  
     virtual void deliver(const CIMObject & object);     virtual void deliver(const CIMObject & object);
  
       virtual void deliver(const SCMOInstance& object);
   
       virtual void deliver(const CIMInstance& instance);
   
     virtual void deliver(const Array<CIMObject> & objects);     virtual void deliver(const Array<CIMObject> & objects);
  
     const Array<CIMObject> getObjects(void) const;      const Array<CIMObject> getObjects() const;
       const Array<SCMOInstance> getSCMOObjects() const;
  
 private: private:
     Array<CIMObject> _objects;     Array<CIMObject> _objects;
       Array<SCMOInstance> _scmoObjects;
 }; };
  
 class PEGASUS_PPM_LINKAGE SimpleInstance2ObjectResponseHandler : public SimpleResponseHandler, public InstanceResponseHandler  class PEGASUS_PPM_LINKAGE SimpleInstance2ObjectResponseHandler :
       public SimpleResponseHandler, public InstanceResponseHandler
 { {
 public: public:
     SimpleInstance2ObjectResponseHandler(void);      SimpleInstance2ObjectResponseHandler();
  
     virtual void processing(void);      virtual void processing();
  
     virtual void complete(void);      virtual void complete();
  
     virtual Uint32 size(void) const;      virtual Uint32 size() const;
  
     virtual void clear(void);      virtual void clear();
  
     virtual void deliver(const CIMInstance & object);     virtual void deliver(const CIMInstance & object);
  
       virtual void deliver(const SCMOInstance& object);
   
     virtual void deliver(const Array<CIMInstance> & objects);     virtual void deliver(const Array<CIMInstance> & objects);
  
     const Array<CIMObject> getObjects(void) const;      const Array<CIMObject> getObjects() const;
       const Array<SCMOInstance> getSCMOObjects() const;
  
 private: private:
     Array<CIMObject> _objects;     Array<CIMObject> _objects;
       Array<SCMOInstance> _scmoObjects;
 }; };
  
 class PEGASUS_PPM_LINKAGE SimpleValueResponseHandler : public SimpleResponseHandler, public ValueResponseHandler  class PEGASUS_PPM_LINKAGE SimpleValueResponseHandler :
       public SimpleResponseHandler, public ValueResponseHandler
 { {
 public: public:
     SimpleValueResponseHandler(void);      SimpleValueResponseHandler();
  
     virtual void processing(void);      virtual void processing();
  
     virtual void complete(void);      virtual void complete();
  
     virtual Uint32 size(void) const;      virtual Uint32 size() const;
  
     virtual void clear(void);      virtual void clear();
  
     virtual void deliver(const CIMValue & value);     virtual void deliver(const CIMValue & value);
  
     virtual void deliver(const Array<CIMValue> & values);     virtual void deliver(const Array<CIMValue> & values);
  
     const Array<CIMValue> getObjects(void) const;      const Array<CIMValue> getObjects() const;
  
 private: private:
     Array<CIMValue> _objects;     Array<CIMValue> _objects;


Legend:
Removed from v.1.9.8.1  
changed lines
  Added in v.1.14.4.4

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2