00001
00002
00003
00004
00005
00006
00007 #ifndef COH_CONVERTER_COLLECTIONS_HPP
00008 #define COH_CONVERTER_COLLECTIONS_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012
00013 #include "coherence/net/cache/CacheEvent.hpp"
00014 #include "coherence/net/cache/CacheMap.hpp"
00015 #include "coherence/net/CacheService.hpp"
00016 #include "coherence/net/NamedCache.hpp"
00017 #include "coherence/util/Collection.hpp"
00018 #include "coherence/util/ConcurrentMap.hpp"
00019 #include "coherence/util/Converter.hpp"
00020 #include "coherence/util/Filter.hpp"
00021 #include "coherence/util/InvocableMap.hpp"
00022 #include "coherence/util/Iterator.hpp"
00023 #include "coherence/util/MapEvent.hpp"
00024 #include "coherence/util/ObservableMap.hpp"
00025 #include "coherence/util/Set.hpp"
00026 #include "coherence/util/WrapperCollections.hpp"
00027
00028 COH_OPEN_NAMESPACE2(coherence,util)
00029
00030 using coherence::net::cache::CacheEvent;
00031 using coherence::net::cache::CacheMap;
00032 using coherence::net::CacheService;
00033 using coherence::net::NamedCache;
00034
00035
00036
00037
00038
00039
00040
00041 class COH_EXPORT ConverterCollections
00042 {
00043
00044 public:
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054 static ObjectArray::Handle convertArray(ObjectArray::Handle hArray,
00055 Converter::View vConvUp);
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066 static ObjectArray::View convertArray(ObjectArray::View vArray,
00067 Converter::View vConvUp);
00068
00069
00070
00071
00072 public:
00073
00074
00075
00076
00077 class COH_EXPORT ConverterIterator
00078 : public cloneable_spec<ConverterIterator,
00079 extends<WrapperCollections::AbstractWrapperIterator> >
00080 {
00081 friend class factory<ConverterIterator>;
00082
00083
00084
00085 protected:
00086
00087
00088
00089
00090
00091
00092
00093 ConverterIterator(Iterator::Handle hiterDelegate,
00094 Converter::View vConvUp);
00095
00096
00097
00098
00099 ConverterIterator(const ConverterIterator& that);
00100
00101
00102
00103 public:
00104
00105
00106
00107 virtual Object::Holder next();
00108
00109
00110
00111
00112 protected:
00113
00114
00115
00116 FinalView<Converter> f_vConvUp;
00117 };
00118
00119
00120
00121
00122
00123
00124 class COH_EXPORT ConverterCollection
00125 : public cloneable_spec<ConverterCollection,
00126 extends<WrapperCollections::AbstractWrapperCollection> >
00127 {
00128 friend class factory<ConverterCollection>;
00129
00130
00131
00132 protected:
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143 ConverterCollection(Collection::Handle hcollDelegate,
00144 Converter::View vConvUp,
00145 Converter::View vConvDown);
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157 ConverterCollection(Collection::View vcollDelegate,
00158 Converter::View vConvUp,
00159 Converter::View vConvDown);
00160
00161
00162
00163
00164 ConverterCollection(const ConverterCollection& that);
00165
00166
00167
00168
00169 public:
00170
00171
00172
00173 virtual bool contains(Object::View v) const;
00174
00175
00176
00177
00178 virtual Iterator::Handle iterator() const;
00179
00180
00181
00182
00183 virtual Muterator::Handle iterator();
00184
00185
00186
00187
00188 virtual ObjectArray::Handle toArray(
00189 ObjectArray::Handle hao = NULL) const;
00190
00191
00192
00193
00194 virtual bool add(Object::Holder oh);
00195
00196
00197
00198
00199 virtual bool remove(Object::View v);
00200
00201
00202
00203
00204 virtual bool containsAll(Collection::View vc) const;
00205
00206
00207
00208
00209 virtual bool addAll(Collection::View vc);
00210
00211
00212
00213
00214 virtual bool removeAll(Collection::View vc);
00215
00216
00217
00218
00219 virtual bool retainAll(Collection::View vc);
00220
00221
00222
00223 public:
00224
00225
00226
00227 virtual bool equals(Object::View that) const;
00228
00229
00230
00231
00232 virtual size32_t hashCode() const;
00233
00234
00235
00236
00237 virtual TypedHandle<const String> toString() const;
00238
00239
00240
00241 protected:
00242
00243
00244
00245 FinalView<Converter> f_vConvUp;
00246
00247
00248
00249
00250 FinalView<Converter> f_vConvDown;
00251 };
00252
00253
00254
00255
00256
00257 class COH_EXPORT ConverterSet
00258 : public cloneable_spec<ConverterSet,
00259 extends<WrapperCollections::AbstractWrapperSet> >
00260 {
00261 friend class factory<ConverterSet>;
00262
00263
00264
00265 protected:
00266
00267
00268
00269
00270
00271
00272
00273
00274 ConverterSet(Set::Handle hsetDelegate,
00275 Converter::View vConvUp,
00276 Converter::View vConvDown);
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286 ConverterSet(Set::View vsetDelegate,
00287 Converter::View vConvUp,
00288 Converter::View vConvDown);
00289
00290
00291
00292
00293 ConverterSet(const ConverterSet& that);
00294
00295
00296
00297 public:
00298
00299
00300
00301
00302 virtual bool contains(Object::View v) const;
00303
00304
00305
00306
00307 virtual Iterator::Handle iterator() const;
00308
00309
00310
00311
00312 virtual Muterator::Handle iterator();
00313
00314
00315
00316
00317 virtual ObjectArray::Handle toArray(
00318 ObjectArray::Handle hoa = NULL) const;
00319
00320
00321
00322
00323 virtual bool add(Object::Holder oh);
00324
00325
00326
00327
00328 virtual bool remove(Object::View v);
00329
00330
00331
00332
00333 virtual bool containsAll(Collection::View vc) const;
00334
00335
00336
00337
00338 virtual bool addAll(Collection::View vc);
00339
00340
00341
00342
00343 virtual bool removeAll(Collection::View vc);
00344
00345
00346
00347
00348 virtual bool retainAll(Collection::View vc);
00349
00350
00351
00352 public:
00353
00354
00355
00356 virtual bool equals(Object::View that) const;
00357
00358
00359
00360
00361 virtual size32_t hashCode() const;
00362
00363
00364
00365
00366 virtual TypedHandle<const String> toString() const;
00367
00368
00369
00370 protected:
00371
00372
00373
00374 FinalView<Converter> f_vConvUp;
00375
00376
00377
00378
00379 FinalView<Converter> f_vConvDown;
00380 };
00381
00382
00383
00384
00385
00386 class COH_EXPORT EntryConverter
00387 : public class_spec<EntryConverter,
00388 extends<Object>,
00389 implements<Converter> >
00390 {
00391 friend class factory<EntryConverter>;
00392
00393
00394
00395 public:
00396
00397
00398
00399
00400
00401
00402 EntryConverter(Converter::View vConvKey,
00403 Converter::View vConvVal);
00404
00405
00406
00407
00408 EntryConverter(const EntryConverter& that);
00409
00410
00411
00412 public:
00413
00414
00415
00416 virtual Object::Holder convert(Object::Holder oh) const;
00417
00418
00419
00420 public:
00421
00422
00423
00424 virtual Converter::View getKeyConverter() const;
00425
00426
00427
00428
00429 virtual Converter::View getValueConverter() const;
00430
00431
00432
00433 public:
00434
00435
00436
00437
00438
00439 static Converter::View getKeyConverter
00440 (EntryConverter::View vConvert);
00441
00442
00443
00444
00445
00446
00447 static Converter::View getValueConverter
00448 (EntryConverter::View vConvert);
00449
00450
00451
00452
00453
00454
00455
00456
00457
00458
00459
00460 static Object::View convertKey
00461 (EntryConverter::View vConvert, Object::View vKey);
00462
00463
00464
00465
00466
00467
00468
00469
00470
00471
00472
00473
00474
00475 static Object::Holder convertValue
00476 (EntryConverter::View vConvert, Object::Holder ohValue);
00477
00478
00479
00480 protected:
00481
00482
00483
00484 FinalView<Converter> f_vConvKey;
00485
00486
00487
00488
00489 FinalView<Converter> f_vConvVal;
00490 };
00491
00492
00493
00494
00495
00496 class COH_EXPORT ConverterMap
00497 : public cloneable_spec<ConverterMap,
00498 extends<WrapperCollections::AbstractWrapperMap> >
00499 {
00500 friend class factory<ConverterMap>;
00501
00502
00503
00504 protected:
00505
00506
00507
00508
00509
00510
00511
00512
00513 ConverterMap(Map::Handle hMapDelegate,
00514 EntryConverter::View vConvUp,
00515 EntryConverter::View vConvDown);
00516
00517
00518
00519
00520
00521
00522
00523
00524
00525 ConverterMap(Map::View vMapDelegate,
00526 EntryConverter::View vConvUp,
00527 EntryConverter::View vConvDown);
00528
00529
00530
00531
00532 ConverterMap(const ConverterMap& that);
00533
00534
00535
00536 public:
00537
00538
00539
00540 virtual bool containsKey(Object::View vKey) const;
00541
00542
00543
00544
00545 virtual bool containsValue(Object::View vValue) const;
00546
00547
00548
00549
00550 virtual Object::Holder get(Object::View vKey) const;
00551
00552
00553
00554
00555 using Map::get;
00556
00557
00558
00559
00560 virtual Object::Holder put(Object::View vKey,
00561 Object::Holder ohValue);
00562
00563
00564
00565
00566 virtual Object::Holder remove(Object::View vKey);
00567 using Map::remove;
00568
00569
00570
00571
00572 virtual void putAll(Map::View vMap);
00573
00574
00575
00576
00577 virtual Set::View keySet() const;
00578
00579
00580
00581
00582 virtual Set::Handle keySet();
00583
00584
00585
00586
00587 virtual Collection::View values() const;
00588
00589
00590
00591
00592 virtual Collection::Handle values();
00593
00594
00595
00596
00597 virtual Set::View entrySet() const;
00598
00599
00600
00601
00602 virtual Set::Handle entrySet();
00603
00604
00605
00606 public:
00607
00608
00609
00610 virtual bool equals(Object::View that) const;
00611
00612
00613
00614
00615 virtual size32_t hashCode() const;
00616
00617
00618
00619
00620 virtual TypedHandle<const String> toString() const;
00621
00622
00623
00624 public:
00625
00626
00627
00628
00629
00630
00631 virtual EntryConverter::View getUpConverter() const;
00632
00633
00634
00635
00636
00637
00638
00639 virtual EntryConverter::View getDownConverter() const;
00640
00641
00642
00643 protected:
00644
00645
00646
00647 FinalView<EntryConverter> f_vConvUp;
00648
00649
00650
00651
00652 FinalView<EntryConverter> f_vConvDown;
00653 };
00654
00655
00656
00657
00658
00659 class COH_EXPORT ConverterEntry
00660 : public cloneable_spec<ConverterEntry,
00661 extends<WrapperCollections::AbstractWrapperEntry> >
00662 {
00663 friend class factory<ConverterEntry>;
00664
00665
00666
00667 protected:
00668
00669
00670
00671
00672
00673
00674
00675
00676
00677 ConverterEntry(Map::Entry::Handle hMapDelegate,
00678 EntryConverter::View vConvUp,
00679 EntryConverter::View vConvDown);
00680
00681
00682
00683
00684
00685
00686
00687
00688
00689
00690 ConverterEntry(Map::Entry::View vMapDelegate,
00691 EntryConverter::View vConvUp,
00692 EntryConverter::View vConvDown);
00693
00694
00695
00696
00697 ConverterEntry(const ConverterEntry& that);
00698
00699
00700
00701
00702 public:
00703
00704
00705
00706 virtual Object::View getKey() const;
00707
00708
00709
00710
00711 virtual Object::Holder getValue() const;
00712
00713
00714
00715
00716 using Map::Entry::getValue;
00717
00718
00719
00720
00721 virtual Object::Holder setValue(Object::Holder ohValue);
00722
00723
00724
00725 public:
00726
00727
00728
00729 virtual bool equals(Object::View that) const;
00730
00731
00732
00733
00734 virtual size32_t hashCode() const;
00735
00736
00737
00738
00739
00740 virtual TypedHandle<const String> toString() const;
00741
00742
00743
00744 protected:
00745
00746
00747
00748 FinalView<EntryConverter> f_vConvUp;
00749
00750
00751
00752
00753 FinalView<EntryConverter> f_vConvDown;
00754 };
00755
00756
00757
00758
00759
00760
00761
00762
00763 class COH_EXPORT ConverterCacheEvent
00764 : public class_spec<ConverterCacheEvent,
00765 extends<CacheEvent> >
00766 {
00767 friend class factory<ConverterCacheEvent>;
00768
00769
00770
00771 protected:
00772
00773
00774
00775
00776
00777
00778
00779
00780
00781
00782 ConverterCacheEvent(ObservableMap::Handle hMap,
00783 CacheEvent::View vEvent, Converter::View vConvKey,
00784 Converter::View vConvVal);
00785
00786
00787
00788 public:
00789
00790
00791
00792 virtual Object::View getKey() const;
00793
00794
00795
00796
00797 virtual Object::View getOldValue() const;
00798
00799
00800
00801
00802 virtual Object::View getNewValue() const;
00803
00804
00805
00806 public:
00807
00808
00809
00810
00811
00812 virtual CacheEvent::View getCacheEvent() const;
00813
00814
00815
00816
00817
00818
00819
00820 virtual Converter::View getConverterKeyUp() const;
00821
00822
00823
00824
00825
00826
00827
00828
00829 virtual Converter::View getConverterValueUp() const;
00830
00831
00832
00833
00834
00835
00836
00837 virtual void setOldValue(Object::View voValue);
00838
00839
00840
00841
00842
00843
00844
00845 virtual void setNewValue(Object::View voValue);
00846
00847
00848
00849 protected:
00850
00851
00852
00853 FinalView<CacheEvent> f_vEvent;
00854
00855
00856
00857
00858 FinalView<Converter> f_vConvKey;
00859
00860
00861
00862
00863 FinalView<Converter> f_vConvVal;
00864 };
00865
00866
00867
00868
00869
00870
00871
00872
00873 class COH_EXPORT ConverterMapEvent
00874 : public class_spec<ConverterMapEvent,
00875 extends<MapEvent> >
00876 {
00877 friend class factory<ConverterMapEvent>;
00878
00879
00880
00881 protected:
00882
00883
00884
00885
00886
00887
00888
00889
00890
00891
00892 ConverterMapEvent(ObservableMap::Handle hMap,
00893 MapEvent::View vEvent, Converter::View vConvKey,
00894 Converter::View vConvVal);
00895
00896
00897
00898 public:
00899
00900
00901
00902 virtual Object::View getKey() const;
00903
00904
00905
00906
00907 virtual Object::View getOldValue() const;
00908
00909
00910
00911
00912 virtual Object::View getNewValue() const;
00913
00914
00915
00916 public:
00917
00918
00919
00920
00921
00922 virtual MapEvent::View getMapEvent() const;
00923
00924
00925
00926
00927
00928
00929
00930 virtual Converter::View getConverterKeyUp() const;
00931
00932
00933
00934
00935
00936
00937
00938 virtual Converter::View getConverterValueUp() const;
00939
00940
00941
00942
00943
00944
00945 virtual void setKey(Object::View voKey);
00946
00947
00948
00949
00950
00951
00952
00953 virtual void setOldValue(Object::View voValue);
00954
00955
00956
00957
00958
00959
00960
00961 virtual void setNewValue(Object::View voValue);
00962
00963
00964
00965
00966
00967
00968 virtual bool isKeyConverted() const;
00969
00970
00971
00972
00973
00974
00975 virtual bool isOldValueConverted() const;
00976
00977
00978
00979
00980
00981
00982 virtual bool isNewValueConverted() const;
00983
00984
00985
00986 protected:
00987
00988
00989
00990 FinalView<MapEvent> f_vEvent;
00991
00992
00993
00994
00995 FinalView<Converter> f_vConvKey;
00996
00997
00998
00999
01000 FinalView<Converter> f_vConvVal;
01001 };
01002
01003
01004
01005
01006
01007
01008
01009
01010 class COH_EXPORT ConverterMapListener
01011 : public class_spec<ConverterMapListener,
01012 extends<Object>,
01013 implements<MapListener> >
01014 {
01015 friend class factory<ConverterMapListener>;
01016
01017
01018
01019 protected:
01020
01021
01022
01023
01024 ConverterMapListener(ObservableMap::Handle hMap,
01025 MapListener::Handle hListener, Converter::View vConvKey,
01026 Converter::View vConvVal);
01027
01028
01029
01030 public:
01031
01032
01033
01034 virtual void entryInserted(MapEvent::View vEvent);
01035
01036
01037
01038
01039 virtual void entryUpdated(MapEvent::View vEvent);
01040
01041
01042
01043
01044 virtual void entryDeleted(MapEvent::View vEvent);
01045
01046
01047
01048 public:
01049
01050
01051
01052 virtual bool equals(Object::View v) const;
01053
01054
01055
01056
01057 virtual size32_t hashCode() const;
01058
01059
01060
01061 public:
01062
01063
01064
01065
01066
01067 virtual ObservableMap::Handle getObservableMap();
01068
01069
01070
01071
01072
01073
01074 virtual ObservableMap::View getObservableMap() const;
01075
01076
01077
01078
01079
01080
01081 virtual MapListener::Handle getMapListener();
01082
01083
01084
01085
01086
01087
01088 virtual MapListener::View getMapListener() const;
01089
01090
01091
01092
01093
01094
01095
01096
01097 virtual Converter::View getConverterKeyUp() const;
01098
01099
01100
01101
01102
01103
01104
01105
01106 virtual Converter::View getConverterValueUp() const;
01107
01108
01109
01110 protected:
01111
01112
01113
01114
01115 FinalHandle<ObservableMap> f_hMap;
01116
01117
01118
01119
01120 FinalHandle<MapListener> f_hListener;
01121
01122
01123
01124
01125 FinalView<Converter> f_vConvKey;
01126
01127
01128
01129
01130 FinalView<Converter> f_vConvVal;
01131 };
01132
01133
01134
01135
01136
01137
01138
01139
01140 class COH_EXPORT ConverterObservableMap
01141 : public class_spec<ConverterObservableMap,
01142 extends<ConverterMap>,
01143 implements<ObservableMap> >
01144 {
01145 friend class factory<ConverterObservableMap>;
01146
01147
01148
01149 protected:
01150
01151
01152
01153
01154
01155
01156
01157
01158 ConverterObservableMap(ObservableMap::Handle hMap,
01159 EntryConverter::View vConvUp,
01160 EntryConverter::View vConvDown);
01161
01162
01163
01164
01165
01166
01167
01168
01169
01170 ConverterObservableMap(ObservableMap::View vMap,
01171 EntryConverter::View vConvUp,
01172 EntryConverter::View vConvDown);
01173
01174
01175
01176 public:
01177
01178
01179
01180 virtual void addKeyListener(MapListener::Handle hListener,
01181 Object::View vKey, bool fLite);
01182
01183
01184
01185
01186 virtual void removeKeyListener(MapListener::Handle hListener,
01187 Object::View vKey);
01188
01189
01190
01191
01192 virtual void addMapListener(MapListener::Handle hListener);
01193
01194
01195
01196
01197 virtual void removeMapListener(MapListener::Handle hListener);
01198
01199
01200
01201
01202 virtual void addFilterListener(MapListener::Handle hListener,
01203 Filter::View vFilter, bool fLite);
01204
01205
01206
01207
01208 virtual void removeFilterListener(
01209 MapListener::Handle hListener, Filter::View vFilter);
01210
01211
01212
01213 protected:
01214
01215
01216
01217
01218
01219
01220
01221 virtual MapListener::Handle getConverterListener(
01222 MapListener::Handle hListener);
01223
01224
01225
01226 public:
01227
01228
01229
01230
01231
01232 virtual ObservableMap::Handle getObservableMap();
01233
01234
01235
01236
01237
01238
01239 virtual ObservableMap::View getObservableMap() const;
01240 };
01241
01242
01243
01244
01245
01246
01247
01248
01249 class COH_EXPORT ConverterCacheMap
01250 : public class_spec<ConverterCacheMap,
01251 extends<ConverterObservableMap>,
01252 implements<CacheMap> >
01253 {
01254 friend class factory<ConverterCacheMap>;
01255
01256
01257
01258 protected:
01259
01260
01261
01262
01263
01264
01265
01266
01267
01268
01269 ConverterCacheMap(CacheMap::Handle hMapDelegate,
01270 EntryConverter::View vConvUp,
01271 EntryConverter::View vConvDown);
01272
01273
01274
01275
01276
01277
01278
01279
01280
01281
01282
01283 ConverterCacheMap(CacheMap::View vMapDelegate,
01284 EntryConverter::View vConvUp,
01285 EntryConverter::View vConvDown);
01286
01287
01288
01289 public:
01290
01291
01292
01293 virtual Map::View getAll(Collection::View vKeys) const;
01294
01295
01296
01297
01298 using ConverterMap::put;
01299
01300
01301
01302
01303 virtual Object::Holder put(Object::View vKey,
01304 Object::Holder ohValue, int64_t cMillis);
01305
01306
01307
01308 public:
01309
01310
01311
01312 virtual void putAll(Map::View vMap);
01313
01314
01315
01316
01317 public:
01318
01319
01320
01321
01322
01323 virtual CacheMap::View getCacheMap() const;
01324
01325
01326
01327
01328
01329
01330 virtual CacheMap::Handle getCacheMap();
01331 };
01332
01333
01334
01335
01336
01337 class COH_EXPORT ConverterConcurrentMap
01338 : public class_spec<ConverterConcurrentMap,
01339 extends<ConverterMap>,
01340 implements<ConcurrentMap> >
01341 {
01342 friend class factory<ConverterConcurrentMap>;
01343
01344
01345
01346 protected:
01347
01348
01349
01350
01351
01352
01353
01354
01355
01356
01357 ConverterConcurrentMap(ConcurrentMap::Handle hMapDelegate,
01358 EntryConverter::View vConvUp,
01359 EntryConverter::View vConvDown);
01360
01361
01362
01363
01364
01365
01366
01367
01368
01369
01370
01371 ConverterConcurrentMap(ConcurrentMap::View vMapDelegate,
01372 EntryConverter::View vConvUp,
01373 EntryConverter::View vConvDown);
01374
01375
01376
01377 public:
01378
01379
01380
01381 virtual bool lock(Object::View vKey, int64_t cWait) const;
01382
01383
01384
01385
01386 virtual bool lock(Object::View vKey) const;
01387
01388
01389
01390
01391 virtual bool unlock(Object::View vKey) const;
01392
01393
01394
01395 public:
01396
01397
01398
01399
01400
01401 virtual ConcurrentMap::View getConcurrentMap() const;
01402
01403
01404
01405
01406
01407
01408 virtual ConcurrentMap::Handle getConcurrentMap();
01409
01410 };
01411
01412
01413
01414
01415
01416 class COH_EXPORT ConverterInvocableMap
01417 : public class_spec<ConverterInvocableMap,
01418 extends<ConverterMap>,
01419 implements<InvocableMap> >
01420 {
01421 friend class factory<ConverterInvocableMap>;
01422
01423
01424
01425 protected:
01426
01427
01428
01429
01430
01431
01432
01433
01434
01435
01436 ConverterInvocableMap(InvocableMap::Handle hMapDelegate,
01437 EntryConverter::View vConvUp,
01438 EntryConverter::View vConvDown);
01439
01440
01441
01442
01443
01444
01445
01446
01447
01448
01449
01450 ConverterInvocableMap(InvocableMap::View vMapDelegate,
01451 EntryConverter::View vConvUp,
01452 EntryConverter::View vConvDown);
01453
01454
01455
01456 public:
01457
01458
01459
01460 virtual Object::Holder invoke(Object::View vKey,
01461 InvocableMap::EntryProcessor::Handle hAgent);
01462
01463
01464
01465
01466 virtual Map::View invokeAll(Collection::View vCollKeys,
01467 InvocableMap::EntryProcessor::Handle hAgent);
01468
01469
01470
01471
01472 virtual Map::View invokeAll(Filter::View vFilter,
01473 InvocableMap::EntryProcessor::Handle hAgent);
01474
01475
01476
01477
01478 virtual Object::Holder aggregate(Collection::View vCollKeys,
01479 InvocableMap::EntryAggregator::Handle hAgent) const;
01480
01481
01482
01483
01484 virtual Object::Holder aggregate(Filter::View vFilter,
01485 InvocableMap::EntryAggregator::Handle hAgent) const;
01486
01487
01488
01489 public:
01490
01491
01492
01493
01494
01495 virtual InvocableMap::View getInvocableMap() const;
01496
01497
01498
01499
01500
01501
01502 virtual InvocableMap::Handle getInvocableMap();
01503 };
01504
01505
01506
01507
01508
01509
01510
01511
01512 class COH_EXPORT ConverterQueryMap
01513 : public class_spec<ConverterQueryMap,
01514 extends<ConverterMap>,
01515 implements<QueryMap> >
01516 {
01517 friend class factory<ConverterQueryMap>;
01518
01519
01520
01521 protected:
01522
01523
01524
01525
01526
01527
01528
01529
01530
01531
01532 ConverterQueryMap(QueryMap::Handle hMapDelegate,
01533 EntryConverter::View vConvUp,
01534 EntryConverter::View vConvDown);
01535
01536
01537
01538
01539
01540
01541
01542
01543
01544
01545
01546 ConverterQueryMap(QueryMap::View vMapDelegate,
01547 EntryConverter::View vConvUp,
01548 EntryConverter::View vConvDown);
01549
01550
01551
01552 public:
01553
01554
01555
01556 virtual Set::View keySet(Filter::View vFilter) const;
01557
01558
01559
01560
01561 virtual Set::View entrySet(Filter::View vFilter) const;
01562
01563
01564
01565
01566 virtual Set::View entrySet(Filter::View vFilter,
01567 Comparator::View vComparator) const;
01568
01569
01570
01571
01572 virtual void addIndex(ValueExtractor::View vExtractor,
01573 bool fOrdered, Comparator::View vComparator);
01574
01575
01576
01577
01578 virtual void removeIndex(ValueExtractor::View vExtractor);
01579
01580
01581
01582 public:
01583
01584
01585
01586 using Map::keySet;
01587
01588
01589
01590
01591 using Map::entrySet;
01592
01593
01594
01595 public:
01596
01597
01598
01599
01600
01601 virtual QueryMap::View getQueryMap() const;
01602
01603
01604
01605
01606
01607
01608 virtual QueryMap::Handle getQueryMap();
01609 };
01610
01611
01612
01613
01614
01615
01616 class COH_EXPORT ConverterNamedCache
01617 : public class_spec<ConverterNamedCache,
01618 extends<ConverterCacheMap>,
01619 implements<NamedCache> >
01620 {
01621 friend class factory<ConverterNamedCache>;
01622
01623
01624
01625 protected:
01626
01627
01628
01629
01630
01631
01632
01633
01634
01635
01636 ConverterNamedCache(NamedCache::Handle hMapDelegate,
01637 EntryConverter::View vConvUp,
01638 EntryConverter::View vConvDown);
01639
01640
01641
01642
01643
01644
01645
01646
01647
01648
01649
01650 ConverterNamedCache(NamedCache::View vMapDelegate,
01651 EntryConverter::View vConvUp,
01652 EntryConverter::View vConvDown);
01653
01654
01655
01656 public:
01657
01658
01659
01660
01661
01662 virtual String::View getCacheName() const;
01663
01664
01665
01666
01667
01668
01669 virtual CacheService::Handle getCacheService();
01670
01671
01672
01673
01674
01675
01676 virtual CacheService::View getCacheService() const;
01677
01678
01679
01680
01681
01682
01683 virtual bool isActive() const;
01684
01685
01686
01687
01688
01689
01690
01691
01692
01693
01694
01695
01696
01697
01698 virtual void release();
01699
01700
01701
01702
01703
01704
01705
01706
01707
01708
01709
01710
01711 virtual void destroy();
01712
01713
01714
01715 public:
01716
01717
01718
01719 virtual bool lock(Object::View vKey, int64_t cWait) const;
01720
01721
01722
01723
01724 virtual bool lock(Object::View vKey) const;
01725
01726
01727
01728
01729 virtual bool unlock(Object::View vKey) const;
01730
01731
01732
01733 public:
01734
01735
01736
01737 virtual Object::Holder invoke(Object::View vKey,
01738 InvocableMap::EntryProcessor::Handle hAgent);
01739
01740
01741
01742
01743 virtual Map::View invokeAll(Collection::View vCollKeys,
01744 InvocableMap::EntryProcessor::Handle hAgent);
01745
01746
01747
01748
01749 virtual Map::View invokeAll(Filter::View vFilter,
01750 InvocableMap::EntryProcessor::Handle hAgent);
01751
01752
01753
01754
01755 virtual Object::Holder aggregate(Collection::View vCollKeys,
01756 InvocableMap::EntryAggregator::Handle hAgent) const;
01757
01758
01759
01760
01761 virtual Object::Holder aggregate(Filter::View vFilter,
01762 InvocableMap::EntryAggregator::Handle hAgent) const;
01763
01764
01765
01766 public:
01767
01768
01769
01770 virtual Set::View keySet(Filter::View vFilter) const;
01771
01772
01773
01774
01775 virtual Set::View entrySet(Filter::View vFilter) const;
01776
01777
01778
01779
01780 virtual Set::View entrySet(Filter::View vFilter,
01781 Comparator::View vComparator) const;
01782
01783
01784
01785
01786 virtual void addIndex(ValueExtractor::View vExtractor,
01787 bool fOrdered, Comparator::View vComparator);
01788
01789
01790
01791
01792 virtual void removeIndex(ValueExtractor::View vExtractor);
01793
01794
01795
01796 public:
01797
01798
01799
01800 using Map::keySet;
01801
01802
01803
01804
01805 using Map::entrySet;
01806
01807
01808
01809 public:
01810
01811
01812
01813
01814
01815 virtual NamedCache::View getNamedCache() const;
01816
01817
01818
01819
01820
01821
01822 virtual NamedCache::Handle getNamedCache();
01823
01824
01825
01826
01827
01828
01829 virtual ConcurrentMap::View getConcurrentMap() const;
01830
01831
01832
01833
01834
01835
01836 virtual ConcurrentMap::Handle getConcurrentMap();
01837
01838
01839
01840
01841
01842
01843 virtual InvocableMap::View getInvocableMap() const;
01844
01845
01846
01847
01848
01849
01850 virtual InvocableMap::Handle getInvocableMap();
01851
01852
01853
01854
01855
01856
01857 virtual QueryMap::View getQueryMap() const;
01858
01859
01860
01861
01862
01863
01864 virtual QueryMap::Handle getQueryMap();
01865
01866
01867
01868 protected:
01869
01870
01871
01872 FinalHolder<ConverterConcurrentMap> f_ohMapConcurrent;
01873
01874
01875
01876
01877 FinalHolder<ConverterInvocableMap> f_ohMapInvocable;
01878
01879
01880
01881
01882 FinalHolder<ConverterQueryMap> f_ohMapQuery;
01883 };
01884
01885
01886
01887
01888
01889
01890
01891 class COH_EXPORT UnsupportedConverter
01892 : public class_spec<UnsupportedConverter,
01893 extends<Object>,
01894 implements<Converter> >
01895 {
01896 friend class factory<UnsupportedConverter>;
01897
01898
01899
01900 public:
01901
01902
01903
01904
01905
01906 UnsupportedConverter();
01907
01908
01909
01910 public:
01911
01912
01913
01914
01915
01916 virtual Object::Holder convert(Object::Holder oh) const;
01917
01918
01919
01920
01921 static UnsupportedConverter::View getInstance();
01922 };
01923 };
01924
01925 COH_CLOSE_NAMESPACE2
01926
01927 #endif // COH_CONVERTER_COLLECTIONS_HPP