Oracle® Fusion Middleware C++ API Reference for Oracle Coherence
12c (12.2.1.4.0)

E90870-01

coherence/util/filter/ContainsAllFilter.hpp

00001 /*
00002 * ContainsAllFilter.hpp
00003 *
00004 * Copyright (c) 2000, 2019, 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_CONTAINS_ALL_FILTER_HPP
00017 #define COH_CONTAINS_ALL_FILTER_HPP
00018 
00019 #include "coherence/lang.ns"
00020 
00021 #include "coherence/util/Set.hpp"
00022 #include "coherence/util/ValueExtractor.hpp"
00023 #include "coherence/util/filter/ComparisonFilter.hpp"
00024 #include "coherence/util/filter/IndexAwareFilter.hpp"
00025 
00026 COH_OPEN_NAMESPACE3(coherence,util,filter)
00027 
00028 
00029 /**
00030 * Filter which tests a Collection or ObjectArray value returned from
00031 * a method invocation for containment of all values in a Set.
00032 *
00033 * More formally, if the specified extractor returns a Collection,
00034 * #evaluate is functionally equivalent to the following
00035 * code:
00036 * <pre>
00037 * return ((Collection) extract(o))->containsAll((Collection) getValue());
00038 * </pre>
00039 * If the specified method returns an ObjectArray, #evaluate is functionally
00040 * equivalent to the following code:
00041 * <pre>
00042 * return Collections->asList((ObjectArray::View) extract(o))->containsAll(
00043 *        (Collection) getValue());
00044 * </pre>
00045 * @author djl  2008.04.07
00046 */
00047 class COH_EXPORT ContainsAllFilter
00048     : public class_spec<ContainsAllFilter,
00049         extends<ComparisonFilter>,
00050         implements<IndexAwareFilter> >
00051     {
00052     friend class factory<ContainsAllFilter>;
00053 
00054     // ----- constructors ---------------------------------------------------
00055 
00056     protected:
00057         /**
00058         * Default constructor (necessary for the PortableObject interface).
00059         */
00060         ContainsAllFilter();
00061 
00062         /**
00063         * Construct an ContainsAllFilter for testing containment of the given
00064         * Set of values.
00065         *
00066         * @param vExtractor  the ValueExtractor used by this filter
00067         * @param vSetValues  the Set of values that a Collection or ObjectArray
00068         *                    is tested to contain
00069         */
00070         ContainsAllFilter(ValueExtractor::View vExtractor,
00071                 Set::View vSetValues);
00072 
00073     private:
00074         /**
00075         * Blocked copy constructor.
00076         */
00077         ContainsAllFilter(const ContainsAllFilter&);
00078 
00079 
00080     // ----- ContainsAllFilter interface ------------------------------------
00081 
00082     protected:
00083         /**
00084         * Evaluate the specified extracted value.
00085         *
00086         * @param vExtracted an extracted value to evaluate
00087         */
00088         virtual bool evaluateExtracted(Object::View vExtracted) const;
00089 
00090 
00091     // ----- IndexAwareFilter interface -------------------------------------
00092 
00093     public:
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual size32_t calculateEffectiveness(Map::View vMapIndexes,
00098                 Set::View vSetKeys) const;
00099 
00100         /**
00101         * {@inheritDoc}
00102         */
00103         virtual Filter::View applyIndex(Map::View vMapIndexes,
00104                 Set::Handle hSetKeys) const;
00105    };
00106 
00107 COH_CLOSE_NAMESPACE3
00108 
00109 #endif // COH_CONTAINS_ALL_FILTER_HPP
Copyright © 2000, 2019, Oracle and/or its affiliates. All rights reserved.