Oracle Coherence for C++ API
Release 3.7.1.0
E22845-01
00001 /* 00002 * MapEventTransformerFilter.hpp 00003 * 00004 * Copyright (c) 2000, 2011, 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_MAP_EVENT_TRANSFORMER_FILTER_HPP 00017 #define COH_MAP_EVENT_TRANSFORMER_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/Filter.hpp" 00025 #include "coherence/util/MapEvent.hpp" 00026 #include "coherence/util/MapEventTransformer.hpp" 00027 #include "coherence/util/MapTrigger.hpp" 00028 00029 COH_OPEN_NAMESPACE3(coherence,util,filter) 00030 00031 using coherence::io::pof::PofReader; 00032 using coherence::io::pof::PofWriter; 00033 using coherence::io::pof::PortableObject; 00034 00035 00036 /** 00037 * MapEventTransformerFilter is a generic multiplexing wrapper that combines 00038 * two implementations: a Filter (most commonly a MapEventFilter) and 00039 * a MapEventTransformer and is used to register event listeners that allow to 00040 * change the content of a MapEvent. 00041 * 00042 * @see coherence::util::transformer::SemiLiteEventTransformer 00043 * 00044 * @author djl 2008.05.22 00045 */ 00046 class COH_EXPORT MapEventTransformerFilter 00047 : public class_spec<MapEventTransformerFilter, 00048 extends<Object>, 00049 implements<PortableObject, Filter, MapEventTransformer> > 00050 { 00051 friend class factory<MapEventTransformerFilter>; 00052 00053 // ----- constructors --------------------------------------------------- 00054 00055 protected: 00056 /** 00057 * Default constructor (necessary for the PortableObject interface). 00058 */ 00059 MapEventTransformerFilter(); 00060 00061 /** 00062 * Construct a MapEventTransformerFilter based on the specified Filter 00063 * and MapEventTransformer. 00064 * 00065 * @param vFilter the underlying Filter (e.g. MapEventFilter) 00066 * used to evaluate original MapEvent objects 00067 * (optional) 00068 * @param vTransformer the underlying MapEventTransformer used to 00069 * transform original MapEvent objects 00070 */ 00071 MapEventTransformerFilter(Filter::View vFilter, 00072 MapEventTransformer::View vTransformer); 00073 00074 00075 // ----- Filter interface ----------------------------------------------- 00076 00077 public: 00078 /** 00079 * {@inheritDoc} 00080 */ 00081 virtual bool evaluate(Object::View v) const; 00082 00083 00084 // ----- MapEventTransformer interface ---------------------------------- 00085 00086 public: 00087 /** 00088 * {@inheritDoc} 00089 */ 00090 virtual MapEvent::Handle transform(MapEvent::Handle hEvent) const; 00091 00092 00093 // ----- PortableObject interface --------------------------------------- 00094 00095 public: 00096 /** 00097 * {@inheritDoc} 00098 */ 00099 virtual void readExternal(PofReader::Handle hIn); 00100 00101 /** 00102 * {@inheritDoc} 00103 */ 00104 virtual void writeExternal(PofWriter::Handle hOut) const; 00105 00106 00107 // ----- Object interface ----------------------------------------------- 00108 00109 public: 00110 /** 00111 * {@inheritDoc} 00112 */ 00113 virtual bool equals(Object::View v) const; 00114 00115 /** 00116 * {@inheritDoc} 00117 */ 00118 virtual size32_t hashCode() const; 00119 00120 /** 00121 * {@inheritDoc} 00122 */ 00123 virtual void toStream(std::ostream& out) const; 00124 00125 00126 // ----- data members --------------------------------------------------- 00127 00128 private: 00129 /** 00130 * The underlying Filter to evaluate MapEvents with. 00131 */ 00132 MemberView<Filter> m_vFilter; 00133 00134 /** 00135 * The underlying transformer 00136 */ 00137 MemberView<MapEventTransformer> m_vTransformer; 00138 }; 00139 00140 COH_CLOSE_NAMESPACE3 00141 00142 #endif // COH_MAP_EVENT_TRANSFORMER_FILTER_HPP