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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
#!/usr/bin/env python
# -*- Mode: python -*-
# Copyright (C) 2001-2012 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., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
# CA 94903, U.S.A., +1(415)492-9861, for further information.
#
#
# make_testdb <dir>
#
# this script creates the gstestdb database and intializes it
# with the md5sums of the test data files run through the
# baseline ghostscript
import gstestgs
import gsconf
import gssum
import gsparamsets
import rasterdb
import anydbm
import os, sys
import string
import gsutil
def make_compare_entry(ifile, device, dpi, band):
ofile = "%s.%s.%d.%d" % (ifile, device, dpi, band)
print "creating entry: " + ofile + "...",
sys.stdout.flush()
gs = gstestgs.Ghostscript()
gs.log_stdout = gsconf.log_stdout
gs.log_stderr = gsconf.log_stderr
gs.command = gsconf.baselinegs
gs.infile = gsconf.comparefiledir + ifile
gs.outfile = ofile
gs.device = device
gs.dpi = dpi
gs.band = band
if not gssum.exists(ofile):
if gs.process():
try:
gssum.add_file(ofile)
rasterdb.put_file(ofile)
os.unlink(ofile)
print "done."
except OSError:
print "no output produced."
else:
print "error."
else:
print "exists."
def make_pdfcompare_entry(ifile, device, dpi, band):
ofile = "%s.pdf.%s.%d.%d" % (ifile, device, dpi, band)
print "creating entry: " + ofile + "...",
sys.stdout.flush()
if gssum.exists(ofile):
print "exists."
return
gs = gstestgs.Ghostscript()
gs.log_stdout = gsconf.log_stdout
gs.log_stderr = gsconf.log_stderr
gs.command = gsconf.baselinegs
gs.infile = gsconf.comparefiledir + ifile
gs.dpi = dpi
gs.band = band
# make file->PDF
tfile = ofile + ".pdf"
gs.outfile = tfile
gs.device = 'pdfwrite'
gs.dpi = None
if not gs.process():
print "error."
return
gs.infile = tfile
gs.outfile = ofile
gs.device = device
gs.dpi = dpi
if gs.process():
try:
gssum.add_file(ofile)
rasterdb.put_file(ofile)
os.unlink(tfile)
os.unlink(ofile)
print "done."
except OSError:
print "no output produced."
else:
print "error."
if __name__ == "__main__":
print "this script is only useful when starting a new database"
print "exit now"
sys.exit(1)
# create the baselinedb
db = anydbm.open(gsconf.baselinedb, 'c')
db.close()
files = os.listdir(gsconf.comparefiledir)
for f in files:
if gsutil.check_extension(f):
for params in gsparamsets.testparamsets:
make_compare_entry(f, params.device, params.resolution, params.banding)
for params in gsparamsets.pdftestparamsets:
make_pdfcompare_entry(f, params.device, params.resolution, params.banding)
|