blob: 4f50d1efb29ef94065f93830103b36a2dcb443ae [file] [log] [blame]
Harald Weltecef7ef62017-01-22 19:04:08 +01001#!/usr/bin/env python
2#
3# Code to parse the ASCII Database files of QXDM
4# (C) 2017 by Harald Welte <laforge@gnumonks.org>
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program 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
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License along
17# with this program; if not, write to the Free Software Foundation, Inc.,
18# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20from optparse import OptionParser
21from qxdm_db import QxdmDb
22
23parser = OptionParser()
24parser.add_option("-d", "--database-dir", dest="db_dir",
25 help="QXDM Database directory to use")
26
27(options, args) = parser.parse_args()
28
29if not options.db_dir:
30 print "You have to specify the database directory"
31 exit(2)
32
33db = QxdmDb(options.db_dir)
34
35db.export_valstr_events()
36db.export_valstr_event_descs()
37db.export_valstr_logitems()
38db.export_valstr_msgs()