3 # gpiv_series - Processes a set of numbered input data
5 # Copyright (C) 2008 Gerber van der Graaf
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software Foundation,
19 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 #--------------------------------------------------------------------
25 # This version is for serial processing
30 #----------- Command line arguments parser
32 from optparse
import OptionParser
34 usage
= "%prog [options] \"process\""
35 parser
= OptionParser(usage
)
36 parser
.add_option("-a", "--arg_n",
37 action
="store_true", dest
="arg_n", default
=False,
38 help="if the process needs the current number in its \
39 argument list instead of prepending/appending it to the \
40 filebase name, the number will be put before (-f) \
41 \"filename\" in the \"process\" string.")
42 parser
.add_option("-b", "--basename", type='string', dest
="basename",
43 help="File basename for reading", metavar
="FILE")
44 parser
.add_option("-e", "--ext", type='string', dest
="ext", metavar
="EXT",
45 help="add an extension after the file basename + number (without leading \".\")")
46 parser
.add_option("-f", "--first", type='int', dest
="first_nr", default
=0,
47 help="first numbered file (default: 0)", metavar
="N")
48 parser
.add_option("-l", "--last", type='int', dest
="last_nr", default
=0,
49 help="last numbered file(default: 0)", metavar
="N")
50 parser
.add_option("-i", "--incr", type='int', dest
="incr_nr", default
=1,
51 help="increment file number (default: 1)", metavar
="N")
52 parser
.add_option("-p", "--print",
53 action
="store_true", dest
="pri", default
=False,
54 help="prints process parameters/variables to stdout")
55 parser
.add_option("--pad", type='int', dest
="pad0", default
=0,
56 help="padding number with zero's (default: 0)", metavar
="N")
57 parser
.add_option("-s", "--subst_fname",
58 action
="store_true", dest
="subst_fname", default
=False,
59 help="substitutes all occurences \"FNAME\" in the \"process\" string by the actual \
60 file basename. The option --arg_n will not have effect")
61 parser
.add_option("-n", "--none",
62 action
="store_true", dest
="none", default
=False,
63 help="suppresses real execution")
64 parser
.add_option("-x", "--prefix", action
="store_true", dest
="prefix", default
=False,
65 help="prefix numbering to file basename")
67 (options
, args
) = parser
.parse_args()
69 parser
.error("incorrect number of arguments")
75 #----------- Function definitions
77 def pri_date(msg
= "Time stamp at start of series processing:"):
81 msg -- message to be printed before time stamp
83 if options
.pri
== True:
93 """Counts number of digits from a number
96 nr -- number to be questioned
106 """Created a string for zero padding
109 nr -- number of zeros to be padded
112 for i
in range(0, nr
):
118 def compose_name_nr(nr
):
119 """Creates proper name from basename and number.
122 nr -- number of filename to be processed
125 ndig
=count_digits(nr
)
126 null_str
=pad0(options
.pad0
- ndig
)
127 nr_str
=null_str
+str(nr
)
133 name
=str(options
.basename
)
135 name
=nr_str
+str(options
.basename
)
138 name
=str(options
.basename
)
140 name
=str(options
.basename
)+nr_str
142 if str(options
.ext
) != "None":
143 name
=str(name
)+str(".")+str(options
.ext
)
148 def compose_cmd(name
, nr
):
149 """Creates proper command.
152 name -- complete filename
155 # Eventually, substitutes "-f" with: "nr -f"
157 command_tmp
=re
.sub("-f", str(nr
)+" -f", command
)
158 if command_tmp
!= command
:
159 command
= str(command_tmp
)+" "+str(name
)
161 command
= str(command_tmp
)+" "+str(nr
)+" "+str(name
)
163 # Eventually, substitutes "FNAME" with the file base name
164 if options
.subst_fname
:
165 command
=re
.sub("FNAME", str(name
), str(process
))
167 command
=str(command
)+" "+str(name
)
172 def proc_series_ser():
173 """Processes a series on identic numbered files.
175 for i
in range(options
.first_nr
, options
.last_nr
+1, options
.incr_nr
):
176 name_nr
= compose_name_nr(i
)
177 command
= compose_cmd(name_nr
, i
)
179 if options
.pri
== True: print command
180 elif options
.none
== True: print command
181 if options
.none
== False: os
.system(command
)
185 #----------- Calling functions
187 if options
.pri
== True: pri_date()
188 elif options
.none
== True: pri_date()
190 if options
.pri
== True: pri_date(msg
= "Time stamp at end of series processing:")
191 elif options
.none
== True: pri_date(msg
= "Time stamp at end of series processing:")
193 #----------- That's all folks