[go: up one dir, main page]

Menu

[5a71d8]: / mng / mng.h  Maximize  Restore  History

Download this file

973 lines (844 with data), 22.9 kB

  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
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
#ifndef MNG_HEADER
#define MNG_HEADER
/***************************************************************************
* mng.h
*
* Sat Aug 24 23:55:27 2002
* Copyright 2002 Roman Dementiev
* dementiev@mpi-sb.mpg.de
****************************************************************************/
#include "../io/io.h"
#include "../common/rand.h"
#include "../common/aligned_alloc.h"
#include <iostream>
#include <fstream>
#include <vector>
#include <map>
#include <algorithm>
#include <string>
#include <stdlib.h>
__STXXL_BEGIN_NAMESPACE
//! \defgroup mnglayer Block management layer
//! Group of classes which help controlling external memory space,
//! managing disks, and allocating and deallocating blocks of external storage
//! \{
//! \brief Block identifier class
//! Stores block identity, given by file and offset within the file
template < unsigned SIZE >
struct BID
{
enum
{
size = SIZE //!< Block size
};
file * storage; //!< pointer to the file of the block
off_t offset; //!< offset within the file of the block
BID():storage(NULL),offset(0) {}
bool valid() const { return storage; }
};
//! \brief Specialization of block identifier class (BID) for variable size block size
//! Stores block identity, given by file, offset within the file, and size of the block
template <>
struct BID<0>
{
file * storage; //!< pointer to the file of the block
off_t offset; //!< offset within the file of the block
unsigned size; //!< size of the block in bytes
BID():storage(NULL),offset(0),size(0) {}
BID(file * f, off_t o, unsigned s) : storage(f), offset(o), size(s) {}
bool valid() const { return storage; }
};
template <unsigned bytes>
class filler_struct__
{
typedef unsigned char byte_type;
byte_type filler_array_[bytes];
};
template <>
class filler_struct__<0>
{
typedef unsigned char byte_type;
};
template < unsigned SIZE, class T, unsigned REF_NUM, bool NEEDS_FILLER>
class typed_block_base
{
};
template < unsigned SIZE, class T, unsigned REF_NUM>
class typed_block_base<SIZE,T,REF_NUM,false>
{
public:
BID<SIZE> ref[REF_NUM];
BID<SIZE> & operator ()(int i)
{
return ref[i];
};
};
template < unsigned SIZE, class T >
class typed_block_base < SIZE, T, 0,false >
{
};
// one has to add filler in order to make sizeof(typed_block) == SIZE
template < unsigned SIZE, class T, unsigned REF_NUM>
class typed_block_base<SIZE,T,REF_NUM,true>
{
filler_struct__<SIZE-((SIZE-sizeof(BID<SIZE>)*REF_NUM)/sizeof(T))*sizeof(T)> __filler;
public:
BID < SIZE > ref[REF_NUM];
BID < SIZE > & operator ()(int i)
{
return ref[i];
};
};
// one has to add filler in order to make sizeof(typed_block) == SIZE
template < unsigned SIZE, class T >
class typed_block_base < SIZE, T, 0,true >
{
filler_struct__<SIZE - (SIZE / sizeof (T))*sizeof (T)> __filler;
};
//! \brief Block containing elements of fixed length
template < unsigned SIZE, class T, unsigned REF_NUM = 0>
class typed_block: public typed_block_base<SIZE,T,REF_NUM,SIZE % sizeof(T)>
{
public:
typedef T type;
typedef T value_type;
typedef T & reference;
typedef const T & const_reference;
typedef type * pointer;
typedef pointer iterator;
typedef const pointer const_iterator;
enum { has_filler = SIZE % sizeof(T) };
typedef BID<SIZE> bid_type;
//! Array of elements of type T
T elem[(SIZE - sizeof(BID < SIZE >) * REF_NUM) / sizeof (T)];
typed_block() {};
//! An operator to access elements in the block
reference operator [](int i)
{
return elem[i];
};
enum
{
raw_size = SIZE, //!< size of block in bytes
size = (SIZE - sizeof (BID < SIZE >) * REF_NUM) / sizeof (T) //!< number of elements in block
};
//! \brief Returns \c iterator pointing to the first element
iterator begin()
{
return elem;
};
//! \brief Returns \c const_iterator pointing to the first element
const_iterator begin() const
{
return elem;
};
//! \brief Returns \c iterator pointing to the end element
iterator end()
{
return elem + size;
};
//! \brief Returns \c const_iterator pointing to the end element
const_iterator end() const
{
return elem + size;
};
//! \brief Writes block to the disk(s)
//! \param bid block identifier, points the file(disk) and position
//! \param on_cmpl completion handler
//! \return \c pointer_ptr object to track status I/O operation after the call
request_ptr write (const BID<SIZE> & bid,
completion_handler on_cmpl = default_completion_handler())
{
return bid.storage->awrite(
this,
bid.offset,
SIZE,
on_cmpl);
};
//! \brief Reads block from the disk(s)
//! \param bid block identifier, points the file(disk) and position
//! \param on_cmpl completion handler
//! \return \c pointer_ptr object to track status I/O operation after the call
request_ptr read (const BID < SIZE > &bid,
completion_handler on_cmpl = default_completion_handler())
{
return bid.storage->aread(this, bid.offset, SIZE, on_cmpl);
};
void *operator new[] (size_t bytes)
{
return aligned_alloc < BLOCK_ALIGN > (bytes);
}
void *operator new (size_t bytes)
{
return aligned_alloc < BLOCK_ALIGN > (bytes);
}
void operator delete (void *ptr)
{
aligned_dealloc < BLOCK_ALIGN > (ptr);
}
void operator delete[] (void *ptr)
{
aligned_dealloc < BLOCK_ALIGN > (ptr);
}
};
/*
template <unsigned BLK_SIZE>
class BIDArray: public std::vector< BID <BLK_SIZE> >
{
public:
BIDArray(std::vector< BID <BLK_SIZE> >::size_type size = 0) : std::vector< BID <BLK_SIZE> >(size) {};
};
*/
template<unsigned BLK_SIZE>
class BIDArray
{
protected:
unsigned _size;
BID < BLK_SIZE > *array;
public:
typedef BID<BLK_SIZE> & reference;
typedef BID<BLK_SIZE> * iterator;
typedef const BID<BLK_SIZE> * const_iterator;
BIDArray ():_size (0), array (NULL)
{
};
iterator begin ()
{
return array;
};
iterator end ()
{
return array + _size;
};
BIDArray (unsigned size):_size (size)
{
array = new BID < BLK_SIZE >[size];
};
unsigned size ()
{
return _size;
};
reference operator [](int i)
{
return array[i];
};
void resize (unsigned newsize)
{
if (array)
{
stxxl_debug (std::cerr <<
"Warning: resizing nonempty BIDArray"
<< std::endl;)
BID < BLK_SIZE > *tmp = array;
array = new BID < BLK_SIZE >[newsize];
memcpy (array, tmp, sizeof (BID <BLK_SIZE >) * STXXL_MIN (_size, newsize));
delete [] tmp;
_size = newsize;
}
else
{
array = new BID < BLK_SIZE >[newsize];
_size = newsize;
}
};
~BIDArray ()
{
if (array)
delete[]array;
};
};
class DiskAllocator
{
typedef std::pair < off_t, off_t > place;
struct FirstFit:public std::binary_function < place, off_t,bool >
{
bool operator () (
const place & entry,
const off_t size) const
{
return (entry.second >= size);
}
};
struct OffCmp
{
bool operator () (const off_t & off1,const off_t & off2)
{
return off1 < off2;
};
};
DiskAllocator ()
{
};
protected:
typedef std::map < off_t, off_t > sortseq;
sortseq free_space;
// sortseq used_space;
off_t free_bytes;
off_t disk_bytes;
public:
DiskAllocator (off_t disk_size);
off_t get_free_bytes () const
{
return free_bytes;
};
off_t get_used_bytes () const
{
return disk_bytes - free_bytes;
};
template < unsigned BLK_SIZE >
void new_blocks (BIDArray < BLK_SIZE > &bids);
template < unsigned BLK_SIZE >
void delete_blocks (const BIDArray < BLK_SIZE > &bids);
template < unsigned BLK_SIZE >
void delete_block (const BID <BLK_SIZE > & bid);
};
DiskAllocator::DiskAllocator (off_t disk_size):
free_bytes(disk_size),
disk_bytes(disk_size)
{
free_space[0] = disk_size;
}
template < unsigned BLK_SIZE >
void DiskAllocator::new_blocks (BIDArray < BLK_SIZE > & bids)
{
STXXL_VERBOSE2("DiskAllocator::new_blocks<BLK_SIZE>, BLK_SIZE = " << BLK_SIZE
<< ", free:" << free_bytes << " total:"<< disk_bytes)
off_t requested_size = off_t(bids.size()) * off_t(BLK_SIZE);
sortseq::iterator space =
std::find_if (free_space.begin (), free_space.end (),
bind2nd(FirstFit (), requested_size));
if (space != free_space.end ())
{
off_t region_pos = (*space).first;
off_t region_size = (*space).second;
free_space.erase (space);
if (region_size > requested_size)
free_space[region_pos + requested_size] = region_size - requested_size;
for (unsigned i = 0; i < bids.size (); i++)
{
bids[i].offset =
region_pos +
off_t (i) * off_t (BLK_SIZE);
}
free_bytes -= requested_size;
}
else
{
STXXL_ERRMSG( "Allocation error: " << requested_size <<
" bytes requested, " << free_bytes <<
" bytes free" )
abort();
}
};
template < unsigned BLK_SIZE >
void DiskAllocator::delete_block (const BID < BLK_SIZE > &bid)
{
STXXL_VERBOSE2("DiskAllocator::delete_block<BLK_SIZE>, BLK_SIZE = " << BLK_SIZE
<< ", free:" << free_bytes << " total:"<< disk_bytes)
off_t region_pos = bid.offset;
off_t region_size = BLK_SIZE;
sortseq::iterator succ = free_space.upper_bound (region_pos);
sortseq::iterator pred = succ;
pred--;
if (succ != free_space.end ()
&& (*succ).first == region_pos + region_size)
{
// coalesce with successor
region_size += (*succ).second;
free_space.erase (succ);
}
if (pred != free_space.end ()
&& (*pred).first + (*pred).second == region_pos)
{
// coalesce with predecessor
region_size += (*pred).second;
region_pos = (*pred).first;
free_space.erase (pred);
}
free_space[region_pos] = region_size;
free_bytes += off_t (BLK_SIZE);
}
template < unsigned BLK_SIZE >
void DiskAllocator::delete_blocks (const BIDArray < BLK_SIZE > &bids)
{
STXXL_VERBOSE2("DiskAllocator::delete_blocks<BLK_SIZE> BLK_SIZE="<< BLK_SIZE <<
", free:" << free_bytes << " total:"<< disk_bytes )
for (int i = 0; i < bids.size (); i++)
{
off_t region_pos = bids[i].offset;
off_t region_size = BLK_SIZE;
sortseq::iterator succ =
free_space.upper_bound (region_pos);
sortseq::iterator pred = succ;
pred--;
if (succ != free_space.end ()
&& (*succ).first == region_pos + region_size)
{
// coalesce with successor
region_size += (*succ).second;
free_space.erase (succ);
}
if (pred != free_space.end ()
&& (*pred).first + (*pred).second == region_pos)
{
// coalesce with predecessor
region_size += (*pred).second;
region_pos = (*pred).first;
free_space.erase (pred);
}
free_space[region_pos] = region_size;
};
free_bytes += off_t (bids.size ()) * off_t (BLK_SIZE);
}
//! \brief Access point to disks properties
//! \remarks is a singleton
class config
{
struct DiskEntry
{
std::string path;
std::string io_impl;
off_t size;
};
std::vector < DiskEntry > disks_props;
config (const char *config_path = "./.stxxl");
public:
//! \brief Returns number of disks available to user
//! \return number of disks
unsigned disks_number()
{
return disks_props.size ();
};
unsigned ndisks()
{
return disks_props.size ();
};
//! \brief Returns path of disks
//! \param disk disk's identifier
//! \return string that contains the disk's path name
const std::string & disk_path (int disk)
{
return disks_props[disk].path;
};
//! \brief Returns disk size
//! \param disk disk's identifier
//! \return disk size in bytes
off_t disk_size (int disk)
{
return disks_props[disk].size;
};
//! \brief Returns name of I/O implementation of particular disk
//! \param disk disk's identifier
const std::string & disk_io_impl (int disk)
{
return disks_props[disk].io_impl;
};
//! \brief Returns instance of config
//! \return pointer to the instance of config
static config *get_instance ();
private:
static config *instance;
};
config *config::get_instance ()
{
if (!instance)
{
char *cfg_path = getenv ("STXXLCFG");
if (cfg_path)
instance = new config (cfg_path);
else
instance = new config ();
}
return instance;
}
config::config (const char *config_path)
{
std::ifstream cfg_file (config_path);
if (!cfg_file)
{
STXXL_ERRMSG("Warning: no config file found." )
STXXL_ERRMSG("Using default disk configuration." )
DiskEntry entry1 = { "/var/tmp/stxxl", "syscall",
100 * 1024 * 1024
};
DiskEntry entry2 =
{ "/tmp/stxxl1", "mmap", 100 * 1024 * 1024 };
DiskEntry entry3 = { "/tmp/stxxl2", "simdisk",
100 * 1024 * 1024
};
disks_props.push_back (entry1);
//disks_props.push_back (entry2);
//disks_props.push_back (entry3);
}
else
{
std::string line;
while (cfg_file >> line)
{
std::vector < std::string > tmp = split (line, "=");
if(tmp[0][0] == '#')
{
}
else
if (tmp[0] == "disk")
{
tmp = split (tmp[1], ",");
DiskEntry entry = { tmp[0], tmp[2],
off_t (str2int (tmp[1])) *
off_t (1024 * 1024)
};
disks_props.push_back (entry);
}
else
{
std::cerr << "Unknown token " <<
tmp[0] << std::endl;
}
}
cfg_file.close ();
}
if (disks_props.empty ())
{
STXXL_ERRMSG( "No disks found in '" << config_path << "' ." )
abort ();
}
else
{
for (std::vector < DiskEntry >::const_iterator it =
disks_props.begin (); it != disks_props.end ();
it++)
{
STXXL_MSG("Disk '" << (*it).path << "' is allocated, space: " <<
((*it).size) / (1024 * 1024) <<
" Mb, I/O implementation: " << (*it).io_impl )
}
}
};
class FileCreator
{
public:
virtual stxxl::file * create (const std::string & io_impl,
const std::string & filename,
int options, int disk)
{
if (io_impl == "syscall")
return new stxxl::syscall_file (filename,
options,
disk);
else if (io_impl == "mmap")
return new stxxl::mmap_file (filename,
options, disk);
else if (io_impl == "simdisk")
return new stxxl::sim_disk_file (filename,
options,
disk);
STXXL_ERRMSG("Unsupported disk I/O implementation " <<
io_impl << " ." )
abort ();
return NULL;
};
};
//! \weakgroup alloc Allocation functors
//! Standard allocation strategies incapsulated in functors
//! \{
//! \brief striping disk allocation scheme functor
//! \remarks model of \b allocation_strategy concept
struct striping
{
int begin, diff;
striping (int b, int e):begin (b), diff (e - b)
{
};
striping ():begin (0)
{
diff = config::get_instance ()->disks_number ();
};
int operator () (int i) const
{
return begin + i % diff;
};
static const char * name()
{
return "striping";
}
};
//! \brief fully randomized disk allocation scheme functor
//! \remarks model of \b allocation_strategy concept
struct FR:public striping
{
random_number<random_uniform_fast> rnd;
FR (int b, int e):striping (b, e)
{
};
FR ():striping ()
{
};
int operator () (int i) const
{
return begin + rnd(diff);
}
static const char * name()
{
return "fully randomized striping";
}
};
//! \brief simple randomized disk allocation scheme functor
//! \remarks model of \b allocation_strategy concept
struct SR:public striping
{
random_number<random_uniform_fast> rnd;
int offset;
SR (int b, int e):striping (b, e)
{
offset = rnd(diff);
};
SR():striping ()
{
offset = rnd(diff);
};
int operator () (int i) const
{
return begin + (i + offset) % diff;
}
static const char * name()
{
return "simple randomized striping";
}
};
//! \brief randomized cycling disk allocation scheme functor
//! \remarks model of \b allocation_strategy concept
struct RC:public striping
{
std::vector<int> perm;
RC (int b, int e):striping (b, e), perm (diff)
{
for (int i = 0; i < diff; i++)
perm[i] = i;
stxxl::random_number<random_uniform_fast> rnd;
std::random_shuffle (perm.begin (), perm.end (), rnd);
}
RC ():striping (), perm (diff)
{
for (int i = 0; i < diff; i++)
perm[i] = i;
random_number<random_uniform_fast> rnd;
std::random_shuffle (perm.begin (), perm.end (), rnd);
}
int operator () (int i) const
{
return begin + perm[i % diff];
}
static const char * name()
{
return "randomized cycling striping";
}
};
//! \brief 'single disk' disk allocation scheme functor
//! \remarks model of \b allocation_strategy concept
struct single_disk
{
const int disk;
single_disk(int d):disk(d)
{
};
single_disk():disk(0)
{
};
int operator() (int i) const
{
return disk;
};
static const char * name()
{
return "single disk";
}
};
//! \brief Allocator functor adaptor
//! Gives offset to disk number sequence defined in constructor
template <class BaseAllocator_>
struct offset_allocator
{
BaseAllocator_ base;
int offset;
//! \brief Creates functor based on \c BaseAllocator_ functor created
//! with default cunstructor with offset \c offset_
//! \param offset_ offset
offset_allocator(int offset_) : base(),offset(offset_) {}
//! \brief Creates functor based on instance of \c BaseAllocator_ functor
//! with offset \c ofset_
//! \param offset_ offset
//! \param base_ used to create a copy
offset_allocator(int offset_,BaseAllocator_ & base_) : base(base_),offset(offset_) {}
int operator() (int i)
{
return base(offset + i);
}
};
//! \}
//! \brief Traits for models of \b bid_iterator concept
template < class bid_it > struct bid_iterator_traits
{
bid_it *a;
enum
{
block_size = bid_it::block_size
};
};
template < unsigned blk_sz > struct bid_iterator_traits <BID <blk_sz > *>
{
enum
{
block_size = blk_sz
};
};
/*
template < unsigned _blk_sz > struct bid_iterator_traits<
std::__normal_iterator< BID<_blk_sz> * ,std::vector< BID<_blk_sz> ,std::allocator<BID<_blk_sz> > > > >
{
enum
{
block_size = _blk_sz
};
};
*/
template < unsigned _blk_sz > struct bid_iterator_traits<
__gnu_cxx::__normal_iterator< BID<_blk_sz> * ,std::vector< BID<_blk_sz> ,std::allocator<BID<_blk_sz> > > > >
{
enum
{
block_size = _blk_sz
};
};
//! \brief Block manager class
//! Manages allocation and deallocation of blocks in multiple/single disk setting
//! \remarks is a singleton
class block_manager
{
DiskAllocator **disk_allocators;
file ** disk_files;
unsigned ndisks;
block_manager ();
public:
//! \brief Returns instance of block_manager
//! \return pointer to the only instance of block_manager
static block_manager *get_instance ();
//! \brief Allocates new blocks
//! Allocates new blocks according to the strategy
//! given by \b functor and stores block identifiers
//! to the range [ \b bidbegin, \b bidend)
//! \param functor object of model of \b allocation_strategy concept
//! \param bidbegin iterator object of \b bid_iterator concept
//! \param bidend iterator object of \b bid_iterator concept
template < class DiskAssgnFunctor, class BIDIteratorClass >
void new_blocks (
DiskAssgnFunctor functor,
const BIDIteratorClass & bidbegin,
const BIDIteratorClass & bidend);
//! \brief Deallocates blocks
//! Deallocates blocks in the range [ \b bidbegin, \b bidend)
//! \param bidbegin iterator object of \b bid_iterator concept
//! \param bidend iterator object of \b bid_iterator concept
template < class BIDIteratorClass >
void delete_blocks (const BIDIteratorClass & bidbegin, const BIDIteratorClass & bidend);
//! \brief Deallocates a block
//! \param bid block identifier
template < unsigned BLK_SIZE >
void delete_block (const BID < BLK_SIZE > &bid);
~block_manager ();
private:
static block_manager *instance;
};
block_manager *block_manager::get_instance ()
{
if (!instance)
instance = new block_manager ();
return instance;
}
block_manager::block_manager ()
{
FileCreator fc;
config *cfg = config::get_instance ();
ndisks = cfg->disks_number ();
disk_allocators = new DiskAllocator *[ndisks];
disk_files = new stxxl::file *[ndisks];
for (unsigned i = 0; i < ndisks; i++)
{
disk_files[i] = fc.create (cfg->disk_io_impl (i),
cfg->disk_path (i),
stxxl::file::CREAT | stxxl::file::RDWR | stxxl::file::DIRECT
,i);
disk_files[i]->set_size (cfg->disk_size (i));
disk_allocators[i] = new DiskAllocator (cfg->disk_size (i));
}
};
block_manager::~block_manager()
{
for (unsigned i = 0; i < ndisks; i++)
{
delete disk_allocators[i];
delete disk_files[i];
}
delete[]disk_allocators;
delete[]disk_files;
}
template < class DiskAssgnFunctor, class BIDIteratorClass >
void block_manager::new_blocks (
DiskAssgnFunctor functor,
const BIDIteratorClass & bidbegin,
const BIDIteratorClass & bidend)
{
unsigned nblocks = bidend - bidbegin;
int *bl = new int[ndisks];
BIDArray < bid_iterator_traits <BIDIteratorClass >::block_size > *disk_bids =
new BIDArray < bid_iterator_traits <BIDIteratorClass >::block_size >[ndisks];
memset(bl, 0, ndisks * sizeof (int));
unsigned i = 0;
BIDIteratorClass it = bidbegin;
for (; i < nblocks; i++, it++)
{
int disk = functor (i);
(*it).storage = disk_files[disk];
bl[disk]++;
}
for (i = 0; i < ndisks; i++)
{
if (bl[i])
{
disk_bids[i].resize (bl[i]);
disk_allocators[i]->new_blocks (disk_bids[i]);
}
}
memset (bl, 0, ndisks * sizeof (int));
i = 0;
for (it = bidbegin; it != bidend; it++, i++)
{
int disk = (*it).storage->get_disk_number ();
// std::cout << disk_bids[disk][bl[disk]].offset << " "<<std::endl;
(*it).offset = disk_bids[disk][bl[disk]++].offset;
// std::cout << (*it).offset << " "<<std::endl;
}
delete[]bl;
delete[]disk_bids;
}
template < unsigned BLK_SIZE >
void block_manager::delete_block (const BID < BLK_SIZE > &bid)
{
disk_allocators[bid.storage->get_disk_number ()]->delete_block (bid);
}
template < class BIDIteratorClass >
void block_manager::delete_blocks (
const BIDIteratorClass & bidbegin,
const BIDIteratorClass & bidend)
{
for (BIDIteratorClass it = bidbegin; it != bidend; it++)
{
delete_block (*it);
}
}
block_manager *block_manager::instance = NULL;
config *config::instance = NULL;
#define STXXL_DEFAULT_ALLOC_STRATEGY RC
#define STXXL_DEFAULT_BLOCK_SIZE(type) (2*1024*1024) // use traits
//! \}
__STXXL_END_NAMESPACE
#endif