coherence/util/filter/PresentFilter.hpp

00001 /*
00002 * PresentFilter.hpp
00003 *
00004 * Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
00005 *
00006 * Oracle is a registered trademarks of Oracle Corporation and/or its
00007 * affiliates.
00008 *
00009 * This software is the confidential and proprietary information of Oracle
00010 * Corporation. You shall not disclose such confidential and proprietary
00011 * information and shall use it only in accordance with the terms of the
00012 * license agreement you entered into with Oracle.
00013 *
00014 * This notice may not be removed or altered.
00015 */
00016 #ifndef COH_PRESENT_FILTER_HPP
00017 #define COH_PRESENT_FILTER_HPP
00018 
00019 #include "coherence/lang.ns"
00020 
00021 #include "coherence/io/pof/PofReader.hpp"
00022 #include "coherence/io/pof/PofWriter.hpp"
00023 #include "coherence/io/pof/PortableObject.hpp"
00024 #include "coherence/util/Map.hpp"
00025 #include "coherence/util/filter/EntryFilter.hpp"
00026 #include "coherence/util/filter/IndexAwareFilter.hpp"
00027 
00028 COH_OPEN_NAMESPACE3(coherence,util,filter)
00029 
00030 using coherence::io::pof::PofReader;
00031 using coherence::io::pof::PofWriter;
00032 using coherence::io::pof::PortableObject;
00033 
00034 
00035 /**
00036 * Filter which returns true for InvocableMap::Entry objects that currently
00037 * exist in a Map.
00038 *
00039 * This Filter is intended to be used solely in combination with a
00040 * ConditionalProcessor and is unnecessary for standard QueryMap operations.
00041 *
00042 * @author djl  2008.04.08
00043 */
00044 class COH_EXPORT PresentFilter
00045     : public class_spec<PresentFilter,
00046         extends<Object>,
00047         implements<IndexAwareFilter, PortableObject> >
00048     {
00049     friend class factory<PresentFilter>;
00050 
00051     // ----- constructors ---------------------------------------------------
00052 
00053     protected:
00054         /**
00055         * Construct a PresentFilter.
00056         */
00057         PresentFilter();
00058 
00059 
00060     // ----- EntryFilter interface ------------------------------------------
00061 
00062     public:
00063         /**
00064         * {@inheritDoc}
00065         */
00066         virtual bool evaluateEntry(Map::Entry::View vEntry) const;
00067 
00068 
00069     // ----- Filter interface -----------------------------------------------
00070 
00071     public:
00072         /**
00073         * {@inheritDoc}
00074         */
00075         virtual bool evaluate(Object::View v) const;
00076 
00077 
00078     // ----- IndexAwareFilter interface -------------------------------------
00079 
00080     public:
00081         /**
00082         * {@inheritDoc}
00083         */
00084         virtual size32_t calculateEffectiveness(Map::View vMapIndexes,
00085                 Set::View vSetKeys) const;
00086 
00087         /**
00088         * {@inheritDoc}
00089         */
00090         virtual Filter::View applyIndex(Map::View vMapIndexes,
00091                 Set::Handle hSetKeys) const;
00092 
00093 
00094     // ----- PortableObject interface ---------------------------------------
00095 
00096     public:
00097         /**
00098         * {@inheritDoc}
00099         */
00100         virtual void readExternal(PofReader::Handle hIn);
00101 
00102         /**
00103         * {@inheritDoc}
00104         */
00105         virtual void writeExternal(PofWriter::Handle hOut) const;
00106 
00107 
00108     // ----- Object interface -----------------------------------------------
00109 
00110     public:
00111         /**
00112         * {@inheritDoc}
00113         */
00114         virtual bool equals(Object::View v) const;
00115 
00116         /**
00117         * {@inheritDoc}
00118         */
00119         virtual size32_t hashCode() const;
00120 
00121         /**
00122         * {@inheritDoc}
00123         */
00124         virtual void toStream(std::ostream& out) const;
00125 
00126 
00127     // ----- constants ------------------------------------------------------
00128 
00129     public:
00130         /**
00131         * An instance of the PresentFilter.
00132         */
00133         static PresentFilter::Handle getInstance();
00134     };
00135 
00136 COH_CLOSE_NAMESPACE3
00137 
00138 #endif // COH_PRESENT_FILTER_HPP
Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.