Newer
Older
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
#ifndef MANTID_KERNEL_DISKBUFFERTEST_H_
#define MANTID_KERNEL_DISKBUFFERTEST_H_
#include "MantidKernel/DiskBuffer.h"
#include "MantidKernel/FreeBlock.h"
#include "MantidKernel/ISaveable.h"
#include "MantidKernel/CPUTimer.h"
#include "MantidKernel/MultiThreaded.h"
#include "MantidKernel/System.h"
#include "MantidKernel/Timer.h"
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/mem_fun.hpp>
#include <boost/multi_index/sequenced_index.hpp>
#include <cxxtest/TestSuite.h>
#include <iomanip>
#include <iostream>
using namespace Mantid;
using namespace Mantid::Kernel;
using Mantid::Kernel::CPUTimer;
//====================================================================================
class ISaveableTester : public ISaveable
{
public:
ISaveableTester(size_t id) : ISaveable(id),
m_doSave(true), m_memory(1), m_dataBusy(false)
{}
bool m_doSave;
virtual void save() const
{
if (!m_doSave) return;
// Fake writing to a file
std::ostringstream out;
out << getId() <<",";
streamMutex.lock();
fakeFile += out.str();
streamMutex.unlock();
}
virtual void load() {}
virtual void flushData() const {}
uint64_t m_memory;
virtual uint64_t getMRUMemorySize() const { return m_memory; };
bool m_dataBusy;
virtual bool dataBusy() const {return m_dataBusy; }
// File position = same as its ID
virtual uint64_t getFilePosition() const { return uint64_t(10-getId()); }
static std::string fakeFile;
static Kernel::Mutex streamMutex;
};
// Declare the static members here.
std::string ISaveableTester::fakeFile = "";
Kernel::Mutex ISaveableTester::streamMutex;
//====================================================================================
/** An ISaveable that will fake seeking to disk */
class ISaveableTesterWithSeek : public ISaveableTester
{
public:
ISaveableTesterWithSeek(size_t id) : ISaveableTester(id)
{
myFilePos = id;
}
using ISaveableTester::load; // Unhide base class method to avoid Intel compiler warning
virtual void load(DiskBuffer & /*mru*/) const
{
std::cout << "Block " << getId() << " loading at " << myFilePos << std::endl;
ISaveableTesterWithSeek::fakeSeekAndWrite( this->getFilePosition() );
}
virtual void save() const
{
if (!m_doSave) return;
// Pretend to seek to the point and write
std::cout << "Block " << getId() << " saving at " << myFilePos << std::endl;
fakeSeekAndWrite(getFilePosition());
}
void grow(DiskBuffer & mru, bool /*tellMRU*/)
{
// OK first you seek to where the OLD data was and load it.
std::cout << "Block " << getId() << " loading at " << myFilePos << std::endl;
ISaveableTesterWithSeek::fakeSeekAndWrite( this->getFilePosition() );
// Simulate that the data is growing and so needs to be written out
size_t newfilePos = mru.relocate(myFilePos, m_memory, m_memory+1);
std::cout << "Block " << getId() << " has moved from " << myFilePos << " to " << newfilePos << std::endl;
myFilePos = newfilePos;
// Grow the size by 1
m_memory = m_memory + 1;
}
/// Fake a seek followed by a write
static void fakeSeekAndWrite(uint64_t newPos)
{
streamMutex.lock();
int64_t seek = int64_t(filePos) - int64_t(newPos);
if (seek < 0) seek = -seek;
double seekTime = 5e-3 * double(seek) / 2000.0; // 5 msec for a 2000-unit seek.
// A short write time (500 microsec) for a small block of data
seekTime += 0.5e-3;
Timer tim;
while (tim.elapsed_no_reset() < seekTime)
{ /*Wait*/ }
filePos = newPos;
streamMutex.unlock();
}
// File position = same as its ID
uint64_t myFilePos;
virtual uint64_t getFilePosition() const { return myFilePos; }
static uint64_t filePos;
};
uint64_t ISaveableTesterWithSeek::filePos;
//====================================================================================
/** An ISaveable that fakes writing to a fixed-size file */
class ISaveableTesterWithFile : public ISaveable
{
public:
ISaveableTesterWithFile(size_t id, uint64_t pos, uint64_t size, char ch) : ISaveable(id),
m_ch(ch), m_memory(size), m_pos(pos), m_dataBusy(false)
{}
char m_ch;
virtual void save() const
{
// Fake writing to a file
streamMutex.lock();
if (fakeFile.size() < m_pos+m_memory)
fakeFile.resize(m_pos+m_memory, ' ');
for (size_t i=m_pos; i< m_pos+m_memory; i++)
fakeFile[i] = m_ch;
streamMutex.unlock();
}
virtual void load() {}
virtual void flushData() const {}
uint64_t m_memory;
virtual uint64_t getMRUMemorySize() const {return m_memory;};
uint64_t m_pos;
virtual uint64_t getFilePosition() const { return m_pos; }
bool m_dataBusy;
virtual bool dataBusy() const {return m_dataBusy; }
static std::string fakeFile;
static Kernel::Mutex streamMutex;
};
// Declare the static members here.
std::string ISaveableTesterWithFile::fakeFile;
Kernel::Mutex ISaveableTesterWithFile::streamMutex;
//====================================================================================
class DiskBufferTest : public CxxTest::TestSuite
{
public:
std::vector<ISaveableTester*> data;
size_t num;
std::vector<ISaveableTester*> bigData;
size_t bigNum;
void setUp()
{
// Create the ISaveables
ISaveableTester::fakeFile = "";
num = 10;
data.clear();
for (size_t i=0; i<num; i++)
data.push_back( new ISaveableTester(i) );
bigNum = 1000;
bigData.clear();
for (size_t i=0; i<bigNum; i++)
bigData.push_back( new ISaveableTester(i) );
}
//--------------------------------------------------------------------------------
/** Getting and setting the cache sizes */
void test_set_and_get_methods()
{
DiskBuffer mru(3);
TS_ASSERT_EQUALS( mru.getWriteBufferSize(), 3);
mru.setWriteBufferSize(11);
TS_ASSERT_EQUALS( mru.getWriteBufferSize(), 11);
}
//--------------------------------------------------------------------------------
/** Test calling toWrite() */
void test_basic()
{
// No MRU, 3 in the to-write cache
DiskBuffer mru(3);
TS_ASSERT_EQUALS( mru.getWriteBufferSize(), 3);
// Nothing in cache
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 0);
mru.toWrite(data[0]);
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 1);
mru.toWrite(data[1]);
mru.toWrite(data[2]);
// Write buffer now got flushed out
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 0);
// The "file" was written out this way (the right order):
TS_ASSERT_EQUALS(ISaveableTester::fakeFile, "2,1,0,");
ISaveableTester::fakeFile ="";
// If you add the same one multiple times, it only is tracked once in the to-write buffer.
mru.toWrite(data[4]);
mru.toWrite(data[4]);
mru.toWrite(data[4]);
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 1);
}
//--------------------------------------------------------------------------------
/** Set a buffer size of 0 */
void test_basic_noWriteBuffer()
{
// No write buffer
DiskBuffer mru(0);
TS_ASSERT_EQUALS( mru.getWriteBufferSize(), 0);
// Nothing in cache
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 0);
mru.toWrite(data[0]);
mru.toWrite(data[1]);
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 0);
mru.toWrite(data[2]);
mru.toWrite(data[3]);
mru.toWrite(data[4]);
// Things are written out
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 0);
TS_ASSERT_EQUALS(ISaveableTester::fakeFile, "0,1,2,3,4,");
}
//--------------------------------------------------------------------------------
/// Empty out the cache with the flushCache() method
void test_flushCache()
{
DiskBuffer mru(10);
for (size_t i=0; i<6; i++)
mru.toWrite(data[i]);
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 6);
// Nothing written out yet
TS_ASSERT_EQUALS(ISaveableTester::fakeFile, "");
mru.flushCache();
// Everything was written out at once (sorted by file index)
TS_ASSERT_EQUALS(ISaveableTester::fakeFile, "5,4,3,2,1,0,");
// Nothing left in cache
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 0);
}
//--------------------------------------------------------------------------------
/** Extreme case with nothing writable but exceeding the writable buffer */
void test_noWriteBuffer_nothingWritable()
{
// Room for 4 in the write buffer
DiskBuffer mru(4);
for (size_t i=0; i<9; i++)
{
data[i]->m_dataBusy = true;
mru.toWrite(data[i]);
}
// We ended up with too much in the buffer since nothing could be written.
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 9);
// Let's make it all writable
for (size_t i=0; i<9; i++)
data[i]->m_dataBusy = false;
// Trigger a write
mru.toWrite(data[9]);
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 0);
// And all of these get written out at once
TS_ASSERT_EQUALS(ISaveableTester::fakeFile, "9,8,7,6,5,4,3,2,1,0,");
}
//--------------------------------------------------------------------------------
/** Sorts by file position when writing to a file */
void test_writesOutInFileOrder()
{
// Room for 3 in the to-write cache
DiskBuffer mru(3);
// These 3 will get written out
mru.toWrite(data[5]);
mru.toWrite(data[1]);
mru.toWrite(data[9]);
// These 4 at the end will be in the cache
mru.toWrite(data[2]);
mru.toWrite(data[3]);
mru.toWrite(data[4]);
mru.toWrite(data[6]);
// 1 left in the buffer
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 1);
// The "file" was written out this way (sorted by file position):
TS_ASSERT_EQUALS(ISaveableTester::fakeFile, "9,5,1,4,3,2,");
}
//--------------------------------------------------------------------------------
/** Any ISaveable that says it can't be written remains in the cache */
void test_skips_dataBusy_Blocks()
{
DiskBuffer mru(3);
mru.toWrite(data[0]);
mru.toWrite(data[1]); data[1]->m_dataBusy = true; // Won't get written out
mru.toWrite(data[2]);
mru.flushCache();
// Item #1 was skipped and is still in the buffer!
TS_ASSERT_EQUALS(ISaveableTester::fakeFile, "2,0,");
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 1);
// But it'll get written out next time
ISaveableTester::fakeFile = "";
data[1]->m_dataBusy = false;
mru.flushCache();
TS_ASSERT_EQUALS(ISaveableTester::fakeFile, "1,");
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 0);
}
//--------------------------------------------------------------------------------
/** If a block will get deleted it needs to be taken
* out of the caches */
void test_objectDeleted()
{
// Room for 6 in the to-write cache
DiskBuffer mru(6);
// Fill the buffer
for (size_t i=0; i<5; i++)
mru.toWrite(data[i]);
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 5);
// First let's get rid of something in to to-write buffer
mru.objectDeleted(data[1], 1);
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 4);
TSM_ASSERT_EQUALS( "Space on disk was marked as free", mru.getFreeSpaceMap().size(), 1);
mru.flushCache();
// This triggers a write. 1 is no longer in the to-write buffer
TS_ASSERT_EQUALS(ISaveableTester::fakeFile, "4,3,2,0,");
TS_ASSERT_EQUALS( mru.getWriteBufferUsed(), 0);
}
//--------------------------------------------------------------------------------
/** Accessing the map from multiple threads simultaneously does not segfault */
void test_thread_safety()
{
// Room for 3 in the to-write cache
DiskBuffer mru(3);
PARALLEL_FOR_NO_WSP_CHECK()
for (int i=0; i<int(bigNum); i++)
{
mru.toWrite(bigData[i]);
}
//std::cout << ISaveableTester::fakeFile << std::endl;
}
//--------------------------------------------------------------------------------
/** Freeing blocks get merged properly */
void test_freeBlock_mergesWithPrevious()
{
DiskBuffer mru(3);
DiskBuffer::freeSpace_t & map = mru.getFreeSpaceMap();
FreeBlock b;
TS_ASSERT_EQUALS( map.size(), 0);
mru.freeBlock(0, 50);
TS_ASSERT_EQUALS( map.size(), 1);
// zero-sized free block does nothing
mru.freeBlock(1234, 0);
TS_ASSERT_EQUALS( map.size(), 1);
mru.freeBlock(100, 50);
TS_ASSERT_EQUALS( map.size(), 2);
// Free a block next to another one, AFTER
mru.freeBlock(150, 50);
TSM_ASSERT_EQUALS( "Map remained the same size because adjacent blocks were merged", map.size(), 2);
// Get a vector of the free blocks and sizes
std::vector<uint64_t> free;
mru.getFreeSpaceVector(free);
TS_ASSERT_EQUALS( free[0], 0);
TS_ASSERT_EQUALS( free[1], 50);
TS_ASSERT_EQUALS( free[2], 100);
TS_ASSERT_EQUALS( free[3], 100);
}
//--------------------------------------------------------------------------------
/** Freeing blocks get merged properly */
void test_freeBlock_mergesWithNext()
{
DiskBuffer mru(3);
DiskBuffer::freeSpace_t & map = mru.getFreeSpaceMap();
FreeBlock b;
mru.freeBlock(0, 50);
mru.freeBlock(200, 50);
TS_ASSERT_EQUALS( map.size(), 2);
// Free a block next to another one, BEFORE
mru.freeBlock(150, 50);
TSM_ASSERT_EQUALS( "Map remained the same size because adjacent blocks were merged", map.size(), 2);
// Get the 2nd free block.
DiskBuffer::freeSpace_t::iterator it =map.begin();
it++;
b = *it;
TS_ASSERT_EQUALS( b.getFilePosition(), 150);
TS_ASSERT_EQUALS( b.getSize(), 100);
mru.freeBlock(50, 50);
TSM_ASSERT_EQUALS( "Map remained the same size because adjacent blocks were merged", map.size(), 2);
TS_ASSERT_EQUALS( map.begin()->getSize(), 100);
}
//--------------------------------------------------------------------------------
/** Freeing blocks get merged properly */
void test_freeBlock_mergesWithBothNeighbours()
{
DiskBuffer mru(3);
DiskBuffer::freeSpace_t & map = mru.getFreeSpaceMap();
FreeBlock b;
mru.freeBlock(0, 50);
mru.freeBlock(200, 50);
mru.freeBlock(300, 50);
mru.freeBlock(400, 50); // Disconnected 4th one
TS_ASSERT_EQUALS( map.size(), 4);
// Free a block between two block
mru.freeBlock(250, 50);
TSM_ASSERT_EQUALS( "Map shrank because three blocks were merged", map.size(), 3);
// Get the 2nd free block.
DiskBuffer::freeSpace_t::iterator it =map.begin();
it++;
b = *it;
TS_ASSERT_EQUALS( b.getFilePosition(), 200);
TS_ASSERT_EQUALS( b.getSize(), 150);
}
//--------------------------------------------------------------------------------
/** Add blocks to the free block list in parallel threads,
* should not segfault or anything */
void test_freeBlock_threadSafety()
{
DiskBuffer mru(0);
PRAGMA_OMP( parallel for)
for (int i=0; i<10000; i++)
{
mru.freeBlock(uint64_t(i)*100, (i%3==0) ? 100 : 50);
}
// 1/3 of the blocks got merged
TS_ASSERT_EQUALS( mru.getFreeSpaceMap().size(), 6667);
}
/** Disabled because it is not necessary to defrag since that happens on the fly */
void xtest_defragFreeBlocks()
{
DiskBuffer mru(3);
DiskBuffer::freeSpace_t & map = mru.getFreeSpaceMap();
FreeBlock b;
mru.freeBlock(0, 50);
mru.freeBlock(100, 50);
mru.freeBlock(150, 50);
mru.freeBlock(500, 50);
mru.freeBlock(550, 50);
mru.freeBlock(600, 50);
mru.freeBlock(650, 50);
mru.freeBlock(1000, 50);
TS_ASSERT_EQUALS( map.size(), 8);
mru.defragFreeBlocks();
TS_ASSERT_EQUALS( map.size(), 4);
}
/// You can call relocate() if an block is shrinking.
void test_relocate_when_shrinking()
{
DiskBuffer mru(3);
DiskBuffer::freeSpace_t & map = mru.getFreeSpaceMap();
// You stay in the same place because that's the only free spot.
TS_ASSERT_EQUALS( mru.relocate(100, 10, 5), 100 );
// You left a free block at 105.
TS_ASSERT_EQUALS( map.size(), 1);
// This one, instead of staying in place, will fill in that previously freed 5-sized block
// since that's the smallest one that fits the whole block.
TS_ASSERT_EQUALS( mru.relocate(200, 10, 5), 105 );
// Still one free block, but its at 200-209 now.
TS_ASSERT_EQUALS( map.size(), 1);
}
/// You can call relocate() if an block is shrinking.
void test_relocate_when_growing()
{
DiskBuffer mru(3);
DiskBuffer::freeSpace_t & map = mru.getFreeSpaceMap();
mru.freeBlock(200, 20);
mru.freeBlock(300, 30);
TS_ASSERT_EQUALS( map.size(), 2);
// Grab the smallest block that's big enough
TS_ASSERT_EQUALS( mru.relocate(100, 10, 20), 200 );
// You left a free block at 100 of size 10 to replace that one.
TS_ASSERT_EQUALS( map.size(), 2);
// A zero-sized block is "relocated" by basically allocating it to the free spot
TS_ASSERT_EQUALS( mru.relocate(100, 0, 5), 100 );
TS_ASSERT_EQUALS( map.size(), 2);
}
/// Various tests of allocating and relocating
void test_allocate_from_empty_freeMap()
{
DiskBuffer mru(3);
mru.setFileLength(1000); // Lets say the file goes up to 1000
DiskBuffer::freeSpace_t & map = mru.getFreeSpaceMap();
FreeBlock b;
TS_ASSERT_EQUALS( map.size(), 0);
// No free blocks? End up at the end
TS_ASSERT_EQUALS( mru.allocate(20), 1000 );
TS_ASSERT_EQUALS( mru.getFileLength(), 1020 );
for (size_t i=0; i<100000; i++)
mru.allocate(20);
DiskBuffer mru2;
mru2.setFileLength(1000);
for (size_t i=0; i<100000; i++)
mru2.allocate(20);
}
/// Various tests of allocating and relocating
void test_allocate_and_relocate()
{
DiskBuffer mru(3);
mru.setFileLength(1000); // Lets say the file goes up to 1000
DiskBuffer::freeSpace_t & map = mru.getFreeSpaceMap();
FreeBlock b;
mru.freeBlock(100, 10);
mru.freeBlock(200, 20);
mru.freeBlock(300, 30);
mru.freeBlock(400, 40);
TS_ASSERT_EQUALS( map.size(), 4);
// Where does the block end up?
TS_ASSERT_EQUALS( mru.allocate(20), 200 );
// The map has shrunk by one since the new one was removed.
TS_ASSERT_EQUALS( map.size(), 3);
// OK, now look for a smaller block, size of 4
TS_ASSERT_EQUALS( mru.allocate(4), 100 );
// This left a little chunk of space free, sized 6 at position 104. So the # of entries in the free space map did not change
TS_ASSERT_EQUALS( map.size(), 3);
TS_ASSERT_EQUALS( map.begin()->getFilePosition(), 104);
TS_ASSERT_EQUALS( map.begin()->getSize(), 6);
// Now try to relocate. Had a block after a 30-sized free block at 300.
// It gets freed, opening up a slot for the new chunk of memory
TS_ASSERT_EQUALS( mru.relocate(330, 5, 35), 300 );
// One fewer free block.
TS_ASSERT_EQUALS( map.size(), 2);
// Ok, now lets ask for a block that is too big. It puts us at the end of the file
TS_ASSERT_EQUALS( mru.allocate(55), 1000 );
TS_ASSERT_EQUALS( mru.getFileLength(), 1055 );
}
void test_allocate_with_file()
{
// Start by faking a file
ISaveableTesterWithFile * blockA = new ISaveableTesterWithFile(0, 0, 2, 'A');
ISaveableTesterWithFile * blockB = new ISaveableTesterWithFile(1, 2, 3, 'B');
ISaveableTesterWithFile * blockC = new ISaveableTesterWithFile(2, 5, 5, 'C');
blockA->save();
blockB->save();
blockC->save();
TS_ASSERT_EQUALS( ISaveableTesterWithFile::fakeFile, "AABBBCCCCC");
DiskBuffer mru(3);
mru.setFileLength(10);
DiskBuffer::freeSpace_t & map = mru.getFreeSpaceMap();
uint64_t newPos;
// File lengths are known correctly
TS_ASSERT_EQUALS( mru.getFileLength(), 10);
// Asking for a new chunk of space that needs to be at the end
newPos = mru.relocate(blockB->m_pos, blockB->m_memory, 7);
TSM_ASSERT_EQUALS( "One freed block", map.size(), 1);
TS_ASSERT_EQUALS( mru.getFileLength(), 17);
// Simulate saving
blockB->m_pos = newPos;
blockB->m_memory = 7;
blockB->save();
TS_ASSERT_EQUALS( ISaveableTesterWithFile::fakeFile, "AABBBCCCCCBBBBBBB");
// Now let's allocate a new block
newPos = mru.allocate(2);
TS_ASSERT_EQUALS( newPos, 2 );
ISaveableTesterWithFile * blockD = new ISaveableTesterWithFile(3, newPos, 2, 'D');
blockD->save();
TS_ASSERT_EQUALS( ISaveableTesterWithFile::fakeFile, "AADDBCCCCCBBBBBBB");
TSM_ASSERT_EQUALS( "Still one freed block", map.size(), 1);
// Grow blockD by 1
newPos = mru.relocate(2, 2, 3);
TSM_ASSERT_EQUALS( "Block D stayed in the same place since there was room after it", newPos, 2 );
blockD->m_memory = 3;
blockD->save();
TS_ASSERT_EQUALS( ISaveableTesterWithFile::fakeFile, "AADDDCCCCCBBBBBBB");
// Allocate a little block at the end
newPos = mru.allocate(1);
TSM_ASSERT_EQUALS( "The new block went to the end of the file", newPos, 17 );
// Which is now longer by 1
TS_ASSERT_EQUALS( mru.getFileLength(), 18);
//std::cout << ISaveableTesterWithFile::fakeFile << "!" << std::endl;
}
};
//====================================================================================
class DiskBufferTestPerformance : public CxxTest::TestSuite
{
public:
std::vector<ISaveableTester*> data;
std::vector<ISaveableTesterWithSeek*> dataSeek;
size_t num;
// This pair of boilerplate methods prevent the suite being created statically
// This means the constructor isn't called when running other tests
static DiskBufferTestPerformance *createSuite() { return new DiskBufferTestPerformance(); }
static void destroySuite( DiskBufferTestPerformance *suite ) { delete suite; }
DiskBufferTestPerformance()
{
num = 100000;
data.clear();
for (size_t i=0; i<num; i++)
{
data.push_back( new ISaveableTester(i) );
data[i]->m_doSave = false; // Items won't do any real saving
}
dataSeek.clear();
for (size_t i=0; i<200; i++)
dataSeek.push_back( new ISaveableTesterWithSeek(i) );
}
void setUp()
{
ISaveableTester::fakeFile = "";
}
void test_smallCache_writeBuffer()
{
CPUTimer tim;
DiskBuffer mru(3);
for (int i=0; i<int(num); i++)
mru.toWrite(data[i]);
std::cout << tim << " to load " << num << " into MRU." << std::endl;
}
void test_smallCache_no_writeBuffer()
{
CPUTimer tim;
DiskBuffer mru(0);
for (int i=0; i<int(num); i++)
mru.toWrite(data[i]);
std::cout << tim << " to load " << num << " into MRU (no write cache)." << std::endl;
}
void test_largeCache_writeBuffer()
{
CPUTimer tim;
DiskBuffer mru(1000);
for (int i=0; i<int(num); i++)
mru.toWrite(data[i]);
std::cout << tim << " to load " << num << " into MRU." << std::endl;
}
void test_largeCache_noWriteBuffer()
{
CPUTimer tim;
DiskBuffer mru(0);
for (int i=0; i<int(num); i++)
mru.toWrite(data[i]);
std::cout << tim << " to load " << num << " into MRU (no write buffer)." << std::endl;
}
/** Demonstrate that using a write buffer reduces time spent seeking on disk */
void test_withFakeSeeking_withWriteBuffer()
{
CPUTimer tim;
DiskBuffer mru(10);
for (int i=0; i<int(dataSeek.size()); i++)
{
// Pretend you just loaded the data
dataSeek[i]->load(mru);
}
std::cout << tim << " to load " << dataSeek.size() << " into MRU with fake seeking. " << std::endl;
}
/** Use a 0-sized write buffer so that it constantly needs to seek and write out. This should be slower due to seeking. */
void test_withFakeSeeking_noWriteBuffer()
{
CPUTimer tim;
DiskBuffer mru(0);
for (int i=0; i<int(dataSeek.size()); i++)
{
// Pretend you just loaded the data
dataSeek[i]->load(mru);
}
std::cout << tim << " to load " << dataSeek.size() << " into MRU with fake seeking. " << std::endl;
}
/** Example of a situation where vectors grew, meaning that they need to be
* relocated causing lots of seeking if no write buffer exists.*/
void test_withFakeSeeking_growingData()
{
CPUTimer tim;
DiskBuffer mru(20);
mru.setFileLength(dataSeek.size());
for (int i=0; i<int(dataSeek.size()); i++)
{
// Pretend you just loaded the data
dataSeek[i]->grow(mru, true);
}
std::cout << "About to flush the cache to finish writes." << std::endl;
mru.flushCache();
std::cout << tim << " to grow " << dataSeek.size() << " into MRU with fake seeking. " << std::endl;
}
/** Demonstrate that calling "save" manually without using the MRU write buffer will slow things down
* due to seeking. Was an issue in LoadMD */
void test_withFakeSeeking_growingData_savingWithoutUsingMRU()
{
CPUTimer tim;
DiskBuffer mru(dataSeek.size());
for (int i=0; i<int(dataSeek.size()); i++)
{
// Pretend you just loaded the data
dataSeek[i]->grow(mru, false);
dataSeek[i]->save();
}
std::cout << tim << " to grow " << dataSeek.size() << " into MRU with fake seeking. " << std::endl;
}
/** Speed of freeing a lot of blocks and putting them in the free space map */
void test_freeBlock()
{
CPUTimer tim;
DiskBuffer mru(0);
for (size_t i=0; i<100000; i++)
{
mru.freeBlock(i*100, (i%3==0) ? 100 : 50);
}
//mru.defragFreeBlocks();
TS_ASSERT_EQUALS( mru.getFreeSpaceMap().size(), 66667);
std::cout << tim << " to add " << 100000 << " blocks in the free space list." << std::endl;
}
};
#endif /* MANTID_KERNEL_DISKBUFFERTEST_H_ */