00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 #ifndef COH_ANY_FILTER_HPP
00017 #define COH_ANY_FILTER_HPP
00018 
00019 #include "coherence/lang.ns"
00020 
00021 #include "coherence/util/Map.hpp"
00022 #include "coherence/util/filter/ArrayFilter.hpp"
00023 
00024 COH_OPEN_NAMESPACE3(coherence,util,filter)
00025 
00026 
00027 
00028 
00029 
00030 
00031 
00032 class COH_EXPORT AnyFilter
00033     : public class_spec<AnyFilter,
00034         extends<ArrayFilter> >
00035     {
00036     friend class factory<AnyFilter>;
00037 
00038     
00039 
00040     protected:
00041 
00042 
00043 
00044         AnyFilter();
00045 
00046 
00047 
00048 
00049 
00050 
00051 
00052         AnyFilter(ObjectArray::View vaFilter);
00053 
00054     private:
00055 
00056 
00057 
00058         AnyFilter(const AnyFilter&);
00059 
00060 
00061     
00062 
00063     public:
00064 
00065 
00066 
00067         virtual bool evaluateEntry(Map::Entry::View vEntry) const;
00068 
00069 
00070     
00071 
00072     public:
00073 
00074 
00075 
00076         virtual bool evaluate(Object::View v) const;
00077 
00078 
00079     
00080 
00081     public:
00082 
00083 
00084 
00085         virtual size32_t calculateEffectiveness(Map::View vMapIndexes,
00086                 Set::View vSetKeys) const;
00087 
00088 
00089 
00090 
00091         virtual Filter::View applyIndex(Map::View vMapIndexes,
00092                 Set::Handle hSetKeys) const;
00093     };
00094 
00095 COH_CLOSE_NAMESPACE3
00096 
00097 #endif // COH_ANY_FILTER_HPP