1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
|
// **********************************************************************
//
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <Ice/Ice.h>
#include <Freeze/Freeze.h>
#include <BenchTypes.h>
#include <cstdlib>
using namespace std;
using namespace Demo;
void
testFailed(const char* expr, const char* file, unsigned int line)
{
std::cout << "failed!" << std::endl;
std::cout << file << ':' << line << ": assertion `" << expr << "' failed" << std::endl;
abort();
}
#define test(ex) ((ex) ? ((void)0) : testFailed(#ex, __FILE__, __LINE__))
class StopWatch
{
public:
StopWatch()
{
}
void
start()
{
_stopped = false;
_start = IceUtil::Time::now();
}
IceUtil::Time
stop()
{
if(!_stopped)
{
_stopped = true;
_stop = IceUtil::Time::now();
}
return _stop - _start;
}
private:
bool _stopped;
IceUtil::Time _start;
IceUtil::Time _stop;
};
class Generator : public IceUtil::Shared
{
public:
virtual ~Generator() { }
virtual int next() = 0;
virtual string toString() = 0;
};
typedef IceUtil::Handle<Generator> GeneratorPtr;
class RandomGenerator : public Generator
{
public:
RandomGenerator(int seed, int max) :
_max(max)
{
srand(seed);
}
virtual int
next()
{
return rand() % _max;
}
virtual string
toString()
{
ostringstream os;
os << "random(" << _max << ")";
return os.str();
}
private:
const int _max;
};
class SequentialGenerator : public Generator
{
public:
SequentialGenerator(int min, int max) :
_min(min),
_max(max),
_current(0)
{
}
virtual int
next()
{
int n = _current;
++_current;
if(_current > _max)
{
_current = _min;
}
return n;
}
virtual string
toString()
{
ostringstream os;
os << ((_max - _min)+1);
return os.str();
}
private:
const int _min;
const int _max;
int _current;
};
class TestApp : public Ice::Application
{
public:
TestApp(const string&);
virtual int run(int, char*[]);
virtual void interruptCallback(int);
private:
//
// We need to define the template function here because of a VC6 bug :-(.
//
void IntIntMapIndexTest(IntIntMap&)
{}
void IntIntMapIndexTest(IndexedIntIntMap&);
template<class T> void IntIntMapTest(const string& mapName, T* = 0)
{
T m(_connection, mapName);
//
// Populate the database.
//
int i;
_watch.start();
{
Freeze::TransactionHolder txHolder(_connection);
for(i = 0; i < _repetitions; ++i)
{
#if defined(__BCPLUSPLUS__) || (defined(_MSC_VER) && (_MSC_VER < 1310))
m.put(T::value_type(i, i));
#else
m.put(typename T::value_type(i, i));
#endif
}
txHolder.commit();
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " writes: " << total * 1000 << "ms" << endl;
cout << "\ttime per write: " << perRecord * 1000 << "ms" << endl;
//
// Read each record.
//
_watch.start();
for(i = 0; i < _repetitions; ++i)
{
typename T::iterator p = m.find(i);
test(p != m.end());
test(p->second == i);
}
total = _watch.stop();
perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " reads: " << total * 1000 << "ms" << endl;
cout << "\ttime per read: " << perRecord * 1000 << "ms" << endl;
//
// Optional index sub-test
//
IntIntMapIndexTest(m);
//
// Remove each record.
//
_watch.start();
{
Freeze::TransactionHolder txHolder(_connection);
for(i = 0; i < _repetitions; ++i)
{
m.erase(i);
}
txHolder.commit();
}
total = _watch.stop();
perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " removes: " << total * 1000 << "ms" << endl;
cout << "\ttime per remove: " << perRecord * 1000 << "ms" << endl;
}
void generatedReadWithIndex(IntIntMap&, int, const GeneratorPtr&)
{}
void generatedReadWithIndex(IndexedIntIntMap&, int, const GeneratorPtr&);
template<class T> void generatedRead(T& m, int reads , const GeneratorPtr& gen)
{
_watch.start();
for(int i = 0; i < reads; ++i)
{
int key = gen->next();
typename T::iterator p = m.find(key);
test(p != m.end());
test(p->second == key);
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / reads;
cout << "\ttime for " << reads << " reads of " << gen->toString() << " records: " << total * 1000 << "ms"
<< endl;
cout << "\ttime per read: " << perRecord * 1000 << "ms" << endl;
generatedReadWithIndex(m, reads, gen);
}
void Struct1Struct2MapIndexTest(Struct1Struct2Map&)
{}
void Struct1Struct2MapIndexTest(IndexedStruct1Struct2Map&);
template<class T> void Struct1Struct2MapTest(const string& mapName, T* = 0)
{
T m(_connection, mapName);
//
// Populate the database.
//
Struct1 s1;
Struct2 s2;
int i;
_watch.start();
{
Freeze::TransactionHolder txHolder(_connection);
for(i = 0; i < _repetitions; ++i)
{
s1.l = i;
ostringstream os;
os << i;
s2.s = os.str();
s2.s1 = s1;
#if defined(__BCPLUSPLUS__) || (defined(_MSC_VER) && (_MSC_VER < 1310))
m.put(T::value_type(s1, s2));
#else
m.put(typename T::value_type(s1, s2));
#endif
}
txHolder.commit();
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " writes: " << total * 1000 << "ms" << endl;
cout << "\ttime per write: " << perRecord * 1000 << "ms" << endl;
//
// Read each record.
//
_watch.start();
for(i = 0; i < _repetitions; ++i)
{
s1.l = i;
typename T::iterator p = m.find(s1);
test(p != m.end());
ostringstream os;
os << i;
test(p->second.s == os.str());
}
total = _watch.stop();
perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " reads: " << total * 1000 << "ms" << endl;
cout << "\ttime per read: " << perRecord * 1000 << "ms" << endl;
//
// Optional index test
//
Struct1Struct2MapIndexTest(m);
//
// Remove each record.
//
_watch.start();
{
Freeze::TransactionHolder txHolder(_connection);
for(i = 0; i < _repetitions; ++i)
{
s1.l = i;
m.erase(s1);
}
txHolder.commit();
}
total = _watch.stop();
perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " removes: " << total * 1000 << "ms" << endl;
cout << "\ttime per remove: " << perRecord * 1000 << "ms" << endl;
}
void Struct1Class1MapIndexTest(Struct1Class1Map&)
{}
void Struct1Class1MapIndexTest(IndexedStruct1Class1Map&);
template<class T> void Struct1Class1MapTest(const string& mapName, T* = 0)
{
T m(_connection, mapName);
//
// Populate the database.
//
Struct1 s1;
Class1Ptr c1 = new Class1();
int i;
_watch.start();
{
Freeze::TransactionHolder txHolder(_connection);
for(i = 0; i < _repetitions; ++i)
{
s1.l = i;
ostringstream os;
os << i;
c1->s = os.str();
#if defined(__BCPLUSPLUS__) || (defined(_MSC_VER) && (_MSC_VER < 1310))
m.put(T::value_type(s1, c1));
#else
m.put(typename T::value_type(s1, c1));
#endif
}
txHolder.commit();
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " writes: " << total * 1000 << "ms" << endl;
cout << "\ttime per write: " << perRecord * 1000 << "ms" << endl;
//
// Read each record.
//
_watch.start();
for(i = 0; i < _repetitions; ++i)
{
s1.l = i;
typename T::iterator p = m.find(s1);
test(p != m.end());
ostringstream os;
os << i;
test(p->second->s == os.str());
}
total = _watch.stop();
perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " reads: " << total * 1000 << "ms" << endl;
cout << "\ttime per read: " << perRecord * 1000 << "ms" << endl;
//
// Optional index test
//
Struct1Class1MapIndexTest(m);
//
// Remove each record.
//
_watch.start();
{
Freeze::TransactionHolder txHolder(_connection);
for(i = 0; i < _repetitions; ++i)
{
s1.l = i;
m.erase(s1);
}
txHolder.commit();
}
total = _watch.stop();
perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " removes: " << total * 1000 << "ms" << endl;
cout << "\ttime per remove: " << perRecord * 1000 << "ms" << endl;
}
void IntIntMapReadIndexTest(IntIntMap&)
{}
void IntIntMapReadIndexTest(IndexedIntIntMap&);
template<class T> void IntIntMapReadTest(const string& mapName, T* = 0)
{
T m(_connection, mapName);
//
// Populate the database.
//
int i;
_watch.start();
{
Freeze::TransactionHolder txHolder(_connection);
for(i = 0; i < _repetitions; ++i)
{
#if defined(__BCPLUSPLUS__) || (defined(_MSC_VER) && (_MSC_VER < 1310))
m.put(T::value_type(i, i));
#else
m.put(typename T::value_type(i, i));
#endif
}
txHolder.commit();
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " writes: " << total * 1000 << "ms" << endl;
cout << "\ttime per write: " << perRecord * 1000 << "ms" << endl;
//
// Do some read tests.
//
generatedRead(m, _repetitions, new SequentialGenerator(1000, 1000));
generatedRead(m, _repetitions, new SequentialGenerator(2000, 2009));
generatedRead(m, _repetitions, new SequentialGenerator(3000, 3099));
generatedRead(m, _repetitions, new SequentialGenerator(4000, 4999));
//
// Do a random read test.
//
generatedRead(m, _repetitions, new RandomGenerator(0, 10000));
//
// Remove each record.
//
/*
* For this test I don't want to remove the records because I
* want to examine the cache stats for the database.
*
_watch.start();
for(i = 0; i < _repetitions; ++i)
{
m.erase(i);
}
total = _watch.stop();
perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " removes: " << total * 1000 << "ms" << endl;
cout << "\ttime per remove: " << perRecord * 1000 << "ms" << endl;
*/
}
void Struct1ObjectMapTest();
const string _envName;
Freeze::ConnectionPtr _connection;
StopWatch _watch;
int _repetitions;
};
TestApp::TestApp(const string& envName) :
_envName(envName),
_repetitions(10000)
{
}
void
TestApp::IntIntMapIndexTest(IndexedIntIntMap& m)
{
//
// Read each record.
//
_watch.start();
for(int i = 0; i < _repetitions; ++i)
{
IndexedIntIntMap::iterator p = m.findByValue(i);
test(p != m.end());
test(p->second == i);
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " reverse (indexed) reads: " << total * 1000 << "ms"
<< endl;
cout << "\ttime per reverse read: " << perRecord * 1000 << "ms" << endl;
}
void
TestApp::generatedReadWithIndex(IndexedIntIntMap& m, int reads, const GeneratorPtr& gen)
{
_watch.start();
for(int i = 0; i < reads; ++i)
{
int value = gen->next();
IndexedIntIntMap::iterator p = m.findByValue(value);
test(p != m.end());
test(p->second == value);
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / reads;
cout << "\ttime for " << reads << " reverse (indexed) reads of " << gen->toString() << " records: "
<< total * 1000 << "ms" << endl;
cout << "\ttime per reverse read: " << perRecord * 1000 << "ms" << endl;
}
void
TestApp::Struct1Struct2MapIndexTest(IndexedStruct1Struct2Map& m)
{
int i;
_watch.start();
for(i = 0; i < _repetitions; ++i)
{
ostringstream os;
os << i;
IndexedStruct1Struct2Map::iterator p = m.findByS(os.str());
test(p != m.end());
test(p->first.l == i);
test(p->second.s1.l == i);
}
for(i = 0; i < _repetitions; ++i)
{
Struct1 s1;
s1.l = i;
IndexedStruct1Struct2Map::iterator p = m.findByS1(s1);
test(p != m.end());
test(p->first.l == i);
test(p->second.s1.l == i);
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / (2 *_repetitions);
cout << "\ttime for " << 2 *_repetitions << " indexed reads: " << total * 1000 << "ms" << endl;
cout << "\ttime per indexed read: " << perRecord * 1000 << "ms" << endl;
}
void
TestApp::Struct1Class1MapIndexTest(IndexedStruct1Class1Map& m)
{
//
// Read each record.
//
_watch.start();
for(int i = 0; i < _repetitions; ++i)
{
ostringstream os;
os << i;
IndexedStruct1Class1Map::iterator p = m.findByS(os.str());
test(p != m.end());
test(p->first.l == i);
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " indexed reads: " << total * 1000 << "ms" << endl;
cout << "\ttime per indexed read: " << perRecord * 1000 << "ms" << endl;
}
void
TestApp::Struct1ObjectMapTest()
{
Struct1ObjectMap m(_connection, "Struct1Object");
//
// Populate the database.
//
Struct1 s1;
Class1Ptr c1 = new Class1();
Class2Ptr c2 = new Class2();
c2->rec = c2;
c2->obj = c1;
int i;
_watch.start();
{
Freeze::TransactionHolder txHolder(_connection);
for(i = 0; i < _repetitions; ++i)
{
s1.l = i;
Ice::ObjectPtr o;
if((i % 2) == 0)
{
o = c2;
}
else
{
o = c1;
}
ostringstream os;
os << i;
c1->s = os.str();
m.put(Struct1ObjectMap::value_type(s1, o));
}
txHolder.commit();
}
IceUtil::Time total = _watch.stop();
IceUtil::Time perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " writes: " << total * 1000 << "ms" << endl;
cout << "\ttime per write: " << perRecord * 1000 << "ms" << endl;
//
// Read each record.
//
_watch.start();
for(i = 0; i < _repetitions; ++i)
{
s1.l = i;
Struct1ObjectMap::iterator p = m.find(s1);
test(p != m.end());
Ice::ObjectPtr o = p->second;
Class1Ptr nc1;
if((i % 2) == 0)
{
Class2Ptr nc2 = Class2Ptr::dynamicCast(o);
test(nc2);
test(nc2->rec == nc2);
nc1 = Class1Ptr::dynamicCast(nc2->obj);
}
else
{
nc1 = Class1Ptr::dynamicCast(o);
}
test(nc1);
ostringstream os;
os << i;
test(nc1->s == os.str());
}
total = _watch.stop();
perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " reads: " << total * 1000 << "ms" << endl;
cout << "\ttime per read: " << perRecord * 1000 << "ms" << endl;
//
// Remove each record.
//
_watch.start();
{
Freeze::TransactionHolder txHolder(_connection);
for(i = 0; i < _repetitions; ++i)
{
s1.l = i;
m.erase(s1);
}
txHolder.commit();
}
total = _watch.stop();
perRecord = total / _repetitions;
cout << "\ttime for " << _repetitions << " removes: " << total * 1000 << "ms" << endl;
cout << "\ttime per remove: " << perRecord * 1000 << "ms" << endl;
}
class MyFactory : public Ice::ObjectFactory
{
public:
Ice::ObjectPtr
create(const string& type)
{
if(type == "::Class1")
{
return new Class1();
}
else if(type == "::Class2")
{
return new Class2();
}
return 0;
}
void
destroy()
{
}
void
install(const Ice::CommunicatorPtr& communicator)
{
communicator->addObjectFactory(this, "::Class1");
communicator->addObjectFactory(this, "::Class2");
}
};
typedef IceUtil::Handle<MyFactory> MyFactoryPtr;
int
TestApp::run(int argc, char* argv[])
{
//
// Since this is an interactive demo we want the custom interrupt
// callback to be called when the process is interrupted.
//
callbackOnInterrupt();
_connection = Freeze::createConnection(communicator(), _envName);
cout << "IntIntMap" << endl;
#if defined(_MSC_VER) && (_MSC_VER < 1310)
{
IntIntMap* dummy = 0;
IntIntMapTest("IntIntMap", dummy);
}
#else
IntIntMapTest<IntIntMap>("IntIntMap");
#endif
cout << "IntIntMap with index" << endl;
#if defined(_MSC_VER) && (_MSC_VER < 1310)
{
IndexedIntIntMap* dummy = 0;
IntIntMapTest("IndexedIntIntMap", dummy);
}
#else
IntIntMapTest<IndexedIntIntMap>("IndexedIntIntMap");
#endif
cout <<"Struct1Struct2Map" << endl;
#if defined(_MSC_VER) && (_MSC_VER < 1310)
{
Struct1Struct2Map* dummy = 0;
Struct1Struct2MapTest("Struct1Struct2Map", dummy);
}
#else
Struct1Struct2MapTest<Struct1Struct2Map>("Struct1Struct2Map");
#endif
cout <<"Struct1Struct2Map with index" << endl;
#if defined(_MSC_VER) && (_MSC_VER < 1310)
{
IndexedStruct1Struct2Map* dummy = 0;
Struct1Struct2MapTest("IndexedStruct1Struct2Map", dummy);
}
#else
Struct1Struct2MapTest<IndexedStruct1Struct2Map>("IndexedStruct1Struct2Map");
#endif
cout <<"Struct1Class1Map" << endl;
#if defined(_MSC_VER) && (_MSC_VER < 1310)
{
Struct1Class1Map* dummy = 0;
Struct1Class1MapTest("Struct1Class1Map", dummy);
}
#else
Struct1Class1MapTest<Struct1Class1Map>("Struct1Class1Map");
#endif
cout <<"Struct1Class1Map with index" << endl;
#if defined(_MSC_VER) && (_MSC_VER < 1310)
{
IndexedStruct1Class1Map* dummy = 0;
Struct1Class1MapTest("IndexedStruct1Class1Map", dummy);
}
#else
Struct1Class1MapTest<IndexedStruct1Class1Map>("IndexedStruct1Class1Map");
#endif
MyFactoryPtr factory = new MyFactory();
factory->install(communicator());
cout <<"Struct1ObjectMap" << endl;
Struct1ObjectMapTest();
cout <<"IntIntMap (read test)" << endl;
#if defined(_MSC_VER) && (_MSC_VER < 1310)
{
IntIntMap* dummy = 0;
IntIntMapReadTest("IntIntMap", dummy);
}
#else
IntIntMapReadTest<IntIntMap>("IntIntMap");
#endif
cout <<"IntIntMap with index(read test)" << endl;
#if defined(_MSC_VER) && (_MSC_VER < 1310)
{
IndexedIntIntMap* dummy = 0;
IntIntMapReadTest("IndexedIntIntMap", dummy);
}
#else
IntIntMapReadTest<IndexedIntIntMap>("IndexedIntIntMap");
#endif
_connection->close();
return EXIT_SUCCESS;
}
void
TestApp::interruptCallback(int)
{
exit(EXIT_SUCCESS);
}
int
main(int argc, char* argv[])
{
TestApp app("db");
return app.main(argc, argv);
}
|