-
Notifications
You must be signed in to change notification settings - Fork 0
/
halve-duplicatedb.c
154 lines (138 loc) · 3.84 KB
/
halve-duplicatedb.c
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
/* halve-duplicatedb.c
Main file for halve-duplicatedb (halve duplicates database).
Copyright (C) 1998-2005 Richard Gooch
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.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Richard Gooch may be reached at http://www.safe-mbox.com/~rgooch/
*/
/*
This programme will halve the size of a duplicates database.
Written by Richard Gooch 1-OCT-1998
Last updated by Richard Gooch 30-MAY-2005: Added #include <errno.h>
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#define TIMEOUT 10 /* Seconds */
#define ERRSTRING strerror (errno)
int main (int argc, char **argv)
{
int lockfd = -1;
int ival;
off_t hpos;
struct stat statbuf;
FILE *dbfp;
char *dbfname, *lockfname, *buffer;
static char usage[] = "halve-duplicatedb dbfile lockfile";
if (argc != 3)
{
fprintf (stderr, "Usage:\t%s\n", usage);
exit (1);
}
dbfname = argv[1];
lockfname = argv[2];
/* Wait for lockfile */
for (ival = 0; ival < TIMEOUT; ++ival)
{
if ( ( lockfd = open (lockfname, O_CREAT | O_EXCL | O_RDWR, 0) ) < 0 )
{
if (errno == EEXIST)
{
sleep (1);
continue;
}
fprintf (stderr, "Error creating lockfile: \"%s\"\t%s\n",
lockfname, ERRSTRING);
exit (1);
}
break;
}
if (lockfd < 0)
{
fprintf (stderr, "Timeout gaining lockfile: \"%s\"\n", lockfname);
exit (1);
}
close (lockfd);
/* Find database file size and allocate half-size buffer */
if (stat (dbfname, &statbuf) != 0)
{
fprintf (stderr, "Error statting file: \"%s\"\t%s\n",
dbfname, ERRSTRING);
unlink (lockfname);
exit (1);
}
hpos = statbuf.st_size / 2;
if ( ( buffer = malloc (hpos) ) == NULL )
{
fprintf (stderr, "Error allocating %ld bytes\t%s\n",
(long) hpos, ERRSTRING);
unlink (lockfname);
exit (1);
}
/* Open database file, seek halfway and scan for first '\0' character */
if ( ( dbfp = fopen (dbfname, "r") ) == NULL )
{
fprintf (stderr, "Error opening file: \"%s\"\t%s\n",
dbfname, ERRSTRING);
unlink (lockfname);
exit (1);
}
if (fseek (dbfp, hpos, SEEK_SET) != 0)
{
fprintf (stderr, "Error seeking file: \"%s\"\t%s\n",
dbfname, ERRSTRING);
unlink (lockfname);
exit (1);
}
while ( ( ival = getc (dbfp) ) != EOF )
{
++hpos;
if (ival == '\0') break;
}
if (ival == EOF)
{
fprintf (stderr, "No NULL character found\n");
unlink (lockfname);
exit (1);
}
/* Read latter half in one block */
if (fread (buffer, statbuf.st_size - hpos, 1, dbfp) != 1)
{
fprintf (stderr, "Error reading file: \"%s\"\t%s\n",
dbfname, ERRSTRING);
unlink (lockfname);
exit (1);
}
fclose (dbfp);
if ( ( dbfp = fopen (dbfname, "w") ) == NULL )
{
fprintf (stderr, "Error opening file: \"%s\"\t%s\n",
dbfname, ERRSTRING);
unlink (lockfname);
exit (1);
}
if (fwrite (buffer, statbuf.st_size - hpos, 1, dbfp) != 1)
{
fprintf (stderr, "Error writing file: \"%s\"\t%s\n",
dbfname, ERRSTRING);
unlink (lockfname);
exit (1);
}
fclose (dbfp);
unlink (lockfname);
return (0);
} /* End Function main */