00001
00002
00003
00004
00005
00006
00007 #ifndef COH_WRITING_POF_HANDLER_HPP
00008 #define COH_WRITING_POF_HANDLER_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/io/WriteBuffer.hpp"
00013 #include "coherence/io/pof/PofHandler.hpp"
00014 #include "coherence/io/pof/PofHelper.hpp"
00015 #include "coherence/util/Binary.hpp"
00016
00017 COH_OPEN_NAMESPACE3(coherence,io,pof)
00018
00019 using coherence::io::WriteBuffer;
00020 using coherence::util::Binary;
00021
00022
00023
00024
00025
00026
00027
00028
00029 class COH_EXPORT WritingPofHandler
00030 : public class_spec<WritingPofHandler,
00031 extends<PofHelper>,
00032 implements<PofHandler> >
00033 {
00034 friend class factory<WritingPofHandler>;
00035
00036
00037
00038 protected:
00039
00040
00041
00042
00043
00044
00045
00046
00047 WritingPofHandler(WriteBuffer::BufferOutput::Handle hOut);
00048
00049 private:
00050
00051
00052
00053 WritingPofHandler(const WritingPofHandler&);
00054
00055
00056
00057
00058 public:
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082 virtual void beginUserType(int32_t iPos, int nId, int32_t nUserTypeId,
00083 int32_t nVersionId);
00084
00085
00086
00087
00088 public:
00089
00090
00091
00092 virtual void registerIdentity(int32_t nId);
00093
00094
00095
00096
00097 virtual void onNullReference(int32_t iPos);
00098
00099
00100
00101
00102 virtual void onIdentityReference(int32_t iPos, int32_t nId);
00103
00104
00105
00106
00107 virtual void onInt16(int32_t iPos, int16_t n);
00108
00109
00110
00111
00112 virtual void onInt32(int32_t iPos, int32_t n);
00113
00114
00115
00116
00117 virtual void onInt64(int32_t iPos, int64_t n);
00118
00119
00120
00121
00122 virtual void onFloat32(int32_t iPos, float32_t fl);
00123
00124
00125
00126
00127 virtual void onFloat64(int32_t iPos, float64_t dfl);
00128
00129
00130
00131
00132 virtual void onBoolean(int32_t iPos, bool f);
00133
00134
00135
00136
00137 virtual void onOctet(int32_t iPos, octet_t b);
00138
00139
00140
00141
00142 virtual void onOctetString(int32_t iPos, Binary::View vBin);
00143
00144
00145
00146
00147 virtual void onChar(int32_t iPos, wchar16_t ch);
00148
00149
00150
00151
00152 virtual void onCharString(int32_t iPos, String::View vs);
00153
00154
00155
00156
00157 virtual void onDate(int32_t iPos, int32_t nYear, int32_t nMonth,
00158 int32_t nDay);
00159
00160
00161
00162
00163 virtual void onYearMonthInterval(int32_t iPos, int32_t cYears,
00164 int32_t cMonths);
00165
00166
00167
00168
00169 virtual void onTime(int32_t iPos, int32_t nHour, int32_t nMinute,
00170 int32_t nSecond, int32_t nNano, bool fUTC);
00171
00172
00173
00174
00175 virtual void onTime(int32_t iPos, int32_t nHour, int32_t nMinute,
00176 int32_t nSecond, int32_t nNano, int32_t nHourOffset,
00177 int32_t nMinuteOffset);
00178
00179
00180
00181
00182 virtual void onTimeInterval(int32_t iPos, int32_t cHours,
00183 int32_t cMinutes, int32_t cSeconds, int32_t cNanos);
00184
00185
00186
00187
00188 virtual void onDateTime(int32_t iPos, int32_t nYear, int32_t nMonth,
00189 int32_t nDay, int32_t nHour, int32_t nMinute, int32_t nSecond,
00190 int32_t nNano, bool fUTC);
00191
00192
00193
00194
00195 virtual void onDateTime(int32_t iPos, int32_t nYear, int32_t nMonth,
00196 int32_t nDay, int32_t nHour, int32_t nMinute, int32_t nSecond,
00197 int32_t nNano, int32_t nHourOffset, int32_t nMinuteOffset);
00198
00199
00200
00201
00202 virtual void onDayTimeInterval(int32_t iPos, int32_t cDays,
00203 int32_t cHours, int32_t cMinutes, int32_t cSeconds,
00204 int32_t cNanos);
00205
00206
00207
00208
00209 virtual void beginCollection(int32_t iPos, size32_t cElements);
00210
00211
00212
00213
00214 virtual void beginUniformCollection(int32_t iPos, size32_t cElements,
00215 int32_t nType);
00216
00217
00218
00219
00220 virtual void beginArray(int32_t iPos, size32_t cElements);
00221
00222
00223
00224
00225 virtual void beginUniformArray(int32_t iPos, size32_t cElements,
00226 int32_t nType);
00227
00228
00229
00230
00231 virtual void beginSparseArray(int32_t iPos, size32_t cElements);
00232
00233
00234
00235
00236 virtual void beginUniformSparseArray(int32_t iPos, size32_t cElements,
00237 int32_t nType);
00238
00239
00240
00241
00242 virtual void beginMap(int32_t iPos, size32_t cElements);
00243
00244
00245
00246
00247 virtual void beginUniformKeysMap(int32_t iPos, size32_t cElements,
00248 int32_t nTypeKeys);
00249
00250
00251
00252
00253 virtual void beginUniformMap(int32_t iPos, size32_t cElements,
00254 int32_t nTypeKeys, int32_t nTypeValues);
00255
00256
00257
00258
00259 virtual void beginUserType(int32_t iPos, int32_t nUserTypeId,
00260 int32_t nVersionId);
00261
00262
00263
00264
00265 virtual void endComplexValue();
00266
00267
00268
00269
00270 protected:
00271
00272
00273
00274
00275
00276
00277
00278
00279 virtual bool isSkippable() const;
00280
00281
00282
00283
00284
00285
00286
00287
00288 virtual bool isCompressable() const;
00289
00290
00291
00292
00293
00294
00295
00296 virtual void encodePosition(int32_t iPos);
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307 virtual bool isTypeIdEncoded(int32_t nTypeId) const;
00308
00309
00310
00311
00312 public:
00313
00314
00315
00316
00317 class COH_EXPORT Complex
00318 : public class_spec<Complex>
00319 {
00320 friend class factory<Complex>;
00321
00322
00323
00324 protected:
00325
00326
00327
00328
00329
00330
00331
00332
00333 Complex(Complex::Handle hComplexCurrent,
00334 bool fEncodePosition);
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346 Complex(Complex::Handle hComplexCurrent,
00347 bool fEncodePosition, int32_t nUniformTypeId);
00348
00349 private:
00350
00351
00352
00353 Complex(const Complex&);
00354
00355
00356
00357 public:
00358
00359
00360
00361
00362
00363 virtual void onValue(int32_t iPos);
00364
00365
00366
00367 public:
00368
00369
00370
00371
00372
00373
00374
00375 virtual bool isUniform() const;
00376
00377
00378
00379
00380
00381
00382
00383 virtual int32_t getUniformType() const;
00384
00385
00386
00387
00388
00389
00390
00391
00392 virtual bool isSparse() const;
00393
00394
00395
00396
00397
00398
00399
00400 virtual Complex::Handle pop();
00401
00402
00403
00404
00405
00406
00407
00408 virtual Complex::View pop() const;
00409
00410
00411
00412
00413 protected:
00414
00415
00416
00417
00418 const bool m_fSparse;
00419
00420
00421
00422
00423
00424
00425 const bool m_fUniform;
00426
00427
00428
00429
00430 const int32_t m_nTypeId;
00431
00432
00433
00434
00435
00436 FinalHandle<Complex> f_hComplexOuter;
00437 };
00438
00439
00440
00441
00442 public:
00443
00444
00445
00446
00447 class COH_EXPORT ComplexMap
00448 : public class_spec<ComplexMap,
00449 extends<Complex> >
00450 {
00451 friend class factory<ComplexMap>;
00452
00453
00454
00455 protected:
00456
00457
00458
00459
00460
00461
00462
00463
00464
00465 ComplexMap(Complex::Handle hComplexCurrent,
00466 int32_t nUniformKeyTypeId);
00467
00468
00469
00470
00471
00472
00473
00474
00475
00476
00477
00478
00479
00480 ComplexMap(Complex::Handle hComplexCurrent,
00481 int32_t nUniformKeyTypeId, int32_t nUniformValTypeId);
00482
00483 private:
00484
00485
00486
00487 ComplexMap(const ComplexMap&);
00488
00489
00490
00491 public:
00492
00493
00494
00495 virtual void onValue(int32_t iPos);
00496
00497
00498
00499 public:
00500
00501
00502
00503
00504
00505
00506
00507 virtual bool isUniform() const;
00508
00509
00510
00511
00512
00513
00514
00515 virtual int32_t getUniformType() const;
00516
00517
00518
00519 protected:
00520
00521
00522
00523
00524 bool m_fKey;
00525
00526
00527
00528
00529 const bool m_fUniformValue;
00530
00531
00532
00533
00534 const int32_t m_nValueTypeId;
00535 };
00536
00537
00538
00539
00540 public:
00541
00542
00543
00544
00545
00546
00547 virtual WriteBuffer::BufferOutput::Handle getBufferOutput();
00548
00549
00550
00551
00552
00553
00554
00555 virtual WriteBuffer::BufferOutput::View getBufferOutput() const;
00556
00557
00558
00559
00560
00561
00562
00563 virtual Complex::Handle getComplex();
00564
00565
00566
00567
00568
00569
00570
00571 virtual Complex::View getComplex() const;
00572
00573
00574
00575
00576
00577
00578 virtual size64_t getComplexId() const;
00579
00580 protected:
00581
00582
00583
00584
00585
00586 virtual void setComplex(Complex::Handle hComplex);
00587
00588
00589
00590
00591 protected:
00592
00593
00594
00595 FinalHandle<WriteBuffer::BufferOutput> f_hOut;
00596
00597
00598
00599
00600 MemberHandle<Complex> m_hComplex;
00601
00602
00603
00604
00605 size64_t m_nComplexId;
00606
00607
00608
00609
00610
00611 bool m_fHasIdentity;
00612 };
00613
00614 COH_CLOSE_NAMESPACE3
00615
00616 #endif // COH_WRITING_POF_HANDLER_HPP