Click or drag to resize

ConfigurablePofContext Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
This class implements the IPofContext interface using information provided in a configuration file (or in a passed XML configuration).
Inheritance Hierarchy

Namespace:  Tangosol.IO.Pof
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class ConfigurablePofContext : IPofContext, 
	ISerializer, IXmlConfigurable

The ConfigurablePofContext type exposes the following members.

Constructors
  NameDescription
Public methodConfigurablePofContext
Default constructor.
Public methodConfigurablePofContext(Stream)
Create a ConfigurablePofContext that will use the passed configuration information.
Public methodConfigurablePofContext(String)
Create a ConfigurablePofContext that will load configuration information from the specified locator.
Public methodConfigurablePofContext(ConfigurablePofContext)
Create a copy of ConfigurablePofContext from the given one.
Public methodConfigurablePofContext(IXmlElement)
Create a ConfigurablePofContext that will use the passed configuration information.
Top
Properties
  NameDescription
Public propertyConfig
IXmlElement holding configuration information.
Protected propertyConfigLocation
Obtain the location of the configuration that the ConfigurablePofContext used to configure itself.
Public propertyStatic memberDefaultPofConfig
The default XML configuration used when one isn't explicitly passed in the constructor for this class.
Public propertyStatic memberDefaultPofConfigResource
The IResource for the default XML configuration used when one isn't explicitly passed in the constructor for this class.
Protected propertyIsInitialized
Determine if the ConfigurablePofContext has completed its initialization.
Protected propertyIsInterfaceAllowed
Determine if the ConfigurablePofContext supports the configuration of user types by specifying an interface (instead of a class) for the .NET type.
Public propertyIsReferenceEnabled
Determine if Identity/Reference type support is enabled for this ConfigurablePofContext.
Protected propertyIsSubclassAllowed
Determine if the ConfigurablePofContext supports the serialization of an object that is an instance of a sub-class of a configured type, but not actually an instance of a class of a configured type.
Top
Methods
  NameDescription
Protected methodAppendDefaultSerializerToUserTypes
Process <default-serializer> element from specified xml configuration and appends information about serializer to each <user-type> element within <user-type-list> unless user type already has serializer specified.
Protected methodCheckNotInitialized
Verify that the ConfigurablePofContext has not already been initialized.
Protected methodCreatePofConfig
Create a ConfigurablePofContextPofConfig object based on a configuration that was either provided as XML, or can be loaded from the specified (or default) URI.
Public methodDeserialize
Deserialize an object from a stream by reading its state using the specified DataReader object.
Protected methodEnsureInitialized
Fully initialize the ConfigurablePofContext if it has not already been initialized.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Protected methodGetInheritedUserTypeIdentifier
Helper method for determining the user type identifier associated with a given class that does not have a direct configured association.
Protected methodGetPofConfig
Obtain the ConfigurablePofContextPofConfig that represents the initialized state of the ConfigurablePofContext.
Public methodGetPofSerializer
Return an IPofSerializer that can be used to serialize and deserialize an object of the specified user type to and from a POF stream.
Protected methodGetSerializer
Returns serializer for user type specified by xmlType.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetType(Int32)
Determine the type associated with the given user type identifier.
Public methodGetTypeName
Determine the name of the type associated with a user type identifier.
Public methodGetUserTypeIdentifier(Object)
Determine the user type identifier associated with the given object.
Public methodGetUserTypeIdentifier(String)
Determine the user type identifier associated with the given type name.
Public methodGetUserTypeIdentifier(Type)
Determine the user type identifier associated with the given type.
Protected methodGetUserTypeIdentifierInternal(String)
Determine the user type identifier associated with the given type name.
Protected methodGetUserTypeIdentifierInternal(Type)
Determine the user type identifier associated with the given type.
Protected methodInitialize
Bind the ConfigurablePofContext to a URI of the configuration file, resolving all type names, etc.
Public methodIsUserType(Object)
Determine if the given object is of a user type known to this IPofContext.
Public methodIsUserType(String)
Determine if the type with the given name is a user type known to this IPofContext.
Public methodIsUserType(Type)
Determine if the given type is a user type known to this IPofContext.
Protected methodStatic memberLoadDefaultPofConfig
Load and return the default XML POF configuration.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodResolveType
Returns Type specified by xmlType with configuration information.
Public methodSerialize
Serialize an object to a stream by writing its state using the specified DataWriter object.
Protected methodThrowException
Assemble and throw an informative exception based on the passed details.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

