Import libcds.
[SXSI/libcds.git] / tests / text_to_int.cpp
1 /* test_to_int.cpp
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * text_to_int
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #include <sys/stat.h>
23 #include <iostream>
24 #include <sstream>
25 #include <basics.h>
26 #include <static_bitsequence.h>
27 #include <static_bitsequence_builder.h>
28 #include <alphabet_mapper.h>
29 #include <static_sequence.h>
30 #include <static_sequence_builder.h>
31 #include "static_sequence_tester.h"
32
33 int main(int argc, char ** argv) {
34   if(argc!=3) {
35     cout << "Usage: " << argv[0] << " <file> <output>" << endl;
36     return 0;
37   }
38   char * fname = argv[1];
39   char * oname = argv[2];
40
41   FILE * fp = fopen(fname,"r");
42   if(fp==NULL) {
43     cout << "could not open " << fname << endl;
44     return 1;
45   }
46   struct stat text_info;
47   if(stat(fname,&text_info)<0) {
48     cout << "could not stat: " << fname << endl;
49     return 1;
50   }
51   
52   uint n= (uint)text_info.st_size;
53   uint * text = new uint[n];
54
55   for(uint i=0;i<n;i++) {
56     uchar c;
57     text[i] = fread(&c,sizeof(uchar),1,fp);
58     text[i] = (uint)c;
59   }
60         fclose(fp);
61   
62   FILE * out = fopen(oname,"w");
63   if(out==NULL) {
64     cout << "could not open " << oname << endl;
65     return 1;
66   }
67   
68   n = fwrite(text,sizeof(uint),n,out);
69   fclose(out);
70   
71   delete [] text;
72         return 0;
73 }
74