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

F79659-03

coherence/util/SimpleQueryRecord.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_SIMPLE_QUERY_RECORD_HPP
00008 #define COH_SIMPLE_QUERY_RECORD_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/Collection.hpp"
00016 #include "coherence/util/List.hpp"
00017 #include "coherence/util/Map.hpp"
00018 #include "coherence/util/QueryRecord.hpp"
00019 #include "coherence/util/Set.hpp"
00020 
00021 COH_OPEN_NAMESPACE2(coherence,util)
00022 
00023 using coherence::io::pof::PofReader;
00024 using coherence::io::pof::PofWriter;
00025 using coherence::io::pof::PortableObject;
00026 
00027 
00028 /**
00029 * Simple QueryRecord implementation.
00030 *
00031 * @since Coherence 3.7.1
00032 *
00033 * @author tb 2011.05.26
00034 */
00035 class COH_EXPORT SimpleQueryRecord
00036     : public class_spec<SimpleQueryRecord,
00037         extends<Object>,
00038         implements<PortableObject, QueryRecord> >
00039     {
00040     friend class factory<SimpleQueryRecord>;
00041 
00042     // ----- Constructors ---------------------------------------------------
00043 
00044     protected:
00045         /**
00046         * Construct a SimpleQueryRecord.
00047         */
00048         SimpleQueryRecord();
00049 
00050         /**
00051         * Construct a SimpleQueryRecord from the given collection of partial
00052         * results.
00053         *
00054         * @param type         the record type
00055         * @param vColResults  the collection of partial results
00056         */
00057         SimpleQueryRecord(QueryRecorder::RecordType type,
00058                 Collection::View vColResults);
00059 
00060 
00061     // ----- QueryRecord interface ------------------------------------------
00062 
00063     public:
00064         /**
00065         * {@inheritDoc}
00066         */
00067         virtual QueryRecorder::RecordType getType() const;
00068 
00069         /**
00070         * {@inheritDoc}
00071         */
00072         virtual List::View getResults() const;
00073 
00074 
00075     // ----- helper methods -------------------------------------------------
00076 
00077     public:
00078         /**
00079         * Merge the partial results from the associated record.  Matching
00080         * partial results are merged into a single result for the report.
00081         *
00082         * @param vColResults  the collection of partial results
00083         */
00084         virtual void mergeResults(Collection::View vColResults);
00085 
00086 
00087     // ----- PortableObject interface ---------------------------------------
00088 
00089     public:
00090         /**
00091         * {@inheritDoc}
00092         */
00093         virtual void readExternal(PofReader::Handle hIn);
00094 
00095         /**
00096         * {@inheritDoc}
00097         */
00098         virtual void writeExternal(PofWriter::Handle hOut) const;
00099 
00100 
00101     // ----- Object interface -----------------------------------------------
00102 
00103     public:
00104         /**
00105         * {@inheritDoc}
00106         */
00107         virtual TypedHandle<const String> toString() const;
00108 
00109 
00110     // ----- inner class: PartialResult -------------------------------------
00111 
00112     public:
00113         /**
00114         * Simple QueryRecord::PartialResult implementation.
00115         */
00116         class COH_EXPORT PartialResult
00117             : public class_spec<PartialResult,
00118                 extends<Object>,
00119                 implements<PortableObject, QueryRecord::PartialResult> >
00120             {
00121             friend class factory<PartialResult>;
00122 
00123             // ----- handle definitions (needed for nested classes) -----
00124 
00125              public:
00126                  typedef this_spec::Handle Handle;
00127                  typedef this_spec::View   View;
00128                  typedef this_spec::Holder Holder;
00129 
00130             // ----- constructors ---------------------------------------
00131 
00132             protected:
00133                 /**
00134                 * Construct a PartialResult
00135                 */
00136                 PartialResult();
00137 
00138                 /**
00139                 * Copy constructor for a Result.
00140                 *
00141                 * @param vThat  the result to copy
00142                 */
00143                 PartialResult(QueryRecord::PartialResult::View vThat);
00144 
00145             // ----- PartialResult interface ----------------------------
00146 
00147             public:
00148 
00149                 /**
00150                 * {@inheritDoc}
00151                 */
00152                 virtual List::View getSteps() const;
00153 
00154                 /**
00155                 * {@inheritDoc}
00156                 */
00157                 virtual PartitionSet::Handle getPartitions();
00158 
00159                 /**
00160                 * {@inheritDoc}
00161                 */
00162                 virtual PartitionSet::View getPartitions() const;
00163 
00164 
00165             // ----- helper methods -------------------------------------
00166 
00167             public:
00168                 /**
00169                 * Merge the given result with this one.
00170                 *
00171                 * @param vResult  the result to merge
00172                 */
00173                 virtual void merge(QueryRecord::PartialResult::View vResult);
00174 
00175                 /**
00176                 * Determine whether or not the given result is capable of
00177                 * being placed in one-to-one correspondence with this result.
00178                 * Results are matching if their owned lists of steps have the
00179                 * same size, and all pairs of steps in the two lists are
00180                 * matching.
00181                 *
00182                 * @param vResult  the result to be checked
00183                 *
00184                 * @return true iff the given result matches with this result
00185                 */
00186                 virtual bool isMatching(
00187                         QueryRecord::PartialResult::View vResult) const;
00188 
00189             // ----- PortableObject interface ---------------------------
00190 
00191             public:
00192                 /**
00193                 * {@inheritDoc}
00194                 */
00195                 virtual void readExternal(PofReader::Handle hIn);
00196 
00197                 /**
00198                 * {@inheritDoc}
00199                 */
00200                 virtual void writeExternal(PofWriter::Handle hOut) const;
00201 
00202                 // ----- inner class: Step ------------------------------
00203 
00204                 /**
00205                 * Simple QueryRecord::PartialResult::Step implementation.
00206                 */
00207                 class COH_EXPORT Step
00208                     : public class_spec<Step,
00209                         extends<Object>,
00210                         implements<PortableObject,
00211                                 QueryRecord::PartialResult::Step> >
00212                     {
00213                     friend class factory<Step>;
00214 
00215                     // ----- handle definitions (needed for nested classes)
00216 
00217                      public:
00218                          typedef this_spec::Handle Handle;
00219                          typedef this_spec::View   View;
00220                          typedef this_spec::Holder Holder;
00221 
00222                     // ----- constructors -------------------------------
00223 
00224                     protected:
00225                         /**
00226                         * Constructor for a Step.
00227                         */
00228                         Step();
00229 
00230                         /**
00231                         * Copy constructor for a Step.
00232                         *
00233                         * @param vThat  the step to copy
00234                         */
00235                         Step(QueryRecord::PartialResult::Step::View vThat);
00236 
00237                     // ----- Step interface -----------------------------
00238 
00239                     public:
00240                         /**
00241                         * {@inheritDoc}
00242                         */
00243                         virtual String::View getFilterDescription() const;
00244 
00245                         /**
00246                         * {@inheritDoc}
00247                         */
00248                         virtual Set::View getIndexLookupRecords() const;
00249 
00250                         /**
00251                         * {@inheritDoc}
00252                         */
00253                         virtual size32_t getEfficiency() const;
00254 
00255                         /**
00256                         * {@inheritDoc}
00257                         */
00258                         virtual size32_t getPreFilterKeySetSize() const;
00259 
00260                         /**
00261                         * {@inheritDoc}
00262                         */
00263                         virtual size32_t getPostFilterKeySetSize() const;
00264 
00265                         /**
00266                         * {@inheritDoc}
00267                         */
00268                         virtual int64_t getDuration() const;
00269 
00270                         /**
00271                         * {@inheritDoc}
00272                         */
00273                         virtual List::View getSteps() const;
00274 
00275                     // ----- helper methods -----------------------------
00276 
00277                     public:
00278                         /**
00279                         * Merge the given step with this one.  This method
00280                         * assumes that the given step matches with this one.
00281                         *
00282                         * @param vStep  the step to merge
00283                         */
00284                         void merge(QueryRecord::PartialResult::Step::View
00285                                 vStep);
00286 
00287                         /**
00288                         * Determine whether or not the given step is capable
00289                         * of being placed in one-to-one correspondence with
00290                         * this step.  Steps are defined to be matching if both
00291                         * steps have equivalent name, index lookup records and
00292                         * owned lists of sub-steps.
00293                         *
00294                         * @param vStep  the step to check
00295                         *
00296                         * @return true iff the given step matches with this
00297                         *         step
00298                         */
00299                         bool isMatching(QueryRecord::PartialResult::Step::View
00300                                 vStep) const;
00301 
00302                     // ----- PortableObject interface -------------------
00303 
00304                     public:
00305                         /**
00306                         * {@inheritDoc}
00307                         */
00308                         virtual void readExternal(PofReader::Handle hIn);
00309 
00310                         /**
00311                         * {@inheritDoc}
00312                         */
00313                         virtual void writeExternal(PofWriter::Handle hOut)
00314                                 const;
00315 
00316                     // ----- data members -------------------------------
00317 
00318                     protected:
00319                         /**
00320                         * The filter description.
00321                         */
00322                         FinalView<String> f_vsFilter;
00323 
00324                         /**
00325                         * The estimated cost.
00326                         */
00327                         size32_t m_nEfficiency;
00328 
00329                         /**
00330                         * The pre-execution key set size.
00331                         */
00332                         size32_t m_nSizeIn;
00333 
00334                         /**
00335                         * The post-execution key set size.
00336                         */
00337                         size32_t m_nSizeOut;
00338 
00339                         /**
00340                         * The execution time in milliseconds.
00341                         */
00342                         int64_t m_cMillis;
00343 
00344                         /**
00345                         * The set of index lookup records.
00346                         */
00347                         FinalHandle<Set> f_hSetIndexLookupRecords;
00348 
00349                         /**
00350                         * The list of child steps.
00351                         */
00352                         FinalHandle<List> f_hListSubSteps;
00353                     };
00354 
00355                 // ----- inner class: IndexLookupRecord -----------------
00356 
00357                 /**
00358                 * Simple QueryRecord::PartialResult::IndexLookupRecord
00359                 * implementation.
00360                 */
00361                 class COH_EXPORT IndexLookupRecord
00362                     : public class_spec<IndexLookupRecord,
00363                         extends<Object>,
00364                         implements<PortableObject,
00365                                 QueryRecord::PartialResult::IndexLookupRecord> >
00366                     {
00367                     friend class factory<IndexLookupRecord>;
00368                     friend class Step;
00369 
00370                     // ----- handle definitions (needed for nested classes)
00371 
00372                      public:
00373                          typedef this_spec::Handle Handle;
00374                          typedef this_spec::View   View;
00375                          typedef this_spec::Holder Holder;
00376 
00377                     // ----- constructors -------------------------------
00378 
00379                     protected:
00380                         /**
00381                         * Construct an IndexLookupRecord.
00382                         */
00383                         IndexLookupRecord();
00384 
00385                         /**
00386                         * Copy constructor for an IndexLookupRecord.
00387                         *
00388                         * @param vThat  the IndexLookupRecord to copy
00389                         */
00390                         IndexLookupRecord(
00391                                 QueryRecord::PartialResult::IndexLookupRecord::View
00392                                 vThat);
00393 
00394                         /**
00395                         * Construct an IndexLookupRecord.
00396                         *
00397                         * @param vsExtractor  the extractor description
00398                         * @param vsIndex      the index description
00399                         * @param fOrdered     indicates whether or not the
00400                         *                     associated index is ordered
00401                         */
00402                         IndexLookupRecord(String::View vsExtractor,
00403                                 String::View vsIndex,
00404                                 bool fOrdered,
00405                                 int64_t cBytes,
00406                                 int32_t cDistinctValues,
00407                                 String::View vsIndexDef);
00408 
00409                     // ----- IndexLookupRecord interface ----------------
00410 
00411                     public:
00412                         /**
00413                         * {@inheritDoc}
00414                         */
00415                         virtual String::View getExtractorDescription() const;
00416 
00417                         /**
00418                         * {@inheritDoc}
00419                         */
00420                         virtual String::View getIndexDescription() const;
00421 
00422                         /**
00423                         * {@inheritDoc}
00424                         */
00425                         virtual bool isOrdered() const;
00426 
00427                         /**
00428                         * Returns index memory usage in bytes.
00429                         *
00430                         * @return index memory usage in bytes; -1 if there is no index
00431                         */
00432                         int64_t getMemoryUsage() const;
00433 
00434                         /**
00435                         * Return index content map size.
00436                         *
00437                         * @return index content map size; -1 if there is no index
00438                         */
00439                         int32_t getSize() const;
00440 
00441                         /**
00442                         * Returns the index definition.
00443                         *
00444                         * @return the index definition; null if there is no index
00445                         */
00446                         virtual String::View getIndexDef() const;
00447 
00448                     // ----- PortableObject interface -------------------
00449 
00450                     public:
00451                         /**
00452                         * {@inheritDoc}
00453                         */
00454                         virtual void readExternal(PofReader::Handle hIn);
00455 
00456                         /**
00457                         * {@inheritDoc}
00458                         */
00459                         virtual void writeExternal(PofWriter::Handle hOut)
00460                                 const;
00461 
00462                     // ----- Object interface ---------------------------
00463 
00464                     public:
00465                         /**
00466                         * {@inheritDoc}
00467                         */
00468                         virtual bool equals(Object::View v) const;
00469 
00470                         /**
00471                         * {@inheritDoc}
00472                         */
00473                         virtual size32_t hashCode() const;
00474 
00475                     // ----- helper methods ------------------------------
00476 
00477                     protected:
00478                         /**
00479                         * Build an index description for this index.
00480                         *
00481                         * @return an index description for this index if there is an index definition;
00482                         *         null otherwise
00483                         */
00484                         virtual String::View buildIndexDescription();
00485 
00486                         /**
00487                         * Parses an index description into it's definition, footprint,
00488                         * and map size.
00489                         *
00490                         * @param vsIndex  the index description
00491                         */
00492                         virtual void parseIndexDescription(String::View vsIndex);
00493 
00494                     // ----- data members --------------------------------
00495 
00496                     protected:
00497                         /**
00498                         * The extractor description.
00499                         */
00500                         FinalView<String> f_vsExtractor;
00501 
00502                         /**
00503                         * The index description.
00504                         */
00505                         MemberView<String> m_vsIndex;
00506 
00507                         /**
00508                         * Indicates whether or not the associated index is
00509                         * ordered.
00510                         */
00511                         bool m_fOrdered;
00512 
00513                         /**
00514                         * The index footprint in bytes.
00515                         */
00516                         int64_t m_cBytes;
00517 
00518                         /**
00519                         * The index content map size.
00520                         */
00521                         int32_t m_cDistinctValues;
00522 
00523                         /**
00524                         * The index type description.
00525                         */
00526                         MemberView<String> m_vsIndexDef;
00527                     };
00528 
00529                 // ----- data members ----------------------------------------
00530 
00531                 protected:
00532                     /**
00533                     * The map of steps.
00534                     */
00535                     FinalHandle<List> f_hListSteps;
00536 
00537                     /**
00538                     * The partitions.
00539                     */
00540                     FinalHandle<PartitionSet> f_hPartMask;
00541             };
00542 
00543 
00544     // ----- data members ----------------------------------------------------
00545 
00546     protected:
00547         /**
00548         * This record type.
00549         */
00550         enum QueryRecorder::RecordType m_type;
00551 
00552         /**
00553         * The list of partial results.
00554         */
00555         FinalHandle<List> f_hListResults;
00556     };
00557 
00558 COH_CLOSE_NAMESPACE2
00559 
00560 #endif // COH_SIMPLE_QUERY_RECORD_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.