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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
### jack_rc: read/write config file, a module for
### jack - extract audio from a CD and encode it using 3rd party software
### Copyright (C) 1999-2004 Arne Zellentin <zarne@users.sf.net>
### 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
import sys
import string
import types
import jack_argv
import jack_version
from jack_globals import *
# exported functions:
# load
# save
def read(file):
read_rc = []
try:
f = open(file)
except:
return read_rc
lineno = 0
while 1:
x = f.readline()
if not x:
break
opt = val = com = None
lineno = lineno + 1
x = string.strip(x)
x = string.split(x, "#", 1)
if len(x) > 1:
opt, com = x
else:
opt = x[0]
if opt and com:
opt = string.strip(opt)
if opt:
x = string.split(opt, ":", 1)
if len(x) > 1:
opt, val = x
else:
opt = x[0]
else:
opt = None
read_rc.append([opt, val, com, lineno])
version = get_version(read_rc)
if version != jack_version.prog_rcversion:
warning("config file %s is of unknown version %s." % (file, `version`))
return read_rc
def get_version(rc):
if not rc:
return None
if len(rc[0]) != 4:
return None
opt, val, com, lineno = rc[0]
if opt == None and val == None and lineno == 1:
vers = com.strip().split(":", 1)
if len(vers) != 2:
return None
if vers[0] != "jackrc-version":
return None
ver = int(vers[1])
return ver
else:
return None
def load(cf, file):
rc = read(expand(file))
rc_cf = {}
for i in rc:
if i[0] != None:
if cf.has_key(i[0]):
ret, val = jack_argv.parse_option(cf, i[0:2], 0, i[0], None, origin="rcfile")
if ret != None:
rc_cf[i[0]] = {'val': val}
else:
warning(file + ":%s: " % i[3] + val)
else:
warning(file + ":%s: unknown option `%s'" % (i[3], i[0]))
return rc_cf
def merge(old, new):
old = old[:]
new = new[:]
append = []
remove = []
old.reverse()
for i in range(len(new)):
found = 0
for j in range(len(old)):
if new[i][0] and new[i][0] == old[j][0]:
old[j][:2] = new[i][:2]
found = 1
break
if not found:
append.append(new[i][:2] + [None,])
else:
if new[i][2] == 'toggle':
remove.append(old[j])
for i in remove:
if i[2] != None:
x = old.index(i)
old[x] = [None, None, old[x][2]]
else:
old.remove(i)
old.reverse()
return old + append
def write(file, rc, rcfile_exists = True):
f = open(file, "w")
if not rcfile_exists:
f.write("# jackrc-version:%d\n" % jack_version.prog_rcversion)
for i in rc:
if i[0]:
f.write(i[0])
if i[1] != None:
f.write(":" + i[1])
if i[2] != None:
if i[0] or i[1]:
f.write(" ")
f.write("#" + i[2])
f.write("\n")
def write_yes(x):
if x:
return "yes"
else:
return "no"
def convert(cf):
rc = []
for i in cf.keys():
if cf[i]['type'] == types.StringType:
rc.append([i, cf[i]['val'], None])
elif cf[i]['type'] == types.FloatType:
rc.append([i, `cf[i]['val']`, None])
elif cf[i]['type'] == types.IntType:
rc.append([i, `cf[i]['val']`, None])
elif cf[i]['type'] == 'toggle':
rc.append([i, write_yes(cf[i]['val']), 'toggle'])
elif cf[i]['type'] == types.ListType:
rc.append([i, `cf[i]['val']`, None])
else:
error("don't know how to handle " + `cf[i]['type']`)
return rc
def save(file, cf):
file = expand(file)
rc_cf = {}
for i in cf.keys():
if cf[i].has_key('save') and not cf[i]['save']:
continue
opt = cf[i]
if opt['history'][-1][0] == "argv":
rc_cf[i] = opt
oldrc = read(file)
argvrc = convert(rc_cf)
newrc = merge(oldrc, argvrc)
rcfile_exists = os.path.exists(file)
try:
write(file + ".tmp", newrc, rcfile_exists)
except:
error("can't write config file")
if os.path.exists(file):
os.rename(file, file + "~")
os.rename(file + ".tmp", file)
return len(rc_cf)
|