//%2005//////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems. // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.; // IBM Corp.; EMC Corporation, The Open Group. // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.; // 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. // // 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: Yi Zhou, Hewlett-Packard Company (yi.zhou@hp.com) // // Modified By: // //%///////////////////////////////////////////////////////////////////////////// #ifndef Pegasus_IndicationFormatter_h #define Pegasus_IndicationFormatter_h #include #include #include #include #include PEGASUS_NAMESPACE_BEGIN /** The IndicationFormatter class formats an indication message. @author Hewlett-Packard Company */ class PEGASUS_COMMON_LINKAGE IndicationFormatter { public: /** Constructs a default indication text message from the received indication instance. @param indication the received indication instance @return String containing default indication text message */ static String formatDefaultIndicationText( const CIMInstance & indication); /** Constructs a human readable indication text message from the specified indication textFormat, textFormatParams, and received indication instance. @param textFormat the specified indication textFormat @param textFormatParams the indexed array containing the names of properties defined in the select clause of the associated CIM_IndicationFilter Query @param indication the received indication instance @param contentLangs the Content-Languages in the subscription instance @return String containing a human readable indication text message */ static String formatIndicationText( const String & textFormat, const Array& textFormatParams, const CIMInstance & indication, const ContentLanguages & contentLangs); /** Validates the syntax and the provided type for the property TextFormat in the instance. If the value of the property has a syntax error, or the provided type does not match the property type, an exception is thrown. This function is called by the _canCreate function, and is used to validate the syntax and the provided type for the property TextFormat in the Formatted Subscription instance. @param textFormatStr the string to be validated @param indicationClass the indication class @param textFormatParams the value of the TextFormatParameters @throw CIM_ERR_INVALID_PARAMETER if there is a syntax error for the value of property TextFormat or type mismatch */ static void validateTextFormat ( const String & textFormatStr, const CIMClass & indicationClass, const Array & textFormatParams); /** Validates the value of the property TextFormatParameters in the subscriptionInstance. If the property name in the TextFormatParameters is not the name contained in the select clause of the associated filter query in the filterInstance, an exception is thrown. @param propertyList the list of properties to be validated @param indicationClass the indication class @param textFormatParams the value of the property TextFormatParameters @throw CIM_ERR_INVALID_PARAMETER if the select clause of the filter query does not contain the provided property name */ static void validateTextFormatParameters ( const CIMPropertyList & propertyList, const CIMClass & indicationClass, const Array & textFormatParams); private: /** gets specified indication property value from the received indication instance. @param propertyName the specified property name @param arrayIndexStr the specified index string of the array @param indication the received indication instance @return String containing property value */ static String _getIndPropertyValue( const String & propertyName, const String & arrayIndexStr, const CIMInstance & indication); /** Retrieves the array values referenced by the specified CIMValue. @param propertyValue the CIMValue @param indexStr the array index @return String containing array values referenced by the specified CIMValue */ static String _getArrayValues( const CIMValue & propertyValue, const String & indexStr); /** Validates the index string Index string only can be an integer. Otherwise, an exception is thrown. @param indexStr index string to be validated @throw CIM_ERR_INVALID_PARAMETER if the index is invalid */ static void _isValidIndex( const char * indexStr); /** Validates the provided property type string. If the provided property type does not match the type of the property, or the provided property type is not valid type, or the dynamic content with an array index refers to a non array type, an exception is thrown. This function is called by the _validatePropertySyntaxAndType function, and is used to validate the provided property type. @param indicationClass the indication class @param propertyParam the provided property @param propertyTypeStr the provided property type @param isArray indicates whether refers to an array type @throw CIM_ERR_INVALID_PARAMETER if the provided property type is unexpected */ static void _validatePropertyType ( const CIMClass & indicationClass, const String & propertyParam, const String & propertyTypeStr, const Boolean & isArray); }; PEGASUS_NAMESPACE_END #endif /* Pegasus_IndicationFormatter_h */