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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
# paths.py
"""
This module is an integeral part of the program
MMA - Musical Midi Accompaniment.
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
Bob van der Poel <bob@mellowood.ca>
This module contains functions for setting various path variables.
"""
import os
import tempfile
from os import environ
from . import gbl
from MMA.common import *
import MMA.auto
import MMA.grooves
import MMA.exits
import MMA.debug
from MMA.safe_eval import safeEnv
outfile = ''
libPath = []
libDirs = []
incPath = []
plugPaths = []
mmaStart = []
mmaEnd = []
mmaRC = None
def init():
""" Called from main. In mma.py we checked for known directories and
inserted the first found 'mma' directory into the sys.path list and
set MMAdir. Now, set the lib/inc/plug lists. ENV variables are inserted
at the beginning of each path.
"""
def testpaths(paths, msg):
""" Test validity of paths. No errors ...
hope user notices he/she buggered up
"""
for t in paths:
if not os.path.exists(t):
warning("%s '%s' does not exist." % (msg, t))
elif not os.path.isdir(t):
warning("%s '%s' is not a directory." % (msg, t))
# set libpath
t = safeEnv('MMA_LIBPATH')
if t:
t = t.split(os.pathsep)
else:
t = []
t.append(os.path.join(gbl.MMAdir, 'lib'))
setLibPath(t, user=0)
testpaths(libPath, "LIBRARY")
# set incpath
t = safeEnv('MMA_INCPATH')
if t:
t = t.split(os.pathsep)
else:
t = []
t.append(os.path.join(gbl.MMAdir, 'includes'))
setIncPath(t)
testpaths(incPath, "INCLUDE")
# set plugpaths
t = safeEnv('MMA_PLUGPATH')
if t:
t = t.split(os.pathsep)
else:
t = []
t.append(os.path.join(gbl.MMAdir, "plugins"))
setPlugPath(t)
testpaths(plugPaths, "PLUGIN")
##################################
# Set up the mma start/end paths
def mmastart(ln):
""" Set/append to the mmastart list. """
if not ln:
error("Use: MMAstart FILE [file...]")
for a in ln:
gbl.mmaStart.append(MMA.file.fixfname(a))
if MMA.debug.debug:
dPrint("MMAstart set to: %s" % gbl.mmaStart)
def mmaend(ln):
""" Set/append to the mmaend list. """
if not ln:
error("Use: MMAend FILE [file...]")
for a in ln:
gbl.mmaEnd.append(MMA.file.fixfname(a))
if MMA.debug.debug:
dPrint("MMAend set to: %s" % gbl.mmaEnd)
def setRC(f):
""" Set a rc file from the command line."""
global mmaRC
mmaRC = f
######################################
# process the RC, mmastart and mmaend files. Called from main.py
def readRC():
""" Process all RC files. """
docOption = gbl.createDocs # Disable doc printing for RC file
gbl.createDocs = 0
if mmaRC:
rcfiles = [mmaRC]
else:
rcfiles = ('mmarc', 'c:\\mma\\mmarc',
'~/.config/mma/mmarc', '~/.mmarc',
'/usr/local/etc/mmarc', '/etc/mmarc')
readDone = 0
for i in rcfiles:
f = MMA.file.locFile(i, None)
if f:
if MMA.debug.showrun:
dPrint("Reading RC file '%s'" % f)
MMA.parse.parseFile(f)
readDone = 1
break
else:
if mmaRC:
error("Specified init file '%s' not found" % mmaRC)
if not readDone and MMA.debug.debug:
gbl.lineno = -1
warning("No RC file was found or processed")
gbl.createDocs = docOption # Restore doc options
def dommaStart():
""" Process all the mma start files. """
for f in mmaStart:
fn = findIncFile(f)
if not fn:
warning("MmaStart file '%s' not found/processed" % f)
else:
MMA.parse.parseFile(fn)
gbl.lineno = -1 # reset for real code
def dommaEnd():
""" Process all the mma end files."""
for f in mmaStart:
fn = findIncFile(f)
if not fn:
warning("MmaStart file '%s' not found/processed" % f)
else:
MMA.parse.parseFile(fn)
gbl.lineno = -1 # reset for real code
#######################################
# Search the paths for a file.
def findIncFile(fn):
""" Find an INC file. Returns complete path or NULL."""
global incPath
for lib in incPath:
path = MMA.file.locFile(fn, lib)
if path:
return path
return None
def findLibFile(fn):
""" Find a LIB file. Returns complete path or NULL."""
global libDirs
if not libDirs:
expandLib()
for lib in libDirs:
path = MMA.file.locFile(fn, lib)
if path:
return path
return None
##############################################
# Set up the lib/inc paths
def setLibPath(ln, user=1):
""" Set the LibPath variable. """
global libPath, libDirs
libPath = []
libDirs = []
for l in ln:
f = MMA.file.fixfname(l)
libPath.append(f)
expandLib(user)
if MMA.debug.debug:
dPrint("LibPath set: %s" % ' '.join(libPath))
def expandLib(user=0):
""" Expand the library paths from the list in libdir. """
global libPath, libDirs
scount = 0
# Parse all the lib trees. Root trees are included into our list
libDirs = []
for f in libPath:
for root, dir, files in os.walk(f):
if root not in libDirs:
if os.path.basename(root) == 'stdlib':
scount += 1
if not user: # system init, stdlib goes first
libDirs.insert(0, root)
else:
libDirs.append(root)
continue
libDirs.append(root)
if not scount and not user:
warning("Your library set does not have a 'stdlib'.")
# forget about previously loaded mma lib databases
MMA.auto.grooveDB = []
if MMA.debug.debug:
dPrint("LibPath expansion set to: %s" % ' '.join(libDirs))
def setIncPath(ln):
""" Set the IncPath variable. """
global incPath
incPath = []
for l in ln:
f = MMA.file.fixfname(l)
incPath.append(f)
if MMA.debug.debug:
dPrint("IncPath set: %s" % ' '.join(incPath))
###########################################
# Output pathname
def setOutPath(ln):
""" Set the Outpath variable. """
if not ln:
gbl.outPath = ""
elif len(ln) > 1:
error("Use: SetOutPath PATH")
else:
gbl.outPath = MMA.file.fixfname(ln[0])
if MMA.debug.debug:
dPrint("OutPath set to '%s'" % gbl.outPath)
def createOutfileName(extension):
""" Create the output filename.
Called from the mainline, below and from lyrics karmode.
If outfile was specified on cmd line then leave it alone.
Otherwise ...
1. strip off the extension if it is .mma,
2. append .mid
"""
global outfile
if gbl.playFile and gbl.outfile:
error("You cannot use the -f option with -P")
if gbl.outfile:
outfile = gbl.outfile
elif gbl.playFile:
_, outfile = tempfile.mkstemp(prefix="MMA_", suffix=".mid")
MMA.exits.files.append(outfile)
else:
outfile, ext = os.path.splitext(gbl.infile)
if ext != gbl.EXT:
outfile = gbl.infile
outfile += extension
outfile = MMA.file.fixfname(outfile)
##############################################
# Set up the plugin paths
def setPlugPath(ln):
""" Set the plugPath variable. """
global plugPaths
plugPaths = []
for l in ln:
plugPaths.append( MMA.file.fixfname(l) )
if MMA.debug.debug:
dPrint("PlugPath set: %s" % ' '.join(plugPaths))
|