For each user type supported by this POF context, it must be provided with:

  • A valid user type ID that is unique within this POF context.
  • A .NET type name that identifies a .NET type or interface that all values of the user type are type-assignable to (and that no values of other user types are type-assignable to); in other words, all values of the user type (and no values of other user types) are instances of the specified class, instances of a sub-class of the specified class, or (if it is an interface) instances of a class that implements the specified interface.
  • A .NET type name that identifies a non-abstract implementation of the IPofSerializer interface.

The format of the configuration XML is as follows:

             <pof-config>
               <user-type-list>
               ..
                 <user-type>
                   <type-id>53</type-id>
                   <class-name>My.Example.Data.Trade, MyAssembly</class-name>
                   <serializer>
                     <class-name>Tangosol.IO.Pof.PortableObjectSerializer, Coherence</class-name>
                     <init-params>
                       <init-param>
                         <param-type>System.Int32</param-type>
                         <param-value>{type-id}</param-value>
                       </init-param>
                     </init-params>
                   </serializer>
                 </user-type>
            
                 <user-type>
                   <type-id>54</type-id>
                   <class-name>My.Example.Data.Position, MyAssembly</class-name>
                 </user-type>
            
               ..
               <include>file:/my-pof-config.xml</include>
            
               ..
               </user-type-list>
            
               <allow-interfaces>false</allow-interfaces>
               <allow-subclasses>false</allow-subclasses>
            
               <default-serializer>
                 <class-name>Tangosol.IO.Pof.XmlPofSerializer, Coherence</class-name>
                 <init-params>
                   <init-param>
                     <param-type>System.Int32</param-type>
                     <param-value>{type-id}</param-value>
                   </init-param>
                 </init-params>
               </default-serializer>
             </pof-config>
             

For each user type, a user-type element must exist inside the user-type-list element. The user-type-list element contains up to three elements, in the following order:

  • The user-type element should contain a type-id element whose value specifies the unique integer type ID; if none of the user-type elements contains a type-id element, then the type IDs for the user types will be based on the order in which they appear in the configuration, with the first user type being assigned the type ID 0, the second user type being assigned the type ID 1, and so on. (It is strongly recommended that user types IDs always be specified, in order to support schema versioning and evolution.)
  • The class-name element is required, and specifies the fully qualified name of the .NET type or interface that all values of the user type are type-assignable to.
  • The serializer element is used to specify an implementation of IPofSerializer to use to serialize and deserialize user type values to and from a POF stream. Within the serializer element, the class-name element is required, and zero or more constructor parameters can be defined within an init-params block. If no serializer is specified, then the default-serializer is used if one is specified, otherwise the user type is assumed to implement the IPortableObject interface or have a PortableAttribute. If the former, a PortableObjectSerializer will be used. If the later, a PofAnnotationSerializer will be used.

The optional include element allows user-type elements defined in another configuration XML to be added to the user type list. The value of this element is a locator string (either a valid path or URL) that specifies the location of the target IPofContext configuration file. The user-type elements of the target file are imported verbatum; therefore, if the included elements contain explicit type identifiers, each identifier must be unique with respect to the the user type identifiers (either explicit or generated) defined within the including file. If the included user types do not contain explicit type identifiers, then the type identifiers will be based on the order in which the user types appear in the composite configuration file. Multiple include elements may be used within a single user-type-list element.

In order to be used by the ConfigurablePofContext, a IPofSerializer implementation must provide a public constructor that accepts the parameters detailed by the init-params element. The parameter values, as specified by the param-value element, can specify one of the following substitutable values:

  • {type-id} - replaced with the Type ID of the User Type
  • {class-name} - replaced with the name of the class for the User Type
  • {class} - replaced with the Type for the User Type

If the init-params element is not present, then the ConfigurablePofContext attempts to construct the IPofSerializer by searching for one of the following constructors in the same order as they appear here:

  • (int typeId, Type type)
  • (int typeId)
  • ()

Once constructed, if the IPofSerializer implements the IXmlConfigurable interface, the Config property is set to the passed XML information, transposed as described by TransformInitParams(IXmlElement, IXmlElement), and as described in the pof-config.xsd file.

See Also