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_VIEW_BUILDER_HPP 00008 #define COH_VIEW_BUILDER_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 #include "coherence/util/Filter.hpp" 00013 #include "coherence/util/MapListener.hpp" 00014 #include "coherence/util/Supplier.hpp" 00015 #include "coherence/util/ValueExtractor.hpp" 00016 00017 COH_OPEN_NAMESPACE2(coherence,net) 00018 00019 using coherence::util::Filter; 00020 using coherence::util::MapListener; 00021 using coherence::util::Supplier; 00022 using coherence::util::ValueExtractor; 00023 00024 // forward reference to avoid circular header inclusion 00025 class NamedCache; 00026 00027 /** 00028 * The ViewBuilder provides a means to build() a view (ContinuousQueryCache) 00029 * using a fluent pattern / style. 00030 * 00031 * @see ContinuousQueryCache 00032 * 00033 * @author rl 6.2.19 00034 * @since 12.2.1.4 00035 */ 00036 class COH_EXPORT ViewBuilder 00037 : public class_spec<ViewBuilder, 00038 extends<Object> > 00039 { 00040 friend class factory<ViewBuilder>; 00041 00042 // ----- handle definitions --------------------------------------------- 00043 00044 public: 00045 /** 00046 * NamedCache Handle definition. 00047 */ 00048 typedef TypedHandle<NamedCache> NamedCacheHandle; 00049 00050 // ----- constructors --------------------------------------------------- 00051 00052 protected: 00053 /** 00054 * Construct a new ViewBuilder for the provided NamedCache. 00055 * 00056 * @param hCache the NamedCache from which the view will be created 00057 */ 00058 ViewBuilder(NamedCacheHandle hCache); 00059 00060 /** 00061 * Construct a new ViewBuilder for the provided NamedCache. 00062 * The Supplier should return a new NamedCache instance upon 00063 * each invocation. 00064 * 00065 * @param hSupplierCache the Supplier returning a NamedCache 00066 * from which the view will be created 00067 */ 00068 ViewBuilder(Supplier::Handle hSupplierCache); 00069 00070 private: 00071 /** 00072 * Blocked copy constructor. 00073 */ 00074 ViewBuilder(const ViewBuilder&); 00075 00076 // ----- builder interface ---------------------------------------------- 00077 00078 public: 00079 /** 00080 * The Filter that will be used to define the entries maintained in this view. 00081 * If no Filter is specified, AlwaysFilter#INSTANCE will be used. 00082 * 00083 * @param vFilter the Filter that will be used to query the 00084 * underlying NamedCache 00085 * 00086 * @return this ViewBuilder 00087 */ 00088 ViewBuilder::Handle filter(Filter::View vFilter); 00089 00090 /** 00091 * The MapListener that will receive all events, including those that 00092 * result from the initial population of the view. 00093 * 00094 * @param hListener the MapListener that will receive all the events from 00095 * the view, including those corresponding to its initial 00096 * population. 00097 * 00098 * @return this ViewBuilder 00099 */ 00100 ViewBuilder::Handle listener(MapListener::Handle hListener); 00101 00102 /** 00103 * The ValueExtractor that this view will use to transform the results from 00104 * the underlying cache prior to storing them locally. 00105 * 00106 * @param vMapper the ValueExtractor that will be used to 00107 * transform values retrieved from the underlying cache 00108 * before storing them locally; if specified, this 00109 * view will become read-only 00110 * 00111 * @return this ViewBuilder 00112 */ 00113 ViewBuilder::Handle map(ValueExtractor::View VMapper); 00114 00115 /** 00116 * The resulting view will only cache keys. 00117 * 00118 * NOTE: this is mutually exclusive with values(). 00119 * 00120 * @return this ViewBuilder 00121 */ 00122 ViewBuilder::Handle keys(); 00123 00124 /** 00125 * The resulting view with cache both keys and values. 00126 * 00127 * NOTE: this is mutually exclusive with keys(). 00128 * 00129 * @return this ViewBuilder 00130 */ 00131 ViewBuilder::Handle values(); 00132 00133 /** 00134 * Construct a view of the NamedCache provided to this builder. 00135 * 00136 * @return the view of the NamedCache provided to this builder 00137 */ 00138 NamedCacheHandle build(); 00139 00140 // ----- data members --------------------------------------------------- 00141 00142 protected: 00143 /** 00144 * The Supplier returning a NamedCache from which the 00145 * view will be created. 00146 */ 00147 FinalHolder<Supplier> f_hSupplierCache; 00148 00149 /** 00150 * The Filter that will be used to define the entries maintained 00151 * in this view. 00152 */ 00153 MemberView<Filter> m_vFilter; 00154 00155 /** 00156 * The MapListener that will receive all the events from 00157 * the view, including those corresponding to its initial 00158 * population. 00159 */ 00160 MemberHandle<MapListener> m_hListener; 00161 00162 /** 00163 * The ValueExtractor that will be used to transform values 00164 * retrieved from the underlying cache before storing them locally; if 00165 * specified, this view will become read-only. 00166 */ 00167 MemberView<ValueExtractor> m_vMapper; 00168 00169 /** 00170 * Flag controlling if the view will cache both keys and values 00171 * or only keys. 00172 */ 00173 bool m_fCacheValues; 00174 }; 00175 00176 COH_CLOSE_NAMESPACE2 00177 00178 #endif // COH_VIEW_BUILDER_HPP