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

F79659-03

coherence/util/extractor/ReflectionUpdater.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_REFLECTION_UPDATER_HPP
00008 #define COH_REFLECTION_UPDATER_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/pof/PofReader.hpp"
00013 #include "coherence/io/pof/PofWriter.hpp"
00014 #include "coherence/io/pof/PortableObject.hpp"
00015 #include "coherence/util/ValueUpdater.hpp"
00016 
00017 COH_OPEN_NAMESPACE3(coherence,util,extractor)
00018 
00019 using coherence::io::pof::PofReader;
00020 using coherence::io::pof::PofWriter;
00021 using coherence::io::pof::PortableObject;
00022 
00023 
00024 /**
00025 * Reflection-based ValueUpdater implementation.
00026 *
00027 * Local execution of a ReflectionUpdater is dependent upon target class and
00028 * method having been registered with the SystemClassLoader. For cases where
00029 * the registration has not been performed or is not possible locally executable
00030 * C++ updaters may either be custom built, or auto-generated using the
00031 * TypedUpdater<>.
00032 *
00033 * @author djl/mf 2008.04.08
00034 *
00035 * @see CompositeUpdater
00036 * @see TypedUpdater
00037 * @see Method
00038 */
00039 class COH_EXPORT ReflectionUpdater
00040     : public cloneable_spec<ReflectionUpdater,
00041         extends<Object>,
00042         implements<ValueUpdater, PortableObject> >
00043     {
00044     friend class factory<ReflectionUpdater>;
00045 
00046     // ----- constructors ---------------------------------------------------
00047 
00048     protected:
00049         /**
00050         * Construct an empty ReflectionUpdater
00051         * (necessary for the PortableObject interface).
00052         */
00053         ReflectionUpdater();
00054 
00055         /**
00056         * Construct a ReflectionUpdater for a given method name. This
00057         * implementation assumes that the corresponding classes will have one
00058         * and only one method with a specified name and this method will have
00059         * exactly one parameter.
00060         */
00061         ReflectionUpdater(String::View vsMethod);
00062 
00063         /**
00064         * Copy constructor.
00065         */
00066         ReflectionUpdater(const ReflectionUpdater& that);
00067 
00068 
00069     // ----- ValueUpdater interface ------------------------------------------
00070 
00071     public:
00072         /**
00073         * {@inheritDoc}
00074         */
00075         virtual void update(Object::Handle hTarget,
00076                 Object::Holder ohValue) const;
00077 
00078 
00079     // ----- PortableObject interface ---------------------------------------
00080 
00081     public:
00082         /**
00083         * {@inheritDoc}
00084         */
00085         virtual void readExternal(PofReader::Handle hIn);
00086 
00087         /**
00088         * {@inheritDoc}
00089         */
00090         virtual void writeExternal(PofWriter::Handle hOut) const;
00091 
00092 
00093     // ----- Object interface -----------------------------------------------
00094 
00095     public:
00096         /**
00097         * {@inheritDoc}
00098         */
00099         virtual bool equals(Object::View v) const;
00100 
00101         /**
00102         * {@inheritDoc}
00103         */
00104         virtual size32_t hashCode() const;
00105 
00106         /**
00107         * {@inheritDoc}
00108         */
00109         virtual TypedHandle<const String> toString() const;
00110 
00111 
00112     // ----- data member accessors ------------------------------------------
00113 
00114     public:
00115         /**
00116         * Determine the name of the method that this extractor is configured
00117         * to invoke.
00118         *
00119         * @return the name of the method to invoke using reflection
00120         */
00121         virtual String::View getMethodName() const;
00122 
00123 
00124     // ----- data members ---------------------------------------------------
00125 
00126     protected:
00127         /**
00128         * The name of the method to invoke.
00129         */
00130         FinalView<String> f_vsMethod;
00131 
00132         /**
00133          * The resolved Method.
00134          */
00135         mutable MemberView<Method> m_vMethod;
00136     };
00137 
00138 COH_CLOSE_NAMESPACE3
00139 
00140 #endif // COH_REFLECTION_UPDATER_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.