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

  1 karl  1.11 //%2006////////////////////////////////////////////////////////////////////////
  2 bob   1.1  //
  3 karl  1.9  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
  4            // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
  5            // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
  6 karl  1.8  // IBM Corp.; EMC Corporation, The Open Group.
  7 karl  1.9  // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
  8            // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
  9 karl  1.10 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 10            // EMC Corporation; VERITAS Software Corporation; The Open Group.
 11 karl  1.11 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 12            // EMC Corporation; Symantec Corporation; The Open Group.
 13 bob   1.1  //
 14            // Permission is hereby granted, free of charge, to any person obtaining a copy
 15 kumpf 1.4  // of this software and associated documentation files (the "Software"), to
 16            // deal in the Software without restriction, including without limitation the
 17            // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 18 bob   1.1  // sell copies of the Software, and to permit persons to whom the Software is
 19            // furnished to do so, subject to the following conditions:
 20            // 
 21 kumpf 1.4  // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 22 bob   1.1  // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 23            // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 24 kumpf 1.4  // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 25            // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 26            // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 27 bob   1.1  // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 28            // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 29            //
 30            //==============================================================================
 31            //
 32            // Author: Bob Blair (bblair@bmc.com)
 33            //
 34 kumpf 1.6  // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company
 35            //                (carolann_graves@hp.com)
 36 gerarda 1.7  //              Gerarda Marquez (gmarquez@us.ibm.com)
 37              //              -- PEP 43 changes
 38 bob     1.1  //
 39              //%/////////////////////////////////////////////////////////////////////////////
 40              //
 41              // This class is the interface between the cimmof compiler, in its various
 42              // forms, and the various Pegasus repository interfaces which as the
 43              // time this class was created were CIMRepository and CIMClient.
 44              //
 45              // This class supports only the operations that the compiler needs, which
 46              // are
 47              //     addClass()
 48              //     addInstance()
 49              //     addQualifier()
 50              //     createNameSpace()
 51              //
 52              // If we create compiler-like tools to do mass changes to the repository,
 53              // then I expect that we will add methods to deal with the modification.
 54              // This class is intended to be very light, basically making it easy
 55              // to choose what repository and what repository interface to use.
 56              // It includes both, since there's nothing to be saved by splitting them.
 57              // Anything that the client or repository interface throws gets passed
 58              // to the cimmofParser level, which is equipped to handle the exceptions
 59 bob     1.1  //
 60              
 61              #ifndef CIMMOF_CLIENT_H_
 62              #define CIMMOF_CLIENT_H_
 63              
 64 kumpf   1.2  #include <Pegasus/Common/Config.h>
 65 bob     1.1  #include <Pegasus/Common/String.h>
 66              #include "compilerCommonDefs.h"
 67              #include <Pegasus/Client/CIMClient.h>
 68 kumpf   1.5  #include <Pegasus/Compiler/Linkage.h>
 69 bob     1.1  
 70 mateus.baur 1.11.2.1 #define CIMMOFCLIENT_TIMEOUT_DEFAULT 120000
 71                      
 72 bob         1.1      PEGASUS_NAMESPACE_BEGIN
 73                      
 74                      // Forward declarations;
 75                      class CIMClass;
 76                      class CIMQualifierDecl;
 77                      class CIMInstance;
 78                      
 79                      class PEGASUS_COMPILER_LINKAGE cimmofClient {
 80                       private:
 81                        compilerCommonDefs::operationType _ot;
 82                        CIMClient *_client;
 83                       public:
 84                        cimmofClient();
 85 kumpf       1.3        virtual ~cimmofClient();
 86 bob         1.1        void init(String &location,
 87                      	    compilerCommonDefs::operationType ot);
 88 kumpf       1.6        virtual void addClass(
 89                            const CIMNamespaceName &nameSpace, 
 90                            CIMClass &Class) const;
 91                        virtual void addQualifier(
 92                            const CIMNamespaceName &nameSpace, 
 93                            CIMQualifierDecl &qual) const;
 94                        virtual void addInstance(
 95                            const CIMNamespaceName &nameSpace, 
 96                            CIMInstance &instance) const;
 97                        virtual CIMQualifierDecl getQualifierDecl(
 98                            const CIMNamespaceName &nameSpace,
 99                            const CIMName &qualifierName) const;
100                        virtual CIMClass getClass(
101                            const CIMNamespaceName &nameSpace, 
102                            const CIMName &className) const;
103 gerarda     1.7        virtual void modifyClass(
104                            const CIMNamespaceName &nameSpace, 
105                            CIMClass &Class) const;
106 kumpf       1.6        virtual void createNameSpace(const CIMNamespaceName &nameSpace) const;
107 bob         1.1      };
108                      
109                      PEGASUS_NAMESPACE_END
110                      
111                      #endif
112                      
113                      
114                      
115                      

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2