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

F79659-03

coherence/util/aggregator/QueryRecorder.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_QUERY_RECORDER_HPP
00008 #define COH_QUERY_RECORDER_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/InvocableMap.hpp"
00016 
00017 COH_OPEN_NAMESPACE3(coherence,util,aggregator)
00018 
00019 using coherence::io::pof::PofReader;
00020 using coherence::io::pof::PofWriter;
00021 using coherence::io::pof::PortableObject;
00022 using coherence::util::InvocableMap;
00023 
00024 
00025 /**
00026 * This parallel aggregator used to produce a QueryRecord object that contains
00027 * an estimated or actual cost of the query execution for a given filter.
00028 *
00029 * For example, the following code will return a QueryPlan, containing the
00030 * estimated query cost and corresponding execution steps.
00031 *
00032 * <pre>
00033 *   QueryRecorder::Handle hAgent  = QueryRecorder::create(QueryRecorder::explain);
00034 *   QueryRecord::View     vRecord = cast<QueryRecord::View>(hCache->aggregate(filter, agent));
00035 * </pre>
00036 *
00037 * @since Coherence 3.7.1
00038 *
00039 * @author tb 2011.05.26
00040 */
00041 class COH_EXPORT QueryRecorder
00042     : public class_spec<QueryRecorder,
00043         extends<Object>,
00044         implements<PortableObject, InvocableMap::ParallelAwareAggregator> >
00045     {
00046     friend class factory<QueryRecorder>;
00047 
00048     // ----- RecordType enum ------------------------------------------------
00049 
00050     public:
00051         /**
00052         * RecordType enum specifies whether the {@link QueryRecorder} should
00053         * be used to produce a QueryRecord object that contains an estimated
00054         * or an actual cost of the query execution.
00055         */
00056         enum RecordType
00057             {
00058             /**
00059              * Produce a QueryRecord object that contains an estimated cost of
00060              * the query execution.
00061              */
00062             explain,
00063 
00064             /**
00065              * Produce a QueryRecord object that contains the actual cost of
00066              * the query execution.
00067              */
00068             trace
00069             };
00070 
00071 
00072     // ----- Constructors ---------------------------------------------------
00073 
00074     protected:
00075         /**
00076         * Default constructor (necessary for the PortableObject interface).
00077         */
00078         QueryRecorder();
00079 
00080         /**
00081         * Construct a QueryRecorder.
00082         *
00083         * @param type  the type for this aggregator
00084         */
00085         QueryRecorder(QueryRecorder::RecordType type);
00086 
00087 
00088     // ----- accessors ------------------------------------------------------
00089 
00090     public:
00091         /**
00092         * Get the record type for this query recorder.
00093         *
00094         * @return the record type enum
00095         */
00096         virtual QueryRecorder::RecordType getType() const;
00097 
00098 
00099     // ----- EntryAggregator interface --------------------------------------
00100 
00101     public:
00102         /**
00103         * {@inheritDoc}
00104         */
00105         virtual Object::Holder aggregate(Set::View vSetEntries);
00106 
00107 
00108     // ----- ParallelAwareAggregator interface ------------------------------
00109 
00110     public:
00111         /**
00112         * {@inheritDoc}
00113         */
00114         virtual InvocableMap::EntryAggregator::Handle getParallelAggregator();
00115 
00116         /**
00117         * {@inheritDoc}
00118         */
00119         virtual Object::Holder aggregateResults(
00120                     Collection::View vCollResults);
00121 
00122 
00123     // ----- PortableObject interface ---------------------------------------
00124 
00125     public:
00126         /**
00127         * {@inheritDoc}
00128         */
00129         virtual void readExternal(PofReader::Handle hIn);
00130 
00131         /**
00132         * {@inheritDoc}
00133         */
00134         virtual void writeExternal(PofWriter::Handle hOut) const;
00135 
00136 
00137     // ----- data members ---------------------------------------------------
00138 
00139     protected:
00140         /**
00141         * This aggregator record type.
00142         */
00143         enum RecordType m_type;
00144     };
00145 
00146 COH_CLOSE_NAMESPACE3
00147 
00148 #endif // COH_QUERY_RECORDER_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.