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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
#include <config.h>
#include "file.h"
#include "miav_config.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <netinet/in.h>
#include <stdlib.h>
File::File(char *fn, char* ext, Info *i)
{
char path[256];
info = i;
savestate = SAVE;
filename = new char[strlen(fn) + 1];
extension = new char[strlen(ext) + 1];
strcpy(filename, fn);
strcpy(extension, ext);
num = 0;
seqnum = 0;
fd = -1;
int pos = (int)strrchr(filename, '/');
memset(path, 0, sizeof(path));
if(pos) {
pos -= (int)filename;
strncpy(path, filename, pos);
createPath(path);
}
Open();
}
File::~File()
{
close(fd);
info->info("This session contains the following files...");
for(unsigned int cnt = 0; cnt < filelist.size(); cnt ++) {
info->info("[%s]", filelist[cnt].c_str());
}
std::string *trash = MIaV::config->readString("server_trash");
std::string *later = MIaV::config->readString("server_later");
switch(savestate) {
case NO_CHANGE:
info->warn("File had no savestate!");
break;
case SAVE:
info->info("Files in this session is to be saved.");
break;
case DELETE:
info->info("Files in this session is to be deleted (moved to trash).");
Move((char*)trash->c_str());
break;
case LATER:
info->info("Files in this session is stored for later decisson.");
Move((char*)later->c_str());
break;
}
delete filename;
delete extension;
}
int File::Move(char *destination)
{
char newfile[256];
char filename[256];
createPath(destination);
for(unsigned int cnt = 0; cnt < filelist.size(); cnt ++) {
strcpy(filename, (char*)filelist[cnt].c_str());
sprintf(newfile, "%s%s", destination, strrchr(filename, '/'));
if(rename((char*)filelist[cnt].c_str(), newfile) == -1)
info->error("Error moving file %s to %s:",
(char*)filelist[cnt].c_str(),
newfile,
strerror(errno));
}
return 0;
}
int File::Open()
{
char fname[256];
if(fd != -1) {
close(fd);
fd = -1;
}
while(fd == -1) {
if(seqnum) {
sprintf(fname, "%s%.3d-%d.%s", filename, num, seqnum, extension);
} else {
sprintf(fname, "%s%.3d.%s", filename, num, extension);
}
fd = open(fname, O_CREAT | O_WRONLY | O_ASYNC | O_EXCL,
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if(fd == -1) num ++;
if(num > 100) {
info->error("Something is wrong with the path [%s]!", fname);
exit(1);
}
}
std::string filename_string(fname);
filelist.push_back(filename_string);
seqnum ++;
info->info("Output file: %s", fname);
return 0;
}
int File::Write(void* data, int size)
{
int w;
w = write(fd, data, size);
if(w != size) {
info->info("Wrapping file.");
Open();
w = write(fd, data, size);
if(w != size) {
info->error("Out of diskspace!");
return -1;
}
}
return w;
}
int File::createPath(char* path)
{
char *subpath;
subpath = (char*)calloc(strlen(path) + 1, 1);
strcpy(subpath, path);
subpath[strrchr(subpath, '/') - subpath] = '\0';
if(strlen(subpath) > 0) createPath(subpath);
info->info("Checking and/or generating directory: %s", path);
mkdir(path, S_IRWXU | S_IRGRP | S_IXGRP | S_IXOTH | S_IROTH);
free(subpath);
return 0;
}
void File::setSaveState(n_savestate s)
{
savestate = s;
info->info("SETTING SAVESTATE TO: %d", savestate);
}
#ifdef __TEST_FILE
#include "info_simple.h"
int main(int argc, char *argv[]) {
if(argc < 3) {
fprintf(stderr, "usage:\n\ttest_file [filename] [extension]\n");
return 1;
}
InfoSimple info;
File file(argv[1], argv[2], &info);
unsigned int val = 0x01234567;
file.Write(val);
}
#endif
|