-
Notifications
You must be signed in to change notification settings - Fork 8
/
filename.cpp
227 lines (198 loc) · 5.69 KB
/
filename.cpp
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/**************************************************************************
* copyright : (C) 2004-2006 by Petr Schwarz & Pavel Matejka *
* UPGM,FIT,VUT,Brno *
* email : {schwarzp,matejkap}@fit.vutbr.cz *
**************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
**************************************************************************/
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <fcntl.h>
#include <errno.h>
#include "filename.h"
#if defined WIN32 && !defined __CYGWIN__
#include <io.h>
#include <share.h>
#include <windows.h>
#else
#include <sys/types.h>
#include <sys/stat.h>
#endif
void ChangeFileSuffix(char *fileName, char *newSuffix)
{
char *dot_pos = strrchr(fileName, '.');
char *sep_pos1 = strrchr(fileName, '/');
char *sep_pos2 = strrchr(fileName, '\\');
char *sep_pos = (sep_pos1 > sep_pos2 ? sep_pos1 : sep_pos2);
if(!dot_pos || (sep_pos && sep_pos > dot_pos)) // dot is not found or dot is in path
{
strcat(fileName, ".");
strcat(fileName, newSuffix);
}
else
{
strcpy(dot_pos + 1, newSuffix);
}
}
void ExtractFileName(char *fileName)
{
char buff[1024];
strcpy(buff, fileName);
char *sep_pos1 = strrchr(buff, '/');
char *sep_pos2 = strrchr(buff, '\\');
char *sep_pos = (sep_pos1 > sep_pos2 ? sep_pos1 : sep_pos2);
if(!sep_pos)
return;
strcpy(fileName, sep_pos + 1);
}
void CutOffFileSuffix(char *fileName)
{
char *sep_pos1 = strrchr(fileName, '/');
char *sep_pos2 = strrchr(fileName, '\\');
char *dot_pos = strrchr(fileName, '.');
char *sep_pos = (sep_pos1 > sep_pos2 ? sep_pos1 : sep_pos2);
if(dot_pos && (!sep_pos || dot_pos > sep_pos))
*dot_pos = '\0';
}
void GetFileSuffix(char *fileName, char *retSuffix)
{
char *sep_pos1 = strrchr(fileName, '/');
char *sep_pos2 = strrchr(fileName, '\\');
char *dot_pos = strrchr(fileName, '.');
char *sep_pos = (sep_pos1 > sep_pos2 ? sep_pos1 : sep_pos2);
*retSuffix = '\0';
if(dot_pos && (!sep_pos || dot_pos > sep_pos))
strcpy(retSuffix, dot_pos + 1);
}
void ExtractBaseFileName(char *fileName)
{
ExtractFileName(fileName);
CutOffFileSuffix(fileName);
}
// replace dir separators '/\' with the one used in system
void CorrectDirSeparator(char *fileName, const char *dSep)
{
assert(strlen(dSep) == 1);
int i;
for(i = 0; i < (int)strlen(fileName); i++)
{
if(fileName[i] == '\\' || fileName[i] == '/')
fileName[i] = dSep[0];
}
}
void ChangeFilePath(char *fileName, char *newPath)
{
char buff[1024];
strcpy(buff, fileName);
char *sep_pos1 = strrchr(buff, '/');
char *sep_pos2 = strrchr(buff, '\\');
char *sep_pos = (sep_pos1 > sep_pos2 ? sep_pos1 : sep_pos2);
if(!sep_pos)
return;
strcpy(fileName, newPath);
strcat(fileName, sep_pos);
}
void GetFilePath(char *fileName, char *retPath)
{
strcpy(retPath, fileName);
char *sep_pos1 = strrchr(retPath, '/');
char *sep_pos2 = strrchr(retPath, '\\');
char *sep_pos = (sep_pos1 > sep_pos2 ? sep_pos1 : sep_pos2);
if(sep_pos)
*sep_pos = '\0';
else
retPath[0] = '\0';
}
bool FileExistence(char *fileName)
{
int fid = open(fileName, O_RDONLY);
if(fid >= 0)
{
close(fid);
return true;
}
if(errno == EACCES)
return true;
return false;
}
bool FileWritePerm(char *file)
{
FILE *fp;
fp = fopen(file, "ab");
if(fp)
{
fclose(fp);
return true;
}
return false;
}
bool FileExclPerm(char *fileName)
{
if(!FileExistence(fileName))
return false;
#ifdef WIN32
int fid;
fid = sopen(fileName, O_RDWR, SH_DENYRW);
if (fid < 0)
return false;
close(fid);
return true;
#else
#warning "Function 'FileExclPerm' is not implemented under Linux"
return false;
#endif
}
long FileLen(FILE *fp)
{
int f = fileno(fp);
long oldpos = ftell(fp);
long size = lseek(f, 0, SEEK_END);
lseek(f, oldpos, SEEK_SET);
return size;
}
bool FileCopy(char *from, char *to, bool overwrite)
{
#if defined WIN32 && !defined __CYGWIN__
return CopyFile(from, to, overwrite);
#else
#warning "Function 'FileCopy' is not implemented under Linux"
return false;
#endif
}
bool FileMove(char *from, char *to)
{
#if defined WIN32 && !defined __CYGWIN__
return MoveFile(from, to);
#else
#warning "Function 'FileMove' is not implemented under Linux"
return false;
#endif
}
bool SubstFileDir(char *fileName, char *prevDir, char *newDir)
{
int len = strlen(prevDir);
if(strncmp(fileName, prevDir, len) == 0)
{
char buff[1024];
strcpy(buff, fileName);
strcpy(fileName, newDir);
strcat(fileName, buff + len);
return true;
}
return false;
}
void CreateChannelFileName(char *file, char *channelSuffix)
{
char suffix[1024];
GetFileSuffix(file, suffix);
CutOffFileSuffix(file);
strcat(file, channelSuffix);
strcat(file, ".");
strcat(file, suffix);
}