AMPS C/C++ Client Class Reference
AMPS C/C++ Client Version 5.3.3.0
BlockStore.hpp
Go to the documentation of this file.
1 //
3 // Copyright (c) 2010-2021 60East Technologies Inc., All Rights Reserved.
4 //
5 // This computer software is owned by 60East Technologies Inc. and is
6 // protected by U.S. copyright laws and other laws and by international
7 // treaties. This computer software is furnished by 60East Technologies
8 // Inc. pursuant to a written license agreement and may be used, copied,
9 // transmitted, and stored only in accordance with the terms of such
10 // license agreement and with the inclusion of the above copyright notice.
11 // This computer software or any other copies thereof may not be provided
12 // or otherwise made available to any other person.
13 //
14 // U.S. Government Restricted Rights. This computer software: (a) was
15 // developed at private expense and is in all respects the proprietary
16 // information of 60East Technologies Inc.; (b) was not developed with
17 // government funds; (c) is a trade secret of 60East Technologies Inc.
18 // for all purposes of the Freedom of Information Act; and (d) is a
19 // commercial item and thus, pursuant to Section 12.212 of the Federal
20 // Acquisition Regulations (FAR) and DFAR Supplement Section 227.7202,
21 // Government's use, duplication or disclosure of the computer software
22 // is subject to the restrictions set forth by 60East Technologies Inc..
23 //
25 
26 #ifndef _BLOCKSTORE_H_
27 #define _BLOCKSTORE_H_
28 #include <ampsplusplus.hpp>
29 #include <Buffer.hpp>
30 #include <sstream>
31 #include <string>
32 #include <map>
33 #include <ampscrc.hpp>
34 
35 #ifdef _WIN32
36 #include <intrin.h>
37 #include <sys/timeb.h>
38 #else
39 #include <sys/time.h>
40 #if AMPS_SSE_42
41 #include <cpuid.h>
42 #endif
43 #endif
44 #include <iostream>
45 
50 
51 namespace AMPS
52 {
59 {
60 public:
63  enum Constants : amps_uint32_t
64  {
65  DEFAULT_BLOCK_HEADER_SIZE = 32,
66  DEFAULT_BLOCKS_PER_REALLOC = 1000,
67  DEFAULT_BLOCK_SIZE = 2048
68  };
69 
72  class Block
73  {
74  public:
75  // The offset of the Block's data in the buffer.
76  size_t _offset;
77  // The sequence number assoicated with the Block.
78  amps_uint64_t _sequence;
79  // The next Block in the chain when data is in multiple Blocks.
80  Block* _nextInChain;
81  // The next Block in list of available or free Blocks.
82  Block* _nextInList;
83 
84  // Create Block with given offset
85  Block(size_t offset_) : _offset(offset_), _sequence(0)
86  , _nextInChain(0), _nextInList(0)
87  { ; }
88 
89  // Create Block with _nextInList at an address one Block farther
90  // than self. Convenient for creating arrays of Blocks.
91  Block() : _offset(0), _sequence(0)
92  , _nextInChain(0), _nextInList((Block*)(this+1))
93  { ; }
94 
95  // Init Block to an offset at index_ * blockSize_
96  Block* init(size_t index_, amps_uint32_t blockSize_)
97  {
98  _offset = index_*blockSize_;
99  return this;
100  }
101 
102  // Set Block to given offset and return pointer to self
103  Block* setOffset(size_t offset_)
104  {
105  _offset = offset_;
106  return this;
107  }
108 
109  };
110 
111 private:
112  // Typedefs
113  typedef Lock<Mutex> BufferLock;
114  typedef Unlock<Mutex> BufferUnlock;
115  typedef bool (*ResizeHandler)(size_t,void*);
116  typedef std::vector<Block*> BlockList;
117 
118 public:
134  BlockStore(Buffer* buffer_,
135  amps_uint32_t blocksPerRealloc_ = DEFAULT_BLOCKS_PER_REALLOC,
136  amps_uint32_t blockHeaderSize_ = DEFAULT_BLOCK_HEADER_SIZE,
137  amps_uint32_t blockSize_ = DEFAULT_BLOCK_SIZE)
138  : _buffer(buffer_), _freeList(0), _usedList(0)
139  , _endOfUsedList(0), _blocksPerRealloc(blocksPerRealloc_)
140  , _blockSize(blockSize_), _blockHeaderSize(blockHeaderSize_)
141  , _blocksAvailable(0), _resizeHandler(0), _resizeUserData(0)
142  , _resizing(false)
143  {
144  }
145 
149  {
150  for (BlockList::iterator i = _blockList.begin();
151  i != _blockList.end(); ++i)
152  {
153  delete[] *i;
154  }
155  delete _buffer;
156  }
157 
160  amps_uint32_t getBlockSize() const
161  {
162  return _blockSize;
163  }
164 
167  amps_uint32_t getBlockHeaderSize() const
168  {
169  return _blockHeaderSize;
170  }
171 
176  void acquireRead() const
177  {
178  _lock.acquireRead();
179  }
180 
183  void releaseRead() const
184  {
185  _lock.releaseRead();
186  }
187 
190  void signalAll()
191  {
192  _lock.signalAll();
193  }
194 
197  void wait()
198  {
199  _lock.wait();
200  }
201 
206  bool wait(long timeout_)
207  {
208  return _lock.wait(timeout_);
209  }
210 
220  void setResizeHandler(ResizeHandler resizeHandler_, void* userData_)
221  {
222  _resizeHandler = resizeHandler_;
223  _resizeUserData = userData_;
224  }
225 
229  // Lock should already be acquired
230  Block* front() const
231  {
232  return _usedList;
233  }
234 
239  // Lock should already be acquired
240  Block* back() const
241  {
242  return _endOfUsedList;
243  }
244 
248  // Lock should already be acquired
249  void setFreeList(Block* block_, amps_uint32_t freeCount_)
250  {
251  _freeList = block_;
252  _blocksAvailable = freeCount_;
253  }
254 
257  // Lock should already be acquired
258  void setUsedList(Block* block_)
259  {
260  _usedList = block_;
261  }
262 
265  // Lock should already be acquired
266  void setEndOfUsedList(Block* block_)
267  {
268  _endOfUsedList = block_;
269  }
270 
274  // Lock should already be acquired
275  void addBlocks(Block* blockArray_)
276  {
277  _blockList.push_back(blockArray_);
278  }
279 
284  // Lock should already be acquired
285  Block* get(amps_uint32_t numBlocksInChain_)
286  {
287  // Check that we have enough blocks
288  // Do this in a loop since resize can possibly return without resizing
289  // and may still leave us needing more space.
290  while (_blocksAvailable < numBlocksInChain_)
291  {
292  // Resize by required multiple of blockPerRealloc
293  unsigned int blocksNeeded = numBlocksInChain_ - _blocksAvailable;
294  amps_uint32_t addedBlocks = (blocksNeeded/_blocksPerRealloc + 1)
295  * _blocksPerRealloc;
296  size_t size = _buffer->getSize() + (addedBlocks * _blockSize);
297  resize(size);
298  }
299  // Return first free block with others as _nextInChain
300  Block* first = 0;
301  Block* last = 0;
302  Block* next = 0;
303  for (unsigned int i=0; i<numBlocksInChain_; ++i)
304  {
305  // Take from free list and advance
306  next = _freeList;
307  _freeList = _freeList->_nextInList;
308  next->_nextInList = 0;
309  if (!first)
310  {
311  // First, set it up
312  first = next;
313  last = next;
314  }
315  else
316  {
317  // Not first, add it to chain
318  last->_nextInChain = next;
319  last = next;
320  }
321  }
322  assert(first);
323  // Set _usedList or add it to the end of the used list
324  if (!_usedList)
325  {
326  _usedList = first;
327  }
328  else
329  {
330  _endOfUsedList->_nextInList = first;
331  }
332  _endOfUsedList = first;
333  _blocksAvailable -= numBlocksInChain_;
334  return first;
335  }
336 
340  // Lock should already be acquired
341  void put(Block* block_)
342  {
343  assert(_usedList);
344  assert(_endOfUsedList);
345  // Remove from used list
346  if (_usedList == block_)
347  {
348  // Easy
349  _usedList = _usedList->_nextInList;
350  if (!_usedList)
351  {
352  _endOfUsedList = 0;
353  }
354  }
355  else
356  {
357  // Search and remove the block
358  Block* used=_usedList;
359  while (used)
360  {
361  if (used->_nextInList == block_)
362  {
363  used->_nextInList = block_->_nextInList;
364  break;
365  }
366  used = used->_nextInList;
367  if (!_usedList) // -V1051
368  {
369  _endOfUsedList = 0;
370  }
371  }
372  }
373  // Add to free list
374  _flattenToFreeList(block_);
375  }
376 
380  // Lock should already be acquired
381  ATOMIC_TYPE put(amps_uint64_t sequence_)
382  {
383  assert(_usedList);
384  assert(_endOfUsedList);
385  Block* used=_usedList;
386  ATOMIC_TYPE removalCount = 0;
387  while (used && used->_sequence <= sequence_)
388  {
389  Block* next = used->_nextInList;
390  // Add to free list
391  _flattenToFreeList(used);
392  used = next;
393  ++removalCount;
394  }
395  _usedList = used;
396  if (!used)
397  {
398  _endOfUsedList = 0;
399  }
400  return removalCount;
401  }
402 
406  // Lock should already be acquired
407  void putAll(Block* block_)
408  {
409  // Remove from used list
410  Block* newEndOfUsedList = 0;
411  for (Block* used = _usedList; used; used = used->_nextInList)
412  {
413  if (used == block_)
414  {
415  if (newEndOfUsedList)
416  {
417  newEndOfUsedList->_nextInList = 0;
418  }
419  else
420  {
421  _usedList = 0;
422  }
423  _endOfUsedList = newEndOfUsedList;
424  }
425  newEndOfUsedList = used;
426  }
427  // Add all remaining to free list
428  Block* next = 0;
429  for (Block* block = block_; block; block = next)
430  {
431  next = block->_nextInList;
432  _flattenToFreeList(block);
433  }
434  }
435 
438  // Lock should already be held
439  void init()
440  {
441  size_t startSize = _buffer->getSize();
442  if (!startSize)
443  {
445  startSize = _buffer->getSize();
446  }
447  // How many blocks are we resizing
448  amps_uint32_t numBlocks = (amps_uint32_t)(startSize) / getBlockSize();
449  _freeList = new Block[numBlocks];
450  _blockList.push_back(_freeList);
451  for (size_t i = 0; i < numBlocks; ++i)
452  {
453  _freeList[i].init(i, getBlockSize());
454  }
455  _freeList[numBlocks-1]._nextInList = 0;
456  _blocksAvailable += numBlocks;
457  assert(_freeList);
458  assert(_blocksAvailable);
459  }
460 
463  size_t getDefaultResizeSize() const
464  {
465  return _blocksPerRealloc * _blockSize;
466  }
467 
470  amps_uint32_t getDefaultResizeBlocks() const
471  {
472  return _blocksPerRealloc;
473  }
474 
482  // Lock should already be held
483  Block* resizeBuffer(size_t size_, amps_uint32_t* pNewBlocks_)
484  {
485  Block* freeList = 0;
486  while (_resizing)
487  {
488  if (_buffer->getSize() >= size_) return freeList;
489  BufferUnlock guard(_lock);
490  AMPS_YIELD();
491  }
492  FlagFlip flip(&_resizing);
493  bool okToResize = false;
494  if (true)
495  {
496  BufferUnlock u(_lock);
497  // Don't do anything if resizeHandler says no
498  okToResize = _canResize(size_);
499  }
500  if (!okToResize)
501  {
502  return freeList;
503  }
504  try
505  {
506  size_t oldSize = _buffer->getSize();
507  amps_uint32_t oldBlocks = (amps_uint32_t)(oldSize / getBlockSize());
508  if (oldSize >= size_)
509  {
510  *pNewBlocks_ = 0;
511  return freeList;
512  }
513  _buffer->setSize(size_);
514  _buffer->zero(oldSize, size_-oldSize);
515  // How many blocks are we resizing
516  *pNewBlocks_ = (amps_uint32_t)((size_-oldSize) / getBlockSize());
517  freeList = new Block[*pNewBlocks_];
518  for (size_t i = 0; i < *pNewBlocks_; ++i)
519  {
520  freeList[i].init(oldBlocks+i, getBlockSize());
521  }
522  freeList[*pNewBlocks_-1]._nextInList = 0;
523  }
524 #ifdef _WIN32
525  catch(const std::bad_alloc&)
526 #else
527  catch(const std::bad_alloc& e)
528 #endif
529  {
530  std::ostringstream os;
531  os << "BlockStore failed to allocate " << size_
532  << " bytes for resize of store from " << _buffer->getSize()
533  << " bytes.";
534  throw StoreException(os.str());
535  }
536  return freeList;
537  }
538 
542  // Lock should already be held
543  void resize(size_t size_)
544  {
545  amps_uint32_t newBlocks = 0;
546  Block* addedBlockList = resizeBuffer(size_, &newBlocks);
547  if (!addedBlockList || !newBlocks)
548  {
549  // Maybe we didn't have to allocate in this thread
550  return;
551  }
552  _blockList.push_back(addedBlockList);
553  addedBlockList[newBlocks-1]._nextInList = _freeList;
554  _freeList = addedBlockList;
555  _blocksAvailable += newBlocks;
556  assert(_blocksAvailable);
557  }
558 
561  // Lock should be held, no blocks should be used or allocated
562  amps_uint32_t setBlockSize(amps_uint32_t blockSize_)
563  {
564  if (_usedList || _freeList)
565  {
566  return 0;
567  }
568  amps_uint32_t oldSize = _blockSize;
569  _blockSize = blockSize_;
570  return oldSize;
571  }
572 
576  // Lock should be held, no blocks should be used or allocated
577  amps_uint32_t setBlockHeaderSize(amps_uint32_t blockHeaderSize_)
578  {
579  if (_usedList || _freeList)
580  {
581  return 0;
582  }
583  amps_uint32_t oldSize = _blockHeaderSize;
584  _blockHeaderSize = blockHeaderSize_;
585  return oldSize;
586  }
587 
590  // Lock should already be held
592  {
593  return _buffer;
594  }
595 
596 private:
598  bool _canResize(size_t requestedSize_)
599  {
600  if (_resizeHandler)
601  {
602  return _resizeHandler(requestedSize_, _resizeUserData);
603  }
604  else
605  {
606  return true;
607  }
608  }
609 
610  // Lock should already be acquired
611  void _flattenToFreeList(Block* block_)
612  {
613  // Flatten chain to front of free list
614  Block* current = block_;
615  while (current)
616  {
617  Block* chain = current->_nextInChain;
618  // Clear the header
619  _buffer->zero(current->_offset, _blockHeaderSize);
620  // Prepend to the free list and clear other values
621  current->_nextInList = _freeList;
622  _freeList = current;
623  ++_blocksAvailable;
624  current->_sequence = (amps_uint64_t)0;
625  current->_nextInChain = 0;
626  current = chain;
627  }
628  assert(_freeList);
629  assert(_blocksAvailable);
630  }
631 
632  // Member variables
633  // Buffer to use for storage
634  Buffer* _buffer;
635 
636  // The Block accounting
637  Block* _freeList;
638  Block* _usedList;
639  Block* _endOfUsedList;
640  // How much to resize buffer when needed
641  amps_uint32_t _blocksPerRealloc;
642  // How big is each Block, and what part is header
643  amps_uint32_t _blockSize;
644  amps_uint32_t _blockHeaderSize;
645  // How many blocks are free
646  amps_uint32_t _blocksAvailable;
647  // ResizeHandler to call before resizing
648  ResizeHandler _resizeHandler;
649  // ResizeHandler data
650  void* _resizeUserData;
651  // List of every allocated slab of Blocks
652  BlockList _blockList;
653  // Flag to control resizing
654  volatile bool _resizing;
655 
656  // Lock for _buffer
657  mutable Mutex _lock;
658 
659 };
660 
661 }
662 
663 #endif
664 
void wait()
Wait for a signal.
Definition: BlockStore.hpp:197
void setResizeHandler(ResizeHandler resizeHandler_, void *userData_)
Set a resize hanlder that is called with the new total size of the Buffer.
Definition: BlockStore.hpp:220
amps_uint32_t setBlockSize(amps_uint32_t blockSize_)
Set the size to use for all Blocks.
Definition: BlockStore.hpp:562
void acquireRead() const
Acquire the lock for this object.
Definition: BlockStore.hpp:176
Constants
Default constant values for BlockStore.
Definition: BlockStore.hpp:63
Buffer * getBuffer()
Return the buffer underlying the store for direct write/read.
Definition: BlockStore.hpp:591
void put(Block *block_)
Return the given chain of Blocks to the free list for reuse.
Definition: BlockStore.hpp:341
~BlockStore()
Destructor that cleans up the buffer and other associated memory.
Definition: BlockStore.hpp:148
void releaseRead() const
Release the lock for this object. Used by RAII templates.
Definition: BlockStore.hpp:183
Block * front() const
Get the first used block in the store.
Definition: BlockStore.hpp:230
amps_uint32_t getDefaultResizeBlocks() const
Return the default number of blocks for each resize.
Definition: BlockStore.hpp:470
void addBlocks(Block *blockArray_)
Allow users to create Block arrays during recovery that are tracked for cleanup here with all other B...
Definition: BlockStore.hpp:275
bool wait(long timeout_)
Wait timeout_ ms for a signal.
Definition: BlockStore.hpp:206
Block * back() const
Get the last used block in the store.
Definition: BlockStore.hpp:240
void resize(size_t size_)
Resize the buffer to the requested size, adding all new space as unused Blocks for the free list...
Definition: BlockStore.hpp:543
ATOMIC_TYPE put(amps_uint64_t sequence_)
Return all Blocks with sequence <= sequence_ for reuse.
Definition: BlockStore.hpp:381
Used as a base class for other stores in the AMPS C++ client, this is an implementation that breaks a...
Definition: BlockStore.hpp:58
void init()
Initialize, assuming that _buffer has no existing information.
Definition: BlockStore.hpp:439
void setEndOfUsedList(Block *block_)
Allow containing classes to initialize the used list in recovery.
Definition: BlockStore.hpp:266
size_t getDefaultResizeSize() const
Return the default number of bytes for each resize.
Definition: BlockStore.hpp:463
void setUsedList(Block *block_)
Allow containing classes to initialize the used list in recovery.
Definition: BlockStore.hpp:258
Core type, function, and class declarations for the AMPS C++ client.
Provides AMPS::Buffer, an abstract base class used by the store implementations in the AMPS client...
amps_uint32_t setBlockHeaderSize(amps_uint32_t blockHeaderSize_)
Set the size to use for the header for all Blocks.
Definition: BlockStore.hpp:577
void setFreeList(Block *block_, amps_uint32_t freeCount_)
Allow containing classes to initialize the free list in recovery.
Definition: BlockStore.hpp:249
amps_uint32_t getBlockHeaderSize() const
Get the size of a header within each Block, as set in the constructor.
Definition: BlockStore.hpp:167
Abstract base class for implementing a buffer to be used by a StoreImpl for storage of publish messag...
Definition: Buffer.hpp:40
BlockStore(Buffer *buffer_, amps_uint32_t blocksPerRealloc_=DEFAULT_BLOCKS_PER_REALLOC, amps_uint32_t blockHeaderSize_=DEFAULT_BLOCK_HEADER_SIZE, amps_uint32_t blockSize_=DEFAULT_BLOCK_SIZE)
Create a BlockStore using buffer_ and default block size, that grows by blocksPerRealloc_ blocks when...
Definition: BlockStore.hpp:134
void putAll(Block *block_)
Return all Blocks starting with the given Block to the free list.
Definition: BlockStore.hpp:407
Used as metadata for each block in a Buffer.
Definition: BlockStore.hpp:72
Block * resizeBuffer(size_t size_, amps_uint32_t *pNewBlocks_)
Resize the buffer to the requested size, returning all new space.
Definition: BlockStore.hpp:483
void signalAll()
Signal lock waiters.
Definition: BlockStore.hpp:190
amps_uint32_t getBlockSize() const
Get the size of each Block, as set in the constructor.
Definition: BlockStore.hpp:160
Definition: ampsplusplus.hpp:103