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_NAVIGABLE_MAP_HPP 00008 #define COH_NAVIGABLE_MAP_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 #include "coherence/util/Comparator.hpp" 00013 #include "coherence/util/Map.hpp" 00014 #include "coherence/util/SortedMap.hpp" 00015 00016 COH_OPEN_NAMESPACE2(coherence,util) 00017 00018 /** 00019 * A SortedMap extended with navigation methods returning the 00020 * closest matches for given search targets. Methods lowerKey, 00021 * floorKey, ceilingKey, and higherKey return only the associated 00022 * keys. All of these methods are designed for locating, not 00023 * traversing entries. 00024 * 00025 * Methods subMap, headMap, tailMap differ from the like-named 00026 * SortedMap methods in accepting additional arguments describing 00027 * whether lower and upper bounds are inclusive versus exclusive. 00028 * Sub-maps of any NavigableMap must implement the NavigableMap 00029 * interface. 00030 * 00031 * This interface additionally defines methods pollFirstEntry 00032 * pollLastEntry that return and remove the least and greatest mappings, 00033 * if any exist, else returning NULL. 00034 * 00035 * Implementations of entry-returning methods are expected to 00036 * return Map.Entry pairs representing snapshots of mappings 00037 * at the time they were produced, and thus generally do <em>not</em> 00038 * support the optional Entry.setValue method. Note however 00039 * that it is possible to change mappings in the associated map using 00040 * method put. 00041 * 00042 * Methods 00043 * #subMap(Object, Object) subMap(K, K), 00044 * #headMap(Object) headMap(K), and 00045 * #tailMap(Object) tailMap(K) 00046 * are specified to return SortedMap to allow existing implementations 00047 * of SortedMap to be compatibly retrofitted to implement NavigableMap, 00048 * but extensions and implementations of this interface are encouraged 00049 * to override these methods to return NavigableMap. 00050 * 00051 * @see Map 00052 * @see TreeMap 00053 * 00054 * @author Wei Lin 2013.08.30 00055 * @since Coherence 12.1.3 00056 */ 00057 class COH_EXPORT NavigableMap 00058 : public interface_spec<NavigableMap, 00059 implements<SortedMap> > 00060 { 00061 public: 00062 using SortedMap::subMap; 00063 using SortedMap::headMap; 00064 using SortedMap::tailMap; 00065 00066 // ----- NavigableMap interface ----------------------------------------- 00067 00068 public: 00069 /** 00070 * Returns the least key greater than or equal to the given key, 00071 * or NULL if there is no such key. 00072 * 00073 * @param vKey the key 00074 * 00075 * @return the least key greater than or equal to the given key, 00076 * or NULL if there is no such key. 00077 * 00078 * @throws ClassCastException if the specified key cannot be compared 00079 * with the keys currently in the map 00080 * @throws NullPointerException if the specified key is NULL 00081 * and this map does not permit NULL keys 00082 */ 00083 virtual Object::View ceilingKey(Object::View vKey) const = 0; 00084 00085 /** 00086 * Returns the greatest key less than or equal to the given key, 00087 * or NULL if there is no such key. 00088 * 00089 * @param vKey the key 00090 * 00091 * @return the greatest key less than or equal to the given key, 00092 * or NULL if there is no such key. 00093 * 00094 * @throws ClassCastException if the specified key cannot be compared 00095 * with the keys currently in the map 00096 * @throws NullPointerException if the specified key is NULL 00097 * and this map does not permit NULL keys 00098 */ 00099 virtual Object::View floorKey(Object::View vKey) const = 0; 00100 00101 /** 00102 * Returns the least key strictly greater than the given key, or 00103 * NULL if there is no such key. 00104 * 00105 * @param vKey the key 00106 * @return the least key greater than the given key, 00107 * or NULL if there is no such key 00108 * 00109 * @throws ClassCastException if the specified key cannot be compared 00110 * with the keys currently in the map 00111 * @throws NullPointerException if the specified key is NULL 00112 * and this map does not permit NULL keys 00113 */ 00114 virtual Object::View higherKey(Object::View vKey) const = 0; 00115 00116 /** 00117 * Returns the greatest key strictly less than the given key, or 00118 * NULL if there is no such key. 00119 * 00120 * @param vKey the key 00121 * @return the greatest key less than the given key, 00122 * or NULL if there is no such key 00123 * 00124 * @throws ClassCastException if the specified key cannot be compared 00125 * with the keys currently in the map 00126 * @throws NullPointerException if the specified key is NULL 00127 * and this map does not permit NULL keys 00128 */ 00129 virtual Object::View lowerKey(Object::View vKey) const = 0; 00130 00131 /** 00132 * Removes and returns a key-value mapping associated with 00133 * the least key in this map, or NULL if the map is empty. 00134 * 00135 * @return the removed first entry of this map, 00136 * or NULL if this map is empty 00137 */ 00138 virtual Map::Entry::Holder pollFirstEntry() = 0; 00139 00140 /** 00141 * Removes and returns a key-value mapping associated with 00142 * the greatest key in this map, or NULL if the map is empty. 00143 * 00144 * @return the removed last entry of this map, 00145 * or NULL if this map is empty 00146 */ 00147 virtual Map::Entry::Holder pollLastEntry() = 0; 00148 00149 /** 00150 * Returns a handle of the portion of the map whose keys are less than (or 00151 * equal to, if toInclusive is true) vToKey. 00152 * The handle is backed by this map, so changes in one show up in the 00153 * other. The sub-map supports all optional operations of the original. 00154 * 00155 * @param vToKey the exclusive upper range of the sub-map 00156 * @param toInclusive true if the high endpoint is to be included 00157 * in the returned view 00158 * 00159 * @return the sub-map 00160 * 00161 * @throws ClassCastException if vToKey is not comparable to the map 00162 * contents 00163 * @throws IllegalArgumentException if this is a sub-map, and vToKey is 00164 * out of range 00165 * @throws NullPointerException if vToKey is NULL but the map does not 00166 * allow NULL keys 00167 */ 00168 virtual NavigableMap::Handle headMap(Object::View vToKey, bool toInclusive) = 0; 00169 00170 /** 00171 * Returns a view of the portion of the map whose keys are less than (or 00172 * equal to, if toInclusive is true) vToKey. 00173 * 00174 * @param vToKey the exclusive upper range of the sub-map 00175 * @param toInclusive true if the high endpoint is to be included 00176 * in the returned view 00177 * 00178 * @return the sub-map 00179 * 00180 * @throws ClassCastException if vToKey is not comparable to the map 00181 * contents 00182 * @throws IllegalArgumentException if this is a sub-map, and toKey is 00183 * out of range 00184 * @throws NullPointerException if vToKey is NULL but the map does not 00185 * allow NULL keys 00186 */ 00187 virtual NavigableMap::View headMap(Object::View vToKey, bool toInclusive) const = 0; 00188 00189 /** 00190 * Returns a handle of the portion of this map whose keys range from 00191 * vFromKey to vToKey. If vFromKey and vToKey are equal, the returned 00192 * map is empty unless fromInclusive and toInclusive are both true. 00193 * The handle is backed by this map, so changes in one show up in the other. 00194 * The sub-map supports all optional operations of the original. 00195 * 00196 * @param vFromKey the inclusive lower range of the sub-map 00197 * @param fromInclusive true if the low endpoint is to be included 00198 * in the returned view 00199 * @param vToKey the exclusive upper range of the sub-map 00200 * @param toInclusive true if the high endpoint is to be included 00201 * in the returned view 00202 * 00203 * @return the sub-map 00204 * 00205 * @throws ClassCastException if vFromKey or vToKey is not comparable to 00206 * the map contents 00207 * @throws IllegalArgumentException if this is a sub-map, and vFromKey or 00208 * vToKey is out of range 00209 * @throws NullPointerException if vFromKey or vToKey is NULL but the map 00210 * does not allow NULL keys 00211 */ 00212 virtual NavigableMap::Handle subMap(Object::View vFromKey, bool fromInclusive, 00213 Object::View vToKey, bool toInclusive) = 0; 00214 00215 /** 00216 * Returns a view of the portion of this map whose keys range from 00217 * vFromKey to vToKey. If vFromKey and vToKey are equal, the returned 00218 * map is empty unless fromInclusive and toInclusive are both true. 00219 * 00220 * @param vFromKey the inclusive lower range of the sub-map 00221 * @param fromInclusive true if the low endpoint is to be included 00222 * in the returned view 00223 * @param vToKey the exclusive upper range of the sub-map 00224 * @param toInclusive true if the high endpoint is to be included 00225 * in the returned view 00226 * 00227 * @return the sub-map 00228 * 00229 * @throws ClassCastException if vFromKey or vToKey is not comparable to 00230 * the map contents 00231 * @throws IllegalArgumentException if this is a sub-map, and vFromKey or 00232 * vToKey is out of range 00233 * @throws NullPointerException if vFromKey or vToKey is NULL but the map 00234 * does not allow NULL keys 00235 */ 00236 virtual NavigableMap::View subMap(Object::View vFromKey, bool fromInclusive, 00237 Object::View vToKey, bool toInclusive) const = 0; 00238 00239 /** 00240 * Returns a handle of the portion of the map whose keys are greater than (or 00241 * equal to, if fromInclusive} is true) vFromKey. 00242 * The handle is backed by this map, so changes in one show up in the 00243 * other. The sub-map supports all optional operations of the original. 00244 * 00245 * @param vFromKey the inclusive lower range of the sub-map 00246 * @param fromInclusive true if the low endpoint is to be included 00247 * in the returned view 00248 * 00249 * @return the sub-map 00250 * 00251 * @throws ClassCastException if vFromKey is not comparable to the map 00252 * contents 00253 * @throws IllegalArgumentException if this is a sub-map, and vFromKey is 00254 * out of range 00255 * @throws NullPointerException if vFromKey is NULL but the map does not 00256 * allow NULL keys 00257 */ 00258 virtual NavigableMap::Handle tailMap(Object::View vFromKey, bool fromInclusive) = 0; 00259 00260 /** 00261 * Returns a view of the portion of the map whose keys are greater than (or 00262 * equal to, if fromInclusive} is true) vFromKey. 00263 * 00264 * @param vFromKey the inclusive lower range of the sub-map 00265 * @param fromInclusive true if the low endpoint is to be included 00266 * in the returned view 00267 * 00268 * @return the sub-map 00269 * 00270 * @throws ClassCastException if vFromKey is not comparable to the map 00271 * contents 00272 * @throws IllegalArgumentException if this is a sub-map, and vFromKey is 00273 * out of range 00274 * @throws NullPointerException if vFromKey is NULL but the map does not 00275 * allow NULL keys 00276 */ 00277 virtual NavigableMap::View tailMap(Object::View vFromKey, bool fromInclusive) const = 0; 00278 }; 00279 00280 COH_CLOSE_NAMESPACE2 00281 00282 #endif // COH_NAVIGABLE_MAP_HPP 00283