~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Fix merge issues with 1.0 CC fix.

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
 
20
 * Continued development: Barry Leslie
 
21
 *
 
22
 * 2007-06-07
 
23
 *
 
24
 * CORE SYSTEM:
 
25
 * Basic file system path.
 
26
 *
 
27
 */
 
28
 
 
29
#pragma once
 
30
#ifndef __CSPATH_H__
 
31
#define __CSPATH_H__
 
32
 
 
33
#ifdef OS_UNIX
 
34
#include <limits.h>
 
35
#endif
 
36
 
 
37
#include "CSDefs.h"
 
38
#include "CSTime.h"
 
39
#include "CSDefs.h"
 
40
#include "CSString.h"
 
41
#include "CSSys.h"
 
42
 
 
43
class CSFile;
 
44
class CSDirectory;
 
45
 
 
46
class CSPath : public CSRefObject, public CSSys {
 
47
public:
 
48
        virtual CSFile *createFile(int mode);
 
49
 
 
50
        virtual void copyFile(CSPath *to_file, bool overwrite);
 
51
 
 
52
        /*
 
53
         * Recursively creates as many directories as required.
 
54
         */
 
55
        virtual void makePath();
 
56
 
 
57
        virtual void copyDir(CSPath *to_dir, bool overwrite);
 
58
 
 
59
        /* Return true of the directory is a symbolic link. */
 
60
        virtual bool isLink();
 
61
 
 
62
        /* Return true of the directory is empty. */
 
63
        virtual bool isEmpty();
 
64
 
 
65
        /* Delete the contents of a directory */
 
66
        virtual void emptyDir();
 
67
        
 
68
        /* Recursively delete the contents of a directory */
 
69
        virtual void emptyPath();
 
70
        
 
71
        /* Copy a file or directory to the specified location. */
 
72
        virtual void copyTo(CSPath *to_path, bool overwrite);
 
73
 
 
74
        virtual void moveTo(CSPath *to_path);
 
75
 
 
76
        /*
 
77
         * Remove a file or directory (even if not empty).
 
78
         */
 
79
        virtual void remove();
 
80
 
 
81
        /* Create an empty file. */
 
82
        virtual void touch(bool create_path = false);
 
83
 
 
84
        virtual CSString *getString();
 
85
 
 
86
        virtual const char *getCString();
 
87
 
 
88
        virtual const char *getNameCString();
 
89
 
 
90
        //virtual CSPath *clone() const;
 
91
 
 
92
        friend class TDPath;
 
93
        
 
94
        virtual bool exists(bool *is_dir);
 
95
 
 
96
        virtual bool exists() { return exists(NULL); }
 
97
 
 
98
        static void info(const char *path, bool *is_dir, off64_t *size, CSTime *mod_time);
 
99
 
 
100
        virtual void info(bool *is_dir, off64_t *size, CSTime *mod_time);
 
101
 
 
102
        static off64_t getSize(const char *path);
 
103
        
 
104
        virtual off64_t getSize();
 
105
 
 
106
        virtual bool isDir();
 
107
 
 
108
        virtual CSFile *openFile(int mode);
 
109
 
 
110
        /*
 
111
         * Remove a file.
 
112
         */
 
113
        virtual void removeFile();
 
114
 
 
115
        /*
 
116
         * Creates a directory assuming the directory path exists.
 
117
         */
 
118
        virtual void makeDir();
 
119
 
 
120
        virtual CSDirectory *openDirectory();
 
121
 
 
122
        virtual void removeDir();
 
123
 
 
124
        virtual void rename(const char *name);
 
125
 
 
126
        /*
 
127
         * Renames one path to another.
 
128
         * The destination path may not exist.
 
129
         */
 
130
        virtual void move(CSPath *to_path);
 
131
        
 
132
        CSPath *getCWD();
 
133
 
 
134
        static CSPath *getSystemCWD();
 
135
 
 
136
        /* Create a new path given an absolute and a relative path: */
 
137
        static CSPath *newPath(const char *path);
 
138
        static CSPath *newPath(CSString *path);
 
139
 
 
140
        /* Create a path relative to the given 'cwd' */
 
141
        static CSPath *newPath(CSPath *cwd, const char *path);
 
142
        static CSPath *newPath(CSString *cwd, const char *path);
 
143
        static CSPath *newPath(const char *cwd, CSString *path);
 
144
        static CSPath *newPath(const char *cwd, const char *path);
 
145
 
 
146
private:
 
147
        CSFile *try_CreateAndOpen(CSThread *self, int mode, bool retry);
 
148
        static CSLock iRename_lock;
 
149
        CSPath():iPath(NULL) { }
 
150
 
 
151
        virtual ~CSPath();
 
152
 
 
153
        CSString *iPath;
 
154
 
 
155
        static CSPath *iCWD;
 
156
};
 
157
 
 
158
#endif