-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocument_manager_test.c
57 lines (49 loc) · 1.51 KB
/
document_manager_test.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
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil; -*-
*
* Copyright (c) 2008 Jeremy English <[email protected]>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
* Created: 01-November-2008
*/
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include "document.h"
#include "eprintf.h"
#include "fileutils.h"
int main(int argc, char **argv){
DocumentManager *dm;
int doc_num;
int i = 100;
Document doc;
srand(time(NULL));
if (argc == 1){
fprintf(stderr,"Usage\ndocument-test document_name1 document_name2 ... document_nameN\n");
exit(1);
}
setprogname(argv[0]);
/* write the document names to the data file */
dm = open_document_manager("document.dat",FM_WRITE);
while (--argc > 0){
printf("Writing %s\n", argv[argc]);
write_document(dm,argv[argc]);
}
doc_num = dm->doc_id;
close_document_manager(dm);
free(dm);
/* Read in random documents */
dm = open_document_manager("document.dat", FM_READ);
while(i--){
int n = rand() % doc_num;
get_document(dm,&doc,n);
printf("Document %.4d: %s\n", n, doc.data);
}
return 0;
}