GM6000 Digital Heater Controller Branch: main
SDX-1330
Payload.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Payload_h_
2#define Cpl_Persistent_Payload_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
15
16#include <stdlib.h>
17
18
19///
20namespace Cpl {
21///
22namespace Persistent {
23
24
25/** This abstract class defines the interface accessing the 'data payload' of
26 an individual Record instance.
27 */
29{
30public:
31 /** This method returns a Record's data payload contents. The Record
32 is responsible for NOT over-running the 'dst' buffer. The method
33 returns the number of bytes copied to 'dst' on success; else zero is
34 returned when there is failure.
35
36 Note: On success, the returned number of bytes MUST be the same on every
37 call of this method, i.e. variable length records at run time is
38 NOT supported.
39
40 Note: If the Record returns less data than 'maxDstLen' - the remaining
41 bytes will be zero filled before the record data is written to
42 the media.
43 */
44 virtual size_t getData( void* dst, size_t maxDstLen ) noexcept = 0;
45
46 /** This method used to transfer persistently stored data into a Record.
47 The method returns true if successful; else false is returned.
48
49 Note: The application is not required to consume all of the incoming
50 data. This is because typically region are 'over-allocated'
51 in order to leave room to grow.
52 */
53 virtual bool putData( const void* src, size_t srcLen ) noexcept = 0;
54
55
56public:
57 /// Virtual destructor
58 virtual ~Payload() {}
59};
60
61
62}; // end namespaces
63};
64#endif // end header latch
This abstract class defines the interface accessing the 'data payload' of an individual Record instan...
Definition Payload.h:29
virtual bool putData(const void *src, size_t srcLen) noexcept=0
This method used to transfer persistently stored data into a Record.
virtual ~Payload()
Virtual destructor.
Definition Payload.h:58
virtual size_t getData(void *dst, size_t maxDstLen) noexcept=0
This method returns a Record's data payload contents.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20