This repository was archived by the owner on Apr 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakepar.c
More file actions
138 lines (123 loc) · 2.88 KB
/
makepar.c
File metadata and controls
138 lines (123 loc) · 2.88 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
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
/*\
|*| Parity Archive - A way to restore missing files in a set.
|*|
|*| Copyright (C) 2001 Willem Monsuwe (willem@stack.nl)
|*|
|*| File format by Stefan Wehlus -
|*| initial idea by Tobias Rieper, further suggestions by Kilroy Balore
|*|
|*| Create PAR files.
\*/
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
#include <string.h>
#include "util.h"
#include "backend.h"
#include "makepar.h"
#include "rwpar.h"
#include "fileops.h"
/*\
|*| Add a data file to a PAR file
\*/
int
par_add_file(par_t *par, hfile_t *file)
{
pfile_t *p, **pp;
if (!file)
return 0;
if (!hash_file(file, HASH)) {
fprintf(stderr, " %-40s - ERROR\n",
basename(file->filename));
return 0;
}
/*\ Check if the file exists \*/
for (p = par->files; p; p = p->next) {
switch (unicode_cmp(p->filename, file->filename)) {
case 0:
if (CMP_MD5(p->hash, file->hash)) {
fprintf(stderr, " %-40s - EXISTS\n",
basename(file->filename));
} else {
fprintf(stderr, " %-40s - NAME CLASH\n",
basename(file->filename));
}
return 0;
case 1:
if (CMP_MD5(p->hash, file->hash)) {
fprintf(stderr, " %-40s - EXISTS\n",
basename(file->filename));
return 0;
}
break;
}
}
/*\ Create new entry \*/
CNEW(p, 1);
p->filename = file->filename;
p->match = file;
p->file_size = file->file_size;
COPY(p->hash, file->hash, sizeof(md5));
COPY(p->hash_16k, file->hash_16k, sizeof(md5));
if (cmd.add)
p->status |= 0x01;
/*\ Insert in alphabetically correct place \*/
for (pp = &par->files; *pp; pp = &((*pp)->next))
if (unicode_gt((*pp)->filename, p->filename))
break;
p->next = *pp;
*pp = p;
fprintf(stderr, " %-40s - OK\n", basename(file->filename));
return 1;
}
/*\
|*| Create the PAR volumes from the description in the PAR archive
\*/
int
par_make_pxx(par_t *par)
{
pfile_t *p, *v;
int M, i;
if (!IS_PAR(*par))
return 0;
if (par->vol_number) {
CNEW(v, 1);
v->match = find_file_name(par->filename, 0);
if (!v->match)
v->match = find_volume(par->filename, par->vol_number);
v->vol_number = par->vol_number;
if (v->match)
v->filename = v->match->filename;
par->volumes = v;
} else {
if (cmd.volumes <= 0)
return 0;
M = cmd.volumes;
if (cmd.pervol) {
for (M = 0, p = par->files; p; p = p->next)
if (USE_FILE(p))
M++;
M = ((M - 1) / cmd.volumes) + 1;
}
/*\ Create volume file entries \*/
for (i = 1; i <= M; i++) {
CNEW(v, 1);
v->match = find_volume(par->filename, i);
v->vol_number = i;
if (v->match)
v->filename = v->match->filename;
v->next = par->volumes;
par->volumes = v;
}
}
fprintf(stderr, "\n\nCreating PAR volumes:\n");
for (p = par->files; p; p = p->next)
if (USE_FILE(p))
find_file(p, 1);
for (v = par->volumes; v; v = v->next)
v->fnrs = file_numbers(&par->files, &par->files);
if (restore_files(par->files, par->volumes, 0) < 0)
return 0;
return 1;
}