C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/net/DefaultOperationalContext.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_DEFAULT_OPERATIONAL_CONTEXT_HPP
00008 #define COH_DEFAULT_OPERATIONAL_CONTEXT_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/net/Member.hpp"
00013 #include "coherence/net/OperationalContext.hpp"
00014 #include "coherence/run/xml/XmlDocument.hpp"
00015 #include "coherence/run/xml/XmlElement.hpp"
00016 #include "coherence/security/IdentityAsserter.hpp"
00017 #include "coherence/security/IdentityTransformer.hpp"
00018 #include "coherence/util/Map.hpp"
00019 
00020 COH_OPEN_NAMESPACE2(coherence,net)
00021 
00022 using coherence::run::xml::XmlDocument;
00023 using coherence::run::xml::XmlElement;
00024 using coherence::security::IdentityAsserter;
00025 using coherence::security::IdentityTransformer;
00026 using coherence::util::Map;
00027 
00028 
00029 /**
00030 * The DefaultOperationalContext provides an OperationalContext with
00031 * information obtained from XML in coherence.dtd format, system properties
00032 * (as set through environment variables) and default values.
00033 *
00034 * @author phf  2010.10.28
00035 *
00036 * @since Coherence 3.7
00037 */
00038 class COH_EXPORT DefaultOperationalContext
00039     : public class_spec<DefaultOperationalContext,
00040         extends<Object>,
00041         implements<OperationalContext> >
00042     {
00043     friend class factory<DefaultOperationalContext>;
00044 
00045     // ----- constructors ---------------------------------------------------
00046 
00047     protected:
00048         /**
00049         * Create a new DefaultOperationalContext.
00050         *
00051         * @param vXmlCoherence  an XML element corresponding to coherence.dtd
00052         */
00053         DefaultOperationalContext(XmlElement::View vXmlCoherence = NULL);
00054 
00055 
00056     // ----- typedef: ProductEdition ----------------------------------------
00057 
00058     public:
00059         /**
00060         * Extend editions.
00061         */
00062         typedef enum
00063             {
00064             edition_dc  = 0,
00065             edition_rtc = 1
00066             } ProductEdition;
00067 
00068 
00069     // ----- DefaultOperationalContext interface ----------------------------
00070 
00071     public:
00072         /**
00073         * The default XML configuration used when one isn't explicitly passed
00074         * in the constructor for this class.
00075         *
00076         * @return the default XML configuration
00077         */
00078         static XmlDocument::Handle getDefaultOperationalConfig();
00079 
00080 
00081     // ----- OperationalContext interface -----------------------------------
00082 
00083     public:
00084         /**
00085         * {@inheritDoc}
00086         */
00087         virtual int32_t getEdition() const;
00088 
00089         /**
00090         * {@inheritDoc}
00091         */
00092         virtual String::View getEditionName() const;
00093 
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual Member::View getLocalMember() const;
00098 
00099         /**
00100         * {@inheritDoc}
00101         */
00102         virtual Map::View getFilterMap() const;
00103 
00104         /**
00105         * {@inheritDoc}
00106         */
00107         virtual Map::View getSerializerMap() const;
00108 
00109         /**
00110         * {@inheritDoc}
00111         */
00112         virtual Map::View getAddressProviderMap() const;
00113 
00114         /**
00115         * {@inheritDoc}
00116         */
00117         virtual IdentityAsserter::View getIdentityAsserter() const;
00118 
00119         /**
00120         * {@inheritDoc}
00121         */
00122         virtual IdentityTransformer::View getIdentityTransformer() const;
00123 
00124         /**
00125         * {@inheritDoc}
00126         */
00127         virtual bool isSubjectScopingEnabled() const;
00128 
00129         /**
00130         * {@inheritDoc}
00131         */
00132         virtual int32_t getLogLevel() const;
00133 
00134         /**
00135         * {@inheritDoc}
00136         */
00137         virtual int32_t getLogCharacterLimit() const;
00138 
00139         /**
00140         * {@inheritDoc}
00141         */
00142         virtual String::View getLogMessageFormat() const;
00143 
00144         /**
00145         * {@inheritDoc}
00146         */
00147         virtual String::View getLogDestination() const;
00148 
00149         /**
00150         * {@inheritDoc}
00151         */
00152         virtual int32_t getDiscoveryTimeToLive() const;
00153 
00154 
00155     // ----- data members ---------------------------------------------------
00156 
00157     protected:
00158         /**
00159         * The configured edition.
00160         */
00161         int32_t m_nEdition;
00162 
00163         /**
00164         * The configured edition in a formatted string for use by the Logger.
00165         */
00166         FinalView<String> f_vsEdition;
00167 
00168         /**
00169         * The configured Filter map.
00170         *
00171         * See OperationalContext::getFilterMap() for a description of the
00172         * keys and values.
00173         */
00174         FinalView<Map> f_vFilterMap;
00175 
00176         /**
00177         * The configured Serializer map.
00178         *
00179         * See OperationalContext::getSerializerMap() for a description of the
00180         * keys and values.
00181         */
00182         FinalView<Map> f_vSerializerMap;
00183 
00184         /**
00185         * The configured AddressProvider map.
00186         *
00187         * See OperationalContext::getAddressProviderMap() for a description of the
00188         * keys and values.
00189         */
00190         FinalView<Map> f_vAddressProviderMap;
00191 
00192         /**
00193         * The configured local member.
00194         */
00195         FinalView<Member> f_vMemberLocal;
00196 
00197         /**
00198         * The configured IdentityAsserter that validates a token in order to
00199         * establish a user's identity.
00200         */
00201         FinalView<IdentityAsserter> f_vAsserter;
00202 
00203         /**
00204         * The configured IdentityTransformer that transforms a Subject into
00205         * a token that asserts a user's identity.
00206         */
00207         FinalView<IdentityTransformer> f_vTransformer;
00208 
00209         /**
00210         * True iff subject scope configuration is set to true.
00211         */
00212         bool m_fSubjectScoped;
00213 
00214         /**
00215         * The configured logging severity level.
00216         */
00217         int32_t m_nLogLevel;
00218 
00219         /**
00220         * The the maximum number of characters for a logger daemon to queue
00221         * before truncating.
00222         */
00223         int32_t m_nLogCharacterLimit;
00224 
00225         /**
00226         * The configured log message format.
00227         */
00228         FinalView<String> f_vsLogMessageFormat;
00229 
00230         /**
00231         * The configured destination for log messages.
00232         */
00233         FinalView<String> f_vsLogDestination;
00234 
00235         /**
00236          * The multicast TTL for discovery.
00237          */
00238         int32_t m_nTtlDiscovery;
00239     };
00240 
00241 COH_CLOSE_NAMESPACE2
00242 
00243 #endif // COH_DEFAULT_OPERATIONAL_CONTEXT_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.