summaryrefslogtreecommitdiffstats
path: root/akode/lib/file.h
blob: ced8795179c8727b42bf3742847671c1b2e4f204 (plain)
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
/*  aKode: File abstract-type

    Copyright (C) 2004 Allan Sandfeld Jensen <kde@carewolf.com>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/

#ifndef _AKODE_FILE_H
#define _AKODE_FILE_H

extern "C" {
#include <sys/types.h>
#include <unistd.h>
}

namespace aKode {

//! The generic interface to aKode's virtualised files

/*!
 * An interface with the all the needed file/stream-operations
 * the library needs.
 */
class File {
public:
   /*!
    * Creates a File with the given \a filename.
    */
    File(const char* filename) : filename(filename) {};
    virtual ~File() {};
   /*!
    * Opens the file as read-only.
    * Returns whether the operation was succesfull.
    */
    virtual bool openRO() { return false; };
   /*!
    * Opens the file as read and write.
    * Returns whether the operation was succesfull.
    */
    virtual bool openRW() { return false; };
   /*!
    * Open the file as write-only.
    * Returns whether the operation was succesfull.
    */
    virtual bool openWO() { return false; };
   /*!
    * Closes the file.
    */
    virtual void close() = 0;
   /*!
    * Reads \a num bytes from the file and places the data in \a ptr.
    * Returns number of read characters. Returns 0 if end-of-file.
    * Returns negative at errors.
    */
    virtual long read(char* ptr, long num) = 0;
   /*!
    * Writes \a num bytes from \a ptr to the file.
    * Returns number of writen characters.
    * Returns negative at errors.
    */
    virtual long write(const char* ptr, long num) = 0;
   /*!
    * Seeks to the position.
    * Behaves semantically as lseek.
    */
    virtual ssize_t lseek(long to, int whence = SEEK_SET) = 0;
   /*!
    * Returns current position in file, or negative if unknown.
    */
    virtual long position() const = 0;
   /*!
    * Returns length of file, or negative if unknown.
    */
    virtual long length() const = 0;
   /*!
    * Returns true if the file is seekable
    */
    virtual bool seekable() const = 0;
   /*!
    * Returns true if the file is readable
    */
    virtual bool readable() const = 0;
   /*!
    * Returns true if the file is writeable
    */
    virtual bool writeable() const = 0;
   /*!
    * Returns whether the file has reached end-of-file.
    */
    virtual bool eof() const = 0;
   /*!
    * Returns true if the file has entered a non-recoverable error-state
    */
    virtual bool error() const = 0;
   /*!
    * Advises the OS (if possible), that the file will be read
    * sequentially from the current position and forward.
    */
    virtual void fadvise() = 0;
   /*!
    * The name of the file.
    */
    const char *filename;
};

} //namespace

#endif