File indexing completed on 2024-05-12 16:13:59

0001 /* This file is part of the KDE project
0002    Copyright (C) 2012 Jarosław Staniek <staniek@kde.org>
0003 
0004    This library is free software; you can redistribute it and/or
0005    modify it under the terms of the GNU Library General Public
0006    License as published by the Free Software Foundation; either
0007    version 2 of the License, or (at your option) any later version.
0008 
0009    This library is distributed in the hope that it will be useful,
0010    but WITHOUT ANY WARRANTY; without even the implied warranty of
0011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0012    Library General Public License for more details.
0013 
0014    You should have received a copy of the GNU Library General Public License
0015    along with this library; see the file COPYING.LIB.  If not, write to
0016    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0017  * Boston, MA 02110-1301, USA.
0018 */
0019 
0020 #include <iostream>
0021 #include <string>
0022 
0023 #include <sqlite3.h>
0024 
0025 #include "kdb_version.h"
0026 
0027 using namespace std;
0028 
0029 extern "C" int shell_main(const char *inFilename);
0030 
0031 void usage()
0032 {
0033     cerr << "Usage: " KDB_SQLITE_DUMP_TOOL " [file]\n\n"
0034          << KDB_SQLITE_DUMP_TOOL " version " KDB_VERSION_STRING << "\n"
0035          << "A stripped-down variant of the `sqlite3' tool for compacting\n"
0036             "SQLite 3 databases. Executes DUMP command on a database file and prints\n"
0037          << "percent progress. This tool is a part of the KDb framework.\n";
0038 }
0039 
0040 int main(int argc, char **argv)
0041 {
0042     if (argc < 2) {
0043         usage();
0044         return 1;
0045     }
0046     string arg(argv[1]);
0047     if (arg == "-h" || arg == "--help") {
0048         usage();
0049         return 0;
0050     }
0051 
0052     return shell_main(arg.c_str());
0053 }