GM6000 Digital Heater Controller Branch: main
SDX-1330
Common_.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Common_x_h_
2#define Cpl_Io_File_Common_x_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#include "Cpl/Io/Descriptor.h"
16
17///
18namespace Cpl {
19///
20namespace Io {
21///
22namespace File {
23
24/** This private concrete class is a helper class that implements
25 the common functions for the handling files.
26 */
28{
29public:
30 /** Opens a file. The default arguments are set for:
31
32 o Read/Write access
33 o Do NOT create the file if the file does not exist
34 o Do NOT truncate the file contents
35 */
36 static Cpl::Io::Descriptor open( const char* fileEntryName, bool readOnly=true, bool forceCreate=false, bool forceEmptyFile=false );
37
38
39public:
40 /// See Cpl::Io::File::ObjectApi
41 static bool length( Cpl::Io::Descriptor fd, unsigned long& length );
42
43
44public:
45 /// See Cpl::Io::File::ObjectApi
46 static bool currentPos( Cpl::Io::Descriptor fd, unsigned long& currentPos );
47
48 /// See Cpl::Io::File::ObjectApi
49 static bool setRelativePos( Cpl::Io::Descriptor fd, long deltaOffset );
50
51 /// See Cpl::Io::File::ObjectApi
52 static bool setAbsolutePos( Cpl::Io::Descriptor fd, unsigned long newoffset );
53
54 /// See Cpl::Io::File::ObjectApi
55 static bool setToEof( Cpl::Io::Descriptor fd );
56};
57
58
59}; // end namespaces
60};
61};
62#endif // end header latch
This private concrete class is a helper class that implements the common functions for the handling f...
Definition Common_.h:28
static bool currentPos(Cpl::Io::Descriptor fd, unsigned long &currentPos)
See Cpl::Io::File::ObjectApi.
static bool length(Cpl::Io::Descriptor fd, unsigned long &length)
See Cpl::Io::File::ObjectApi.
static bool setToEof(Cpl::Io::Descriptor fd)
See Cpl::Io::File::ObjectApi.
static bool setRelativePos(Cpl::Io::Descriptor fd, long deltaOffset)
See Cpl::Io::File::ObjectApi.
static Cpl::Io::Descriptor open(const char *fileEntryName, bool readOnly=true, bool forceCreate=false, bool forceEmptyFile=false)
Opens a file.
static bool setAbsolutePos(Cpl::Io::Descriptor fd, unsigned long newoffset)
See Cpl::Io::File::ObjectApi.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26