lib: added support for a global config file
[barry.git] / tools / bs11nread.cc
blobf1ce51a566b0544381ab28123491bdb901e695f5
1 ///
2 /// \file bs11nread.cc
3 /// Reads an boost serialization file and dumps to stdout.
4 ///
6 /*
7 Copyright (C) 2008-2009, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #define __BARRY_BOOST_MODE__ // this program always requires BOOST
23 #include <barry/barry.h>
24 #include <iomanip>
25 #include <iostream>
26 #include <fstream>
27 #include <sstream>
28 #include <vector>
29 #include <string>
30 #include <algorithm>
31 #include <getopt.h>
32 #include "i18n.h"
35 using namespace std;
36 using namespace Barry;
38 void Usage()
40 int major, minor;
41 const char *Version = Barry::Version(major, minor);
43 cerr
44 << "bs11nread - Reads a boost serialization file (from btool)\n"
45 << " and dumps data to stdout\n"
46 << " Copyright 2008-2009, Net Direct Inc. (http://www.netdirect.ca/)\n"
47 << " Using: " << Version << "\n"
48 << "\n"
49 << " -f file Filename to save or load handheld data to/from\n"
50 << " -h This help\n"
51 << " -S Show list of supported database parsers\n"
52 << endl;
55 template <class Record>
56 bool Dump(const std::string &dbName, ifstream &ifs)
58 if( dbName != Record::GetDBName() )
59 return false;
61 std::vector<Record> records;
62 boost::archive::text_iarchive ia(ifs);
63 ia >> records;
64 cout << records.size()
65 << " records loaded" << endl;
66 sort(records.begin(), records.end());
68 typename std::vector<Record>::const_iterator
69 beg = records.begin(), end = records.end();
70 for( ; beg != end; beg++ ) {
71 cout << (*beg) << endl;
74 return true;
77 void DumpDB(const string &filename)
79 // filename is available, attempt to load
80 ifstream ifs(filename.c_str());
81 std::string dbName;
82 getline(ifs, dbName);
84 // check for recognized database names
85 Dump<Contact> (dbName, ifs) ||
86 Dump<Message> (dbName, ifs) ||
87 Dump<Calendar> (dbName, ifs) ||
88 Dump<ServiceBook> (dbName, ifs) ||
89 Dump<Memo> (dbName, ifs) ||
90 Dump<Task> (dbName, ifs) ||
91 Dump<PINMessage> (dbName, ifs) ||
92 Dump<SavedMessage> (dbName, ifs) ||
93 Dump<Folder> (dbName, ifs) ||
94 Dump<Timezone> (dbName, ifs) ||
95 cerr << "Unknown database name: " << dbName << endl;
98 void ShowParsers()
100 cout << "Supported Database parsers:\n"
101 << " Address Book\n"
102 << " Messages\n"
103 << " Calendar\n"
104 << " Service Book\n"
105 << " Memos\n"
106 << " Tasks\n"
107 << " PIN Messages\n"
108 << " Saved Email Messages\n"
109 << " Folders\n"
110 << " Time Zones\n"
111 << endl;
114 int main(int argc, char *argv[])
116 INIT_I18N(PACKAGE);
118 try {
119 string filename;
121 // process command line options
122 for(;;) {
123 int cmd = getopt(argc, argv, "f:hS");
124 if( cmd == -1 )
125 break;
127 switch( cmd )
129 case 'f': // filename
130 filename = optarg;
131 break;
133 case 'S': // show supported databases
134 ShowParsers();
135 return 0;
137 case 'h': // help
138 default:
139 Usage();
140 return 0;
144 // Initialize the barry library. Must be called before
145 // anything else.
146 Barry::Init();
148 if( !filename.size() ) {
149 cerr << "Filename must be specified" << endl;
150 return 1;
153 DumpDB(filename);
156 catch( boost::archive::archive_exception &ae ) {
157 cerr << "Archive exception: "
158 << ae.what() << endl;
159 return 1;
161 catch( Usb::Error &ue) {
162 std::cerr << "Usb::Error caught: " << ue.what() << endl;
163 return 1;
165 catch( Barry::Error &se ) {
166 std::cerr << "Barry::Error caught: " << se.what() << endl;
167 return 1;
169 catch( std::exception &e ) {
170 std::cerr << "std::exception caught: " << e.what() << endl;
171 return 1;
174 return 0;