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

F79659-03

coherence/util/extractor/UniversalExtractor.hpp

00001 /*
00002  * Copyright (c) 2000, 2025, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * https://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_UNIVERSAL_EXTRACTOR_HPP
00008 #define COH_UNIVERSAL_EXTRACTOR_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/pof/PofReader.hpp"
00013 #include "coherence/io/pof/PofWriter.hpp"
00014 
00015 #include "coherence/util/extractor/AbstractExtractor.hpp"
00016 
00017 COH_OPEN_NAMESPACE3(coherence,util,extractor)
00018 
00019 using coherence::io::pof::PofReader;
00020 using coherence::io::pof::PofWriter;
00021 
00022 /**
00023  * Universal ValueExtractor implementation.
00024  *
00025  * UniversalExtractor can only run within the Coherence cluster.
00026  *
00027  * Refer to the Coherence for Java documentation for more information.
00028  *
00029  * @author cp/gg 2002.11.01, ew 2007.02.01, jf 2017.11.20, phf 2024.09.13
00030  *
00031  * @since 14.1.2.0.0
00032  */
00033 class COH_EXPORT UniversalExtractor
00034     : public cloneable_spec<UniversalExtractor,
00035         extends<AbstractExtractor> >
00036     {
00037     friend class factory<UniversalExtractor>;
00038 
00039     // ----- constructors ---------------------------------------------------
00040 
00041     protected:
00042         /**
00043          * Construct an empty UniversalExtractor
00044          * (necessary for the PortableObject interface).
00045          */
00046         UniversalExtractor();
00047 
00048         /**
00049          * Construct a UniversalExtractor based on a name, optional
00050          * parameters and the entry extraction target.
00051          *
00052          * @param vsName   a method or property name
00053          * @param vaParam  the array of arguments to be used in the method
00054          *                 invocation; may be null
00055          * @param nTarget  one of the {@link #value} or {@link #key} values
00056          */
00057         UniversalExtractor(String::View vsName, ObjectArray::View vaParam = NULL,
00058             int32_t nTarget = value);
00059 
00060         /**
00061          * Copy constructor.
00062          */
00063         UniversalExtractor(const UniversalExtractor& that);
00064 
00065     // ----- PortableObject interface ---------------------------------------
00066 
00067     public:
00068         /**
00069          * {@inheritDoc}
00070          */
00071         virtual void readExternal(PofReader::Handle hIn);
00072 
00073         /**
00074          * {@inheritDoc}
00075          */
00076         virtual void writeExternal(PofWriter::Handle hOut) const;
00077 
00078     // ----- Object interface -----------------------------------------------
00079 
00080     public:
00081         /**
00082          * {@inheritDoc}
00083          */
00084         virtual TypedHandle<const String> toString() const;
00085 
00086     // ----- data member accessors ------------------------------------------
00087 
00088     public:
00089         /**
00090          * Return the name passed into UniversalExtractor(String).
00091          *
00092          * @return the name of extraction attribute
00093         */
00094         virtual String::View getName() const;
00095 
00096         /**
00097         * Return the array of arguments used to invoke the method.
00098         *
00099         * @return the array of arguments used to invoke the method
00100         */
00101         virtual ObjectArray::View getParameters() const;
00102 
00103     // ----- data members ---------------------------------------------------
00104 
00105     protected:
00106         /**
00107          * A method or property name.
00108          */
00109         FinalView<String> f_vsName;
00110 
00111         /**
00112          * The parameter array. Must be null or zero length for a property based extractor.
00113          */
00114         FinalView<ObjectArray> f_vaParam;
00115 
00116     // ----- constants ------------------------------------------------------
00117 
00118     public:
00119         /**
00120          * If f_vsName ends with this suffix, it represents a method name.
00121          */
00122         static String::View getMethodSuffix();
00123     };
00124 
00125 COH_CLOSE_NAMESPACE3
00126 
00127 #endif // COH_UNIVERSAL_EXTRACTOR_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.