-
Notifications
You must be signed in to change notification settings - Fork 13
/
parse.py
executable file
·111 lines (80 loc) · 3.42 KB
/
parse.py
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
#! /usr/bin/env python2.5
## PyRT: Python Routeing Toolkit
## Demonstrates how to use MRTd module to parse dumps.
## Copyright (C) 2001 Richard Mortier <mort@sprintlabs.com>, Sprint ATL
## This program 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 2 of the
## License, or (at your option) any later version.
## This program 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 this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
## 02111-1307 USA
import os, time, struct, getopt, sys, mrtd, pprint, ospf
from mutils import *
################################################################################
if __name__ == "__main__":
VERBOSE = 1
START_T = -1
END_T = -1
#---------------------------------------------------------------------------
def usage():
print """Usage: %s [ options ] <filenames>:
-h|--help : Help
-v|--verbose : Be verbose
-q|--quiet : Be quiet
-s|--start-time: Start time of packets of interest [inclusive]
-t|--end-time : End time of packets of interest [inclusive]""" %\
(os.path.basename(sys.argv[0]),)
sys.exit(0)
#---------------------------------------------------------------------------
if len(sys.argv) < 2:
usage()
try:
opts, args = getopt.getopt(sys.argv[1:],
"hqvVs:t:",
("help", "verbose", "VERBOSE", "quiet",
"start-time=", "end-time=", ))
except (getopt.error):
usage()
for (x, y) in opts:
if x in ('-h', '--help'):
usage()
elif x in ('-q', '--quiet'):
VERBOSE = 0
elif x in ('-v', '--verbose'):
VERBOSE = 2
elif x in ('-V', '--VERBOSE'):
VERBOSE = 3
elif x in ('-s', '--start-time'):
START_T = time.mktime(time.strptime(y))
elif x in ('-t', '--end-time'):
END_T = time.mktime(time.strptime(y))
filenames = args
if not filenames:
usage()
#---------------------------------------------------------------------------
for fn in filenames:
cnt = 0
try:
mrt = mrtd.Mrtd(fn, "rb", mrtd.DEFAULT_SIZE)
error('[ %s ] parsing...\n' % fn)
while 1:
msg = mrt.read()
if (((START_T < 0) or (msg[0] >= START_T)) and
((END_T < 0) or (msg[0] <= END_T))):
rv = mrt.parse(msg, VERBOSE)
cnt = cnt + 1
if VERBOSE > 2: pprint.pprint(rv)
except mrtd.EOFExc:
error("end of file: %u messages\n" % cnt)
except KeyboardInterrupt:
error("interrupted!\n")
mrt.close()
sys.exit(0)
################################################################################
################################################################################