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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*
* Copyright (C) 2009, 2010, 2011 Nicolas Bonnefon and other contributors
*
* This file is part of glogg.
*
* glogg is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* glogg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with glogg. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QApplication>
#include <boost/program_options.hpp>
namespace po = boost::program_options;
#include <iostream>
using namespace std;
#include "persistentinfo.h"
#include "sessioninfo.h"
#include "configuration.h"
#include "filterset.h"
#include "recentfiles.h"
#include "mainwindow.h"
#include "savedsearches.h"
#include "log.h"
static void print_version();
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
string filename = "";
TLogLevel logLevel = logWARNING;
try {
po::options_description desc("Usage: glogg [options] [file]");
desc.add_options()
("help,h", "print out program usage (this message)")
("version,v", "print glogg's version information")
("debug,d", "output more debug (include multiple times for more verbosity e.g. -dddd")
;
po::options_description desc_hidden("Hidden options");
// For -dd, -ddd...
for ( string s = "dd"; s.length() <= 10; s.append("d") )
desc_hidden.add_options()(s.c_str(), "debug");
desc_hidden.add_options()
("input-file", po::value<string>(), "input file")
;
po::options_description all_options("all options");
all_options.add(desc).add(desc_hidden);
po::positional_options_description positional;
positional.add("input-file", 1);
int command_line_style = (((po::command_line_style::unix_style ^
po::command_line_style::allow_guessing) |
po::command_line_style::allow_long_disguise) ^
po::command_line_style::allow_sticky);
po::variables_map vm;
po::store(po::command_line_parser(argc, argv).
options(all_options).
positional(positional).
style(command_line_style).run(),
vm);
po::notify(vm);
if ( vm.count("help") ) {
desc.print(cout);
return 0;
}
if ( vm.count("version") ) {
print_version();
return 0;
}
if ( vm.count( "debug" ) ) {
logLevel = logINFO;
}
for ( string s = "dd"; s.length() <= 10; s.append("d") )
if ( vm.count( s ) )
logLevel = (TLogLevel) (logWARNING + s.length());
if ( vm.count("input-file") )
filename = vm["input-file"].as<string>();
}
catch(exception& e) {
cerr << "Option processing error: " << e.what() << endl;
return 1;
}
catch(...) {
cerr << "Exception of unknown type!\n";
}
#if 0
FILE* file = fopen("glogg.log", "w");
Output2FILE::Stream() = file;
#endif
FILELog::setReportingLevel( logLevel );
// Register the configuration items
GetPersistentInfo().migrateAndInit();
GetPersistentInfo().registerPersistable(
new SessionInfo, QString( "session" ) );
GetPersistentInfo().registerPersistable(
new Configuration, QString( "settings" ) );
GetPersistentInfo().registerPersistable(
new FilterSet, QString( "filterSet" ) );
GetPersistentInfo().registerPersistable(
new SavedSearches, QString( "savedSearches" ) );
GetPersistentInfo().registerPersistable(
new RecentFiles, QString( "recentFiles" ) );
// FIXME: should be replaced by a two staged init of MainWindow
GetPersistentInfo().retrieve( QString( "settings" ) );
MainWindow* mw = new MainWindow();
LOG(logDEBUG) << "MainWindow created.";
mw->show();
mw->loadInitialFile( QString::fromStdString( filename ) );
return app.exec();
}
static void print_version()
{
cout << "glogg " GLOGG_VERSION "\n";
#ifdef GLOGG_COMMIT
cout << "Built " GLOGG_DATE " from " GLOGG_COMMIT "\n";
#endif
cout << "Copyright (C) 2009, 2010, 2011 Nicolas Bonnefon and other contributors\n";
cout << "This is free software. You may redistribute copies of it under the terms of\n";
cout << "the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.\n";
cout << "There is NO WARRANTY, to the extent permitted by law.\n";
}
|