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
|
#!/usr/bin/env python
# -*- Mode: python -*-
# Copyright (C) 2001-2020 Artifex Software, Inc.
# All Rights Reserved.
#
# This software is provided AS-IS with no warranty, either express or
# implied.
#
# This software is distributed under license and may not be copied,
# modified or distributed except as expressly authorized under the terms
# of the license contained in the file LICENSE in this distribution.
#
# Refer to licensing information at http://www.artifex.com or contact
# Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato,
# CA 94945, U.S.A., +1(415)492-9861, for further information.
#
#
# get_baseline_log <date>
#
# This script gets the baseline log entries since DATE. DATE should
# be provided in ctime format (eg: 'Thu Jun 12 12:17:28 2003')
import sys
import time
import string
import gsconf
def usage():
print "usage: get_baselines <date>"
print "date must be in ctime format."
sys.exit(1)
if len(sys.argv) == 2:
try:
from_date = time.mktime(time.strptime(sys.argv[1]))
except:
print "ERROR: Could not parse date."
sys.exit(1)
else:
usage()
name=gsconf.baseline_log
try:
baseline_log = open(name,'r')
except:
print "ERROR: cannot open baseline log",name
sys.exit(1)
changes = {}
for line in baseline_log.readlines():
line = line[:-1]
if len(line) == 0:
continue
tokens = string.split(line)
time_tokens=tokens[:5]
time_tokens=string.join(time_tokens)
try:
tm = time.mktime(time.strptime(time_tokens))
except ValueError:
print "bad",tokens
changes[string.join(tokens[5:])] = 1
continue
if from_date <= tm:
changes[string.join(tokens[5:])] = 1
if len(changes) > 0:
keylist=changes.keys()
for k in keylist:
print k
else:
print "No baseline updates."
|