File: regen_filelist.py

package info (click to toggle)
ghostscript 9.06~dfsg-2%2Bdeb8u7
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 62,484 kB
  • sloc: ansic: 440,074; python: 4,915; cpp: 3,565; sh: 2,520; tcl: 1,482; perl: 1,374; makefile: 421; lisp: 407; awk: 66; yacc: 18
file content (89 lines) | stat: -rwxr-xr-x 3,264 bytes parent folder | download | duplicates (13)
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
#!/usr/bin/python
# -*- Mode: python -*-

# change name of baseline db to baseline db.now
# create new baseline db (anydbm)
# regenerate baseline checksums from checksum raster files
# for all files in raster directory
# calculate checksum
# add filename and checksum to db

import os, time, optparse, myoptparse, gsconf, gssum, anydbm, rasterdb, re

def regen_baseline(rasterdir,workdir,baselinedbname,filelist,options=None):
    if options == None:
        myself="regen_baseline.py"
    else:
        myself=options.myself

    if filelist:               # filelist may be a subset of the files in rasterdir
        print filelist
        f=open(filelist)
        rasterfiles=f.readlines()
        f.close
        print rasterfiles
    else:
        rasterfiles = os.listdir(rasterdir)
        rasterfiles.sort()

    if not os.path.exists(workdir):
        os.mkdir(workdir)

    total=len(rasterfiles)
    all=0
    print "%50s %s %i" % (rasterdir,"total files",total)
    gzmatch=re.compile('.*gz$')
    for rasterfile_raw in rasterfiles:
        if options.verbose: print "try",rasterfile_raw
        fullname=rasterdir+rasterfile_raw
        if not os.path.isfile(fullname):
            print myself,"ignoring (not regular file)",fullname
            continue
        if not gzmatch.match(rasterfile_raw):
            print myself,"ignoring (not gz)",rasterfile_raw
            continue

        rasterfile=rasterfile_raw.replace(".gz","")
        rasterfilepath=workdir+rasterfile
        if not gssum.exists(rasterfile,baselinedbname):
            if not os.path.exists(rasterfilepath):
                if options.verbose: print "gz ",rasterfile_raw
                rasterdb.get_file(rasterfile,rasterdir,output=rasterfilepath)
            if options.verbose: print rasterfilepath
            gssum.add_file(rasterfilepath,baselinedbname)
            all+=1
            if options.verbose: print "%100s %i %s %i" % (rasterfile,all,"of",total)
            if options.delete and os.path.exists(rasterfilepath):
                os.unlink(rasterfilepath)


if __name__ == "__main__":

    optionsParser=optparse.OptionParser()
    optionsParser.add_option('--delete','-d',action='store_true',help="delete intermediate raster files")
    (options,arguments)=myoptparse.parseCommandLine(optionsParser,
                                                    revisionSkip=True,
                                                    deviceSkip=True,
                                                    testfileSkip=True,
                                                    )

    if len(arguments) > 0:
        filelist=arguments.pop(0)
    else:
        filelist=None

    now=time.strftime("%Y-%m-%d-%H:%M:%S", time.localtime())
    print options.myself,now

    baselinedb=gsconf.baselinedb
    if not options.nocleanup:
        if os.path.exists(baselinedb):
            baselinedb_backup=baselinedb+"."+now
            print "saving",baselinedb,"to",baselinedb_backup
            os.rename(baselinedb,baselinedb_backup)
    else:
        print options.myself,"no cleanup, use existing baseline database"

    print baselinedb
    db = anydbm.open(baselinedb, 'c')
    regen_baseline(gsconf.rasterdbdir,gsconf.workdir,baselinedb,filelist=filelist,options=options)