Updated license
[anna.git] / example / io / reader / reader.cpp
1 // ANNA - Anna is Not Nothingness Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // https://bitbucket.org/testillano/anna
6 //
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
9 // are met:
10 //
11 //     * Redistributions of source code must retain the above copyright
12 // notice, this list of conditions and the following disclaimer.
13 //     * Redistributions in binary form must reproduce the above
14 // copyright notice, this list of conditions and the following disclaimer
15 // in the documentation and/or other materials provided with the
16 // distribution.
17 //     * Neither the name of Google Inc. nor the names of its
18 // contributors may be used to endorse or promote products derived from
19 // this software without specific prior written permission.
20 //
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 //
33 // Authors: eduardo.ramos.testillano@gmail.com
34 //          cisco.tierra@gmail.com
35
36
37 #include <iostream>
38
39 #include <anna/core/core.hpp>
40 #include <anna/io/io.hpp>
41
42 #include <anna/app/Application.hpp>
43
44 class Test : public anna::app::Application {
45 public:
46    Test ();
47    
48    void initialize () throw (anna::RuntimeException);
49    
50 private:
51    void run () throw (anna::RuntimeException);      
52 };
53
54 using namespace std;
55
56 int main (int argc, const char** argv)
57 {
58    CommandLine& commandLine (CommandLine::instantiate ());
59    Test test;
60
61    try {
62       commandLine.initialize (argv, argc);
63       commandLine.verify ();
64
65       Logger::setLevel (Logger::Debug); 
66       Logger::initialize ("testfunctions", new TraceWriter ("file.trace", 2048000));
67  
68       test.start ();
69    }
70    catch (Exception& ex) {
71       cout << ex.asString () << endl;
72    }
73    
74    return 0;
75 }
76
77 Test::Test () : 
78    app::Application ("testfunctions", "ComprobaciĆ³n del sistema io", "1.0") 
79 {
80    CommandLine& commandLine (CommandLine::instantiate ());
81       
82    commandLine.add ("file", CommandLine::Argument::Mandatory, "Nombre del fichero a procesar");
83    commandLine.add ("mode", CommandLine::Argument::Mandatory, "Modo (binary|text)");
84    commandLine.add ("size", CommandLine::Argument::Mandatory, "TamaƱo del buffer de entrada");
85 }
86
87 void Test::initialize () 
88    throw (RuntimeException)
89 {
90 }
91
92 void Test::run () 
93    throw (RuntimeException)
94 {
95    CommandLine& commandLine (CommandLine::instantiate ());
96
97    const char* mode = commandLine.getValue ("mode");
98    int size = commandLine.getIntegerValue ("size");
99    const char* file = commandLine.getValue ("file");
100
101    if (anna_strcmp (mode, "binary") == 0) {
102       BinaryReader reader (file, size);
103       const DataBlock* dataBlock;
104
105       while ((dataBlock = reader.fetch ()) != NULL) 
106          cout << anna::functions::asString (*dataBlock, 24) << endl << endl;
107    }
108    else if (anna_strcmp (mode, "text") == 0) {
109       TextReader reader (file, size);
110       const char* line;
111       while ((line = reader.fetch ()) != NULL) 
112          cout << line << endl << endl;
113    }
114 }
115