Menu

[r2]: / main.cpp  Maximize  Restore  History

Download this file

80 lines (58 with data), 1.4 kB

 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
#include "backup.hpp"
#include "time.hpp"
#include "script.hpp"
#include <unistd.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>
#include <iostream>
#include <string.h>
using namespace std;
void parse_config(const char *conf, Backup *bk)
{
FILE *in;
char line[1000];
string bkpath;
enum {NONE, BKROOT, MYFILES};
int state = NONE;
int len;
in = fopen(conf, "r");
if (!in) {
cerr << "Cannot open config file!\n";
exit(-1);
}
while (!feof(in)) {
if (!fgets(line, 1000, in)) break;
len = strlen(line);
while (len && isspace(line[len-1])) line[--len] = 0;
if (!len) continue;
if (!strcmp(line, "[backup root]")) {
state = BKROOT;
continue;
}
if (!strcmp(line, "[my files]")) {
state = MYFILES;
continue;
}
switch (state) {
case BKROOT:
printf("Backing up to %s\n", line);
bk->setBackupRoot(line);
break;
case MYFILES:
printf("Adding tree %s\n", line);
bk->addMyfiles(line);
break;
}
}
fclose(in);
}
int main()
{
compute_current_time();
Backup *bk = new Backup;
parse_config("/etc/vortex.conf", bk);
bk->backup_trees();
delete bk;
return 0;
}
MongoDB Logo MongoDB