forked from thegenemyers/DAZZ_DB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDUSTupgrade.Jan.1.2015.c
80 lines (68 loc) · 1.93 KB
/
DUSTupgrade.Jan.1.2015.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
/*******************************************************************************************
*
* Interim code: upgrade dust track indices from int's to int64's
*
* Author: Gene Myers
* Date : December 2014
*
********************************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "DB.h"
#ifdef HIDE_FILES
#define PATHSEP "/."
#else
#define PATHSEP "/"
#endif
int main(int argc, char *argv[])
{ FILE *afile, *dfile;
FILE *nafile, *ndfile;
char *pwd, *root;
int size, tracklen;
int i, vint, dint;
int64 vlong;
if (argc != 2)
{ fprintf(stderr,"Usage: %s <path:db>\n",argv[0]);
exit (1);
}
pwd = PathTo(argv[1]);
root = Root(argv[1],".db");
afile = Fopen(Catenate(pwd,PATHSEP,root,".dust.anno"),"r");
dfile = Fopen(Catenate(pwd,PATHSEP,root,".dust.data"),"r");
nafile = Fopen(Catenate(pwd,PATHSEP,root,".next.anno"),"w");
ndfile = Fopen(Catenate(pwd,PATHSEP,root,".next.data"),"w");
if (afile == NULL || dfile == NULL || nafile == NULL || ndfile == NULL)
exit (1);
free(pwd);
free(root);
if (fread(&tracklen,sizeof(int),1,afile) != 1)
SYSTEM_ERROR
fwrite(&tracklen,sizeof(int),1,nafile);
if (fread(&size,sizeof(int),1,afile) != 1)
SYSTEM_ERROR
size = 8;
fwrite(&size,sizeof(int),1,nafile);
for (i = 0; i <= tracklen; i++)
{ if (fread(&vint,sizeof(int),1,afile) != 1)
SYSTEM_ERROR
vlong = vint;
fwrite(&vlong,sizeof(int64),1,nafile);
}
vint >>= 2;
for (i = 0; i < vint; i += 2)
{ if (fread(&dint,sizeof(int),1,dfile) != 1)
SYSTEM_ERROR
fwrite(&dint,sizeof(int),1,ndfile);
if (fread(&dint,sizeof(int),1,dfile) != 1)
SYSTEM_ERROR
dint += 1;
fwrite(&dint,sizeof(int),1,ndfile);
}
fclose(nafile);
fclose(ndfile);
fclose(afile);
fclose(dfile);
exit (0);
}