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

Diff for /pegasus/src/Pegasus/Config/ConfigPropertyOwner.h between version 1.1 and 1.1.2.1

version 1.1, 2001/07/31 23:54:37 version 1.1.2.1, 2001/07/31 23:54:37
Line 0 
Line 1 
   //%/////////////////////////////////////////////////////////////////////////////
   //
   // Copyright (c) 2000, 2001 BMC Software, Hewlett-Packard Company, IBM,
   // The Open Group, Tivoli Systems
   //
   // 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: Nag Boranna (nagaraja_boranna@hp.com)
   //
   // Modified By:
   //
   //%/////////////////////////////////////////////////////////////////////////////
   
   
   ///////////////////////////////////////////////////////////////////////////////
   //
   // This file defines the configuration property owner class.
   //
   ///////////////////////////////////////////////////////////////////////////////
   
   
   #ifndef Pegasus_ConfigPropertyOwner_h
   #define Pegasus_ConfigPropertyOwner_h
   
   #include <Pegasus/Common/String.h>
   #include <Pegasus/Common/Config.h>
   #include <Pegasus/Config/ConfigExceptions.h>
   
   
   PEGASUS_NAMESPACE_BEGIN
   
   
   ///////////////////////////////////////////////////////////////////////////////
   //  ConfigPropertyOwner Class
   ///////////////////////////////////////////////////////////////////////////////
   
   /**
       This is an abstract class that the individual config property
       owners will extend and provide implementation.
   */
   class PEGASUS_COMMON_LINKAGE ConfigPropertyOwner
   {
   public:
   
       /** Constructors  */
       ConfigPropertyOwner() { }
   
   
       /** Destructor  */
       virtual ~ConfigPropertyOwner() { }
   
   
       /**
       Get information about the specified property.
   
       @param name           The name of the property.
       @param propertyInfo   List to store the property info.
       @exception UnrecognizedConfigProperty  if the property is not defined.
       */
       virtual void getPropertyInfo(const String& name,
           Array<String>& propertyInfo)
           throw (UnrecognizedConfigProperty) = 0;
   
   
       /**
       Get default value of the specified property.
   
       @param  name         The name of the property.
       @return string containing the default value of the property specified.
       @exception UnrecognizedConfigProperty  if the property is not defined.
       */
       virtual const String getDefaultValue(const String& name)
           throw (UnrecognizedConfigProperty) = 0;
   
   
       /**
       Get current value of the specified property.
   
       @param  name         The name of the property.
       @return string containing the currnet value of the property specified.
       @exception UnrecognizedConfigProperty  if the property is not defined.
       */
       virtual const String getCurrentValue(const String& name)
           throw (UnrecognizedConfigProperty) = 0;
   
   
       /**
       Get planned value of the specified property.
   
       @param  name         The name of the property.
       @return string containing the planned value of the property specified.
       @exception UnrecognizedConfigProperty  if the property is not defined.
       */
       virtual const String getPlannedValue(const String& name)
           throw (UnrecognizedConfigProperty) = 0;
   
   
       /**
       Init current value of the specified property to the specified value.
       This method is exected to be called only once at the start of the
       CIMOM. The property value will be initialized irrespective of whether
       the property is dynamic or not.
   
       @param  name         The name of the property.
       @param  value        The current value of the property.
       @exception     UnrecognizedConfigProperty  if the property is not defined.
       @exception     InvalidPropertyValue  if the property value is not valid.
       */
       virtual void initCurrentValue(const String& name, const String& value)
           throw (UnrecognizedConfigProperty, InvalidPropertyValue) = 0;
   
   
       /**
       Init planned value of the specified property to the specified value.
       This method is exected to be called only once at the start of the
       CIMOM. The property value will be initialized irrespective of whether
       the property is dynamic or not.
   
       @param  name         The name of the property.
       @param  value        The planned value of the property.
       @exception     UnrecognizedConfigProperty  if the property is not defined.
       @exception     InvalidPropertyValue  if the property value is not valid.
       */
       virtual void initPlannedValue(const String& name, const String& value)
           throw (UnrecognizedConfigProperty, InvalidPropertyValue) = 0;
   
   
       /**
       Update current value of the specified property to the specified value.
       The property value will be updated only if the property is dynamically
       updatable.
   
       @param  name         The name of the property.
       @param  value        The current value of the property.
       @exception     NonDynamicConfigProperty  if the property is not dynamic.
       @exception     InvalidPropertyValue  if the property value is not valid.
       @exception     UnrecognizedConfigProperty  if the property is not defined.
       */
       virtual void updateCurrentValue(
           const String& name,
           const String& value)
           throw (NonDynamicConfigProperty, InvalidPropertyValue,
               UnrecognizedConfigProperty) = 0;
   
   
       /**
       Update planned value of the specified property to the specified value.
   
       @param  name         The name of the property.
       @param  value        The planned value of the property.
       @exception     InvalidPropertyValue  if the property value is not valid.
       @exception     UnrecognizedConfigProperty  if the property is not defined.
       */
       virtual void updatePlannedValue(
           const String& name,
           const String& value)
           throw (InvalidPropertyValue, UnrecognizedConfigProperty) = 0;
   
   
       /**
       Checks to see if the given value is valid or not.
   
       @param  name         The name of the property.
       @param  value        The value of the property to be validated.
       @return true if the specified value for the property is valid.
       @exception UnrecognizedConfigProperty  if the property is not defined.
       */
       virtual Boolean isValid(const String& name, const String& value)
           throw (UnrecognizedConfigProperty) = 0;
   
   
       /**
       Checks to see if the specified property is dynamic or not.
   
       @param  name         The name of the property.
       @return true if the specified property is dynamic.
       @exception UnrecognizedConfigProperty  if the property is not defined.
       */
       virtual Boolean isDynamic(const String& name)
           throw (UnrecognizedConfigProperty) = 0;
   
   };
   
   
   ///////////////////////////////////////////////////////////////////////////////
   //  ConfigProperty
   ///////////////////////////////////////////////////////////////////////////////
   /**
       The ConfigProperty struct used for defining the config properties.
   
       This structure is used by property owners that implement the
       ConfigPropertyOwner interface. Each config property they own will have
       their attributes defined in a structure of the type ConfigProperty.
       The structure members are initialized using the values defined in
       ConfigPropertyRow or by the set methods.
   */
   ///////////////////////////////////////////////////////////////////////////////
   
   struct ConfigProperty
   {
       String     propertyName;    // Name of a config property
       String     defaultValue;    // Default value of a config property
       String     currentValue;    // Current value of a config property
       String     plannedValue;    // Planned of a config property
       Boolean    dynamic;            // Dynamic or non dynamic property
       char**     domain;            // List of valid values of a config property
       Uint32     domainSize;        // Size of the domain
   };
   
   
   
   ///////////////////////////////////////////////////////////////////////////////
   /**
       The ConfigPropertyRow used for uniformly defining the values of
       the properties.
   
       This structure is intended to be used by property owners that implement
       the ConfigPropertyOwner interface. Using this structure they can define
       the in memory default values for each attributes of the properties
       that they own.
   */
   ///////////////////////////////////////////////////////////////////////////////
   
   struct ConfigPropertyRow
   {
       const char* propertyName;
       const char* defaultValue;
       Boolean     dynamic;
       char**      domain;
       Uint32      domainSize;
   };
   
   
   ///////////////////////////////////////////////////////////////////////////////
   /**
       Definition of commonly use constant string literals
   */
   ///////////////////////////////////////////////////////////////////////////////
   
   const static char* STRING_TRUE = "true";
   
   const static char* STRING_FALSE = "false";
   
   
   PEGASUS_NAMESPACE_END
   
   #endif /* Pegasus_ConfigPropertyOwner_h */


Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2