~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSFile.h

  • Committer: Mark Atwood
  • Date: 2011-12-20 02:32:53 UTC
  • mfrom: (2469.1.1 drizzle-build)
  • Revision ID: me@mark.atwood.name-20111220023253-bvu0kr14kwsdvz7g
mergeĀ lp:~brianaker/drizzle/deprecate-pbms

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2008 PrimeBase Technologies GmbH, Germany
2
 
 *
3
 
 * PrimeBase Media Stream for MySQL
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; either version 2 of the License, or
8
 
 * (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
 
 *
19
 
 * Original author: Paul McCullagh (H&G2JCtL)
20
 
 * Continued development: Barry Leslie
21
 
 *
22
 
 * 2007-06-07
23
 
 *
24
 
 * CORE SYSTEM:
25
 
 * Basic file I/O.
26
 
 *
27
 
 */
28
 
 
29
 
#pragma once
30
 
#ifndef __CSFILE_H__
31
 
#define __CSFILE_H__
32
 
 
33
 
#include <stdio.h>
34
 
 
35
 
#include "CSDefs.h"
36
 
#include "CSPath.h"
37
 
#include "CSException.h"
38
 
#include "CSSys.h"
39
 
 
40
 
class CSOutputStream;
41
 
class CSInputStream;
42
 
 
43
 
class CSFile : public CSSysFile, public CSRefObject {
44
 
public:
45
 
        CSPath *myFilePath;
46
 
 
47
 
        static const int DEFAULT = 0;   // Open for read/write, error if it does not exist.
48
 
        static const int READONLY = 1;  // Open for readonly
49
 
        static const int CREATE = 2;    // Create if it does not exist
50
 
        static const int TRUNCATE = 4;  // After open, set EOF to zero  
51
 
 
52
 
        CSFile(): myFilePath(NULL), iMode(-1), iLocked(0) { }
53
 
 
54
 
        virtual ~CSFile(); 
55
 
 
56
 
        CSOutputStream *getOutputStream();
57
 
        CSOutputStream *getOutputStream(off64_t offset);
58
 
 
59
 
        CSInputStream *getInputStream();
60
 
        CSInputStream *getInputStream(off64_t offset);
61
 
 
62
 
        /*
63
 
         * Open the file in the specified
64
 
         * mode.
65
 
         */
66
 
        virtual void open(int mode);
67
 
 
68
 
        /* Lock the file. The file will be unlocked
69
 
         * when closed.
70
 
         */
71
 
        virtual void lock();
72
 
 
73
 
        virtual void unlock();
74
 
 
75
 
        /*
76
 
         * Close the file.
77
 
         */
78
 
        virtual void close();
79
 
 
80
 
        /*
81
 
         * Calculate the Md5 digest for the file.
82
 
         */
83
 
        void md5Digest(Md5Digest *digest);
84
 
 
85
 
        /*
86
 
         * Move the current position to
87
 
         * the end of the file.
88
 
         */
89
 
        virtual off64_t getEOF();
90
 
 
91
 
        virtual void setEOF(off64_t offset);
92
 
 
93
 
        /*
94
 
         * Read a given number of bytes. This function
95
 
         * throws an error if the number of bytes read
96
 
         * ius less than 'min_size'.
97
 
         */
98
 
        virtual size_t read(void *data, off64_t offset, size_t size, size_t min_size);
99
 
 
100
 
        /*
101
 
         * Write the given number of bytes.
102
 
         * Throws IOException if an error occurs.
103
 
         */
104
 
        virtual void write(const void *data, off64_t offset, size_t size);
105
 
 
106
 
        /*
107
 
         * Flush the data written.
108
 
         */
109
 
        virtual void flush();
110
 
 
111
 
        /* Flush the OS buffers: */
112
 
        virtual void sync() ;
113
 
 
114
 
        /* Resets access and modification times of the file: */
115
 
        virtual void touch();
116
 
 
117
 
        /*
118
 
         * Return a platform specific prefered 
119
 
         * line ending for text files.
120
 
         */
121
 
        virtual const char *getEOL() { return "\n"; };
122
 
 
123
 
        virtual const char *getPathString() { return myFilePath->getCString(); }
124
 
 
125
 
        bool exists() { return myFilePath->exists(); }
126
 
 
127
 
        friend class CSReadBufferedFile;
128
 
 
129
 
private:
130
 
        int             iMode;
131
 
        int             iLocked;
132
 
 
133
 
        virtual void openFile(int mode);
134
 
        bool try_CreateAndOpen(CSThread *self, int mode, bool retry);
135
 
 
136
 
public:
137
 
        void streamOut(CSOutputStream *dst_stream, off64_t src_offset, off64_t size, char *buffer, size_t buffer_size);
138
 
        void streamIn(CSInputStream *src_stream, off64_t dst_offset, off64_t size, char *buffer, size_t buffer_size);
139
 
 
140
 
        static bool isDirNotFound(CSException *e) { return e->getErrorCode() == ENOENT; }
141
 
        static bool isDirExists(CSException *e) { return e->getErrorCode() == EEXIST; }
142
 
 
143
 
        static bool transfer(CSFile *dst_file, off64_t dst_offset, CSFile *src_file, off64_t src_offset, off64_t size, char *buffer, size_t buffer_size);
144
 
 
145
 
        static CSFile *newFile(CSPath *path);
146
 
 
147
 
        static CSFile *newFile(const char *path);
148
 
 
149
 
        static CSFile *newFile(const char *dir_str, const char *path_str);
150
 
};
151
 
 
152
 
 
153
 
// This stuff needs to be retought.
154
 
 
155
 
#ifdef DEBUG
156
 
#define SC_DEFAULT_FILE_BUFFER_SIZE                     127
157
 
#else
158
 
#define SC_DEFAULT_FILE_BUFFER_SIZE                     (64 * 1024)
159
 
#endif
160
 
 
161
 
class CSReadBufferedFile : public CSRefObject {
162
 
public:
163
 
 
164
 
        CSReadBufferedFile();
165
 
 
166
 
        ~CSReadBufferedFile();
167
 
        
168
 
        void setFile(CSFile     *file) {myFile = file;}
169
 
 
170
 
        const char *getPathString() { return myFile->getPathString(); }
171
 
        void open(int mode) {myFile->open(mode); }
172
 
 
173
 
        void close();
174
 
 
175
 
        off64_t getEOF();
176
 
 
177
 
        void setEOF(off64_t offset);
178
 
 
179
 
        size_t read(void *data, off64_t offset, size_t size, size_t min_size);
180
 
 
181
 
        void write(const void *data, off64_t offset, size_t size);
182
 
 
183
 
        void flush();
184
 
 
185
 
        void sync();
186
 
 
187
 
        const char *getEOL();
188
 
 
189
 
private:
190
 
        CSFile  *myFile;
191
 
 
192
 
        char    iFileBuffer[SC_DEFAULT_FILE_BUFFER_SIZE];
193
 
        off64_t iFileBufferOffset;
194
 
        size_t  iBufferDataLen;
195
 
 
196
 
        virtual void openFile(int mode);
197
 
};
198
 
 
199
 
 
200
 
#endif