GM6000 Digital Heater Controller Branch: main
SDX-1330
IndexedEntryWriter.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Persistent_IndexedEntryWriter_h_
2#define Cpl_Dm_Persistent_IndexedEntryWriter_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include <stdint.h>
17
18///
19namespace Cpl {
20///
21namespace Persistent {
22
23/** This abstract class defines interface for appending a single 'entry' to a
24 a collection of entries (i.e. write a entry to a IndexedEntryRecord).
25
26 From a logical perspective, 'entries' are stored in a Ring Buffer
27 and when the buffer is full, the oldest entries are overwritten.
28
29 Each entry that is stored has an 'index' value associated with it. This
30 'index' is used to uniquely identify each entry (even across overwritten
31 entries) and it is used to identify the relative age between the entries.
32
33 NOTE: The max length entries (for a given IndexEntryRecord) IS a single
34 fixed length. An 'unused' bytes/space are padded with zeros.
35
36 NOTE: This interface/class is NOT THREAD SAFE and should only be 'used' from
37 the Record Server's thread.
38 */
40{
41public:
42 /** This method appends entry to the list of Indexed Entries. The method
43 is synchronous in that the method does not return until the entry has
44 been 'written' the persistent media.
45
46 Returns true on success; else if an error occurred (e.g. IO error while
47 writing) false is returned.
48 */
49 virtual bool addEntry( const Payload& src ) noexcept = 0;
50
51public:
52 /** This method will 'clear' (i.e. invalidate) ALL entries in persistent
53 storage.
54
55 CAUTION: With great power comes, comes great responsibility!
56
57 Returns true when successful; else false is returned. When false is
58 returned that state of 'entries' in persistent storage is undetermined.
59 */
60 virtual bool clearAllEntries() noexcept = 0;
61
62public:
63 /// Virtual destructor
64 virtual ~IndexedEntryWriter() {}
65};
66
67
68
69}; // end namespaces
70};
71#endif // end header latch
This abstract class defines interface for appending a single 'entry' to a a collection of entries (i....
Definition IndexedEntryWriter.h:40
virtual bool clearAllEntries() noexcept=0
This method will 'clear' (i.e.
virtual bool addEntry(const Payload &src) noexcept=0
This method appends entry to the list of Indexed Entries.
This abstract class defines the interface accessing the 'data payload' of an individual Record instan...
Definition Payload.h:29
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20