~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSSys.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) 2010 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
 
 * Author: Barry Leslie
20
 
 *
21
 
 * 2010-02-05
22
 
 *
23
 
 * CORE SYSTEM:
24
 
 * Basic system specific file I/O classes.
25
 
 * The classes in this header are defined in CSSys_unix.cc and  CSSys_win.cc
26
 
 *
27
 
 */
28
 
 
29
 
#pragma once
30
 
#ifndef __CSSYSFILE_H__
31
 
#define __CSSYSFILE_H__
32
 
 
33
 
#ifdef OS_WINDOWS
34
 
#define INVALID_DIR_HANDLE (INVALID_HANDLE_VALUE)
35
 
#define INVALID_FILE_HANDLE (INVALID_HANDLE_VALUE)
36
 
#else
37
 
#include <dirent.h>
38
 
#define INVALID_DIR_HANDLE (NULL)
39
 
#define INVALID_FILE_HANDLE (-1)
40
 
#endif
41
 
 
42
 
#include "CSString.h"
43
 
#include "CSException.h"
44
 
#include "CSTime.h"
45
 
 
46
 
class CSSysDir {
47
 
public:
48
 
        CSSysDir(): 
49
 
                sd_path(NULL),
50
 
                sd_filter(NULL),
51
 
                sd_dir(INVALID_DIR_HANDLE){}
52
 
        
53
 
        ~CSSysDir();
54
 
        
55
 
        void open();
56
 
        void close();
57
 
        bool next();
58
 
 
59
 
        bool entryIsFile();
60
 
        const char *entryName();
61
 
        void getEntryPath(char *path, size_t size);
62
 
        
63
 
        CSString *sd_path;
64
 
        
65
 
private:
66
 
        CSStringBuffer *sd_filter;
67
 
#ifdef OS_WINDOWS
68
 
        WIN32_FIND_DATAA sd_entry;
69
 
        HANDLE sd_dir;
70
 
#else
71
 
        struct dirent sd_entry;
72
 
        DIR *sd_dir;
73
 
#endif
74
 
};
75
 
 
76
 
 
77
 
class CSSysFile {
78
 
public:
79
 
 
80
 
        static bool isDirNotFound(CSException *e);
81
 
        static bool isFileNotFound(CSException *e);
82
 
        static bool isDirExists(CSException *e);
83
 
 
84
 
CSSysFile(): sf_path(NULL), sf_fh(INVALID_FILE_HANDLE){}
85
 
 
86
 
        ~CSSysFile(){ sf_close();}
87
 
        
88
 
        bool fs_isOpen() { return ( sf_fh != INVALID_FILE_HANDLE);}
89
 
        
90
 
        void sf_open(const char *path, bool readonly, bool create);
91
 
        void sf_close();
92
 
        
93
 
        size_t sf_pread(void *data, size_t size, off64_t offset);
94
 
        void sf_pwrite(const void *data, size_t size, off64_t offset);
95
 
        
96
 
        off64_t sf_getEOF();
97
 
        void sf_setEOF(off64_t offset);
98
 
        
99
 
        void sf_sync();
100
 
        
101
 
        void sf_lock(bool shared);
102
 
        void sf_unlock();
103
 
        
104
 
private:
105
 
        CSString *sf_path;
106
 
#ifdef OS_WINDOWS
107
 
        HANDLE  sf_fh;
108
 
#else
109
 
        int             sf_fh;
110
 
#endif
111
 
        
112
 
};
113
 
 
114
 
class CSSys {
115
 
        public:
116
 
        static bool sys_exists(const char *path);
117
 
        static void sys_makeDir(const char *path);
118
 
        static void sys_removeDir(const char *path);
119
 
        static void sys_removeFile(const char *path);
120
 
        static void sys_rename(const char *old_path, const char *new_path);
121
 
        static void sys_stat(const char *path, bool *is_dir, off64_t *size, CSTime *mod_time);
122
 
        static bool sys_isLink(const char *path);
123
 
        static void sys_getcwd(char *path, size_t size);
124
 
        static void sys_setcwd(const char *path);
125
 
        static uint32_t sys_getpid();
126
 
        static bool sys_isAlive(uint32_t pid);
127
 
};
128
 
 
129
 
#endif