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 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
|
import os
import sys
import atexit
import traceback
import shutil
import zipfile
from optparse import OptionParser
import logging
NOTICE = 25 # added level for app
try:
import markdown
except ImportError:
print("ERROR: Unable to import markdown the markup parser.")
print(" Make sure that markdown has been installed")
print(" see the ReadMe.txt for more information")
raise
from helpparsers import Stage2Parser, Stage3Parser, Stage4Parser, Stage5Parser
from utilfunctions import change_filename
def main(argv):
parser = OptionParser(usage="%prog <jobtype> <outfile> <indir> [options]")
parser.add_option("-t", "--temp",
help="use TEMPDIR to store the intermedite build files",
metavar="TEMPDIR")
parser.add_option("-q", "--quiet", action="store_true",
dest="quiet", default=False,
help="don't print most status messages to stdout")
parser.add_option("-d", "--debug", action="store_true",
default=False, help="print debugging information to the screen")
parser.add_option("-c", "--cfile", default=None, dest="carrayfilename",
metavar="FILE", help="filename to output the c array to. Defaults to same folder as outfile.")
parser.add_option("-a", "--alwaysbuild", action="store_true",
default=False, dest="always_build",
help="when building, builder should always build source files. (Usally used with filesystems that do not update the modified time)")
(options, args) = parser.parse_args(argv)
if len(args) != 4 :
parser.error("Incorrect number of arguments")
options.type = args[1]
options.outfile = os.path.normpath(args[2])
options.indir = os.path.normpath(args[3])
loglevel=logging.INFO
logging.addLevelName(NOTICE, "NOTICE")
if options.quiet:
loglevel=NOTICE
elif options.debug:
loglevel=logging.DEBUG
logging.basicConfig(level=loglevel, format='%(levelname)7s:%(message)s')
if options.type == "build":
pass
elif options.type == "rebuild":
pass
elif options.type == "clean":
pass
else:
parser.error("jobtype must be one of: build, rebuild, or clean")
if not options.temp:
logging.info("No working directory set. Creating one in system temp.")
options.temp = tempfile.mkdtemp()
def cleanup(dir):
if os.path.exists(dir):
shutil.rmtree(options.temp, onerror=rmtree_error_handler)
atexit.register(cleanup, options.temp)
logging.debug("Doing a '%s'", options.type)
logging.debug("Using '%s' as working directory", options.temp )
logging.debug("Using '%s' as output file", options.outfile )
logging.debug("Using '%s' as input directory", options.indir )
if options.type == "build":
ret = call_logging_exceptions(build, options)
elif options.type == "rebuild":
ret = call_logging_exceptions(rebuild, options)
else:
ret = call_logging_exceptions(clean, options)
sys.exit(ret)
def call_logging_exceptions(func, *args, **kwargs):
"""Protects the caller from all exceptions that occur in the callee. Logs the exceptions that do occur."""
try:
func(*args, **kwargs)
except:
( type, value, tb ) = sys.exc_info()
logging.error("***EXCEPTION:")
logging.error(" %s: %s", type.__name__, value)
for filename, line, function, text in traceback.extract_tb(tb):
logging.error("%s:%d %s", os.path.basename(filename), line, function)
logging.error(" %s", text)
del tb
return 1
return 0
def rebuild(options):
logging.log(NOTICE, "Rebuilding")
ret = call_logging_exceptions(clean, options)
if ret != 0:
return ret
ret = call_logging_exceptions(build, options)
return ret
def clean(options):
logging.log(NOTICE, "Cleaning..")
logging.info("Removing outfile: %s", options.outfile )
if os.path.exists(options.outfile):
if os.path.isfile(options.outfile):
os.remove(options.outfile)
else:
logging.error(" <outfile> is not a file. Make sure your parameters are in the correct order")
sys.exit(2)
else:
logging.info(" Outfile (%s) does not exist", options.outfile)
logging.info("Removing workdirectory: %s", options.temp )
if os.path.exists(options.temp):
if os.path.isdir(options.temp):
shutil.rmtree(options.temp, onerror=rmtree_error_handler)
else:
logging.error("tempdir is not a file. Make sure your parameters are in the correct order")
sys.exit(2)
else:
logging.info(" Work directory (%s) does not exist", options.temp)
def rmtree_error_handler(function, path, excinfo):
if function == os.remove:
logging.warning(" Unable to remove %s", path)
elif function == os.rmdir:
logging.warning(" Unable to remove directory %s", path)
else:
(type, value, tb) = excinfo
logging.error("***EXCEPTION:")
logging.error(" %s: %s", type.__name__, value)
for filename, line, function, text in traceback.extract_tb(tb):
logging.error("%s:%d %s", os.path.basename(filename), line, function)
logging.error(" %s", text)
def build(options):
"""Compiles the files in options.indir to the archive output options.outfile.
Compiled in several stages:
stage1: Transform all input files with markdown placing the results into options.temp+"/stage1".
stage2: Parses and strips the output of stage1 to build the list that will be made into the c-array that contains the compiled names for the detailed help of each control.
stage3: Parses the output of stage2 to grab the images that are refered to in the the output of stage1
stage4: Parses the output of stage1 to fix the relative hyperlinks in the output so that they will refer correctly to the correct files when in output file.
stage5: Generate the index and table of contents for the output file from the output of stage4.
stage6: Zip up the output of stage5 and put it in the output location.
"""
logging.log(NOTICE, "Building...")
files = generate_paths(options)
if should_build(options, files):
input_files = generate_input_files_list(options)
helparray = list()
extrafiles = list()
logging.log(NOTICE, " Processing input files:")
for file in input_files:
logging.log(NOTICE, " %s", file)
logging.info(" Stage 1")
name1 = process_input_stage1(file, options, files)
logging.info(" Stage 2")
name2 = process_input_stage2(name1, options, files, helparray)
logging.info(" Stage 3")
name3 = process_input_stage3(name2, options, files, extrafiles)
logging.info(" Stage 4")
name4 = process_input_stage4(name3, options, files)
logging.info(" Stage 5")
process_input_stage5(options, files, extrafiles)
logging.info(" Stage 6")
process_input_stage6(options, files)
logging.info(" Generating .cpp files")
generate_cpp_files(options, files, helparray)
logging.log(NOTICE, "....Done.")
else:
logging.log(NOTICE, " Up to date.")
def generate_paths(options):
"""Generates the names of the paths that will be needed by the compiler during it's run, storing them in a dictionary that is returned."""
paths = dict()
for i in range(1, 7):
paths['stage%d'%(i)] = os.path.join(options.temp, 'stage%d'%(i))
for path in paths.values():
if not os.path.exists(path):
logging.debug(" Making %s", path)
os.makedirs(path)
return paths
def should_build(options, files):
"""Checks the all of the files touched by the compiler to see if we need to rebuild. Returns True if so."""
if options.always_build:
return True
elif not os.path.exists(options.outfile):
return True
elif options.carrayfilename != None and not os.path.exists(options.carrayfilename):
return True
elif check_source_newer_than_outfile(options, files):
return True
return False
def check_source_newer_than_outfile(options, files):
"""Checks to see if any file in the source directory is newer than the output file."""
try:
outfile_time = os.path.getmtime(options.outfile)
for dirpath, dirnames, filenames in os.walk(options.indir):
for file in filenames:
filepath = os.path.join(dirpath, file)
if os.path.getmtime(filepath) > outfile_time:
logging.info("%s has been changed since outfile. Causing build", filepath)
return True
elif os.path.getctime(filepath) > outfile_time:
logging.info("%s has been created since outfile. Causing build", filepath)
return True
except OSError:
logging.warning("Encountered a file (%s) that the os does not like. Forcing build.", "TODO")
return True
return False
def generate_input_files_list(options):
"""Returns a list of all input (.help) files that need to be parsed by markdown."""
return generate_file_list(options.indir, ".help")
def generate_file_list(directory, extension):
file_list = list()
for path, dirs, files in os.walk(directory):
for file in files:
if os.path.splitext(file)[1] == extension:
# I only want the .help files
file_list.append(os.path.join(path, file))
return file_list
def process_input_stage1(file, options, files):
infile = open(file, mode="r")
input = infile.read()
infile.close()
md = markdown.Markdown(
extensions=['toc']
)
output = md.convert(input)
outfile_name = change_filename(file, ".stage1", options.indir, files['stage1'])
outfile = open(outfile_name, mode="w")
outfile.write(output)
outfile.close()
return outfile_name
def process_input_stage2(file, options, files, helparray):
infile = open(file, mode="r")
input = infile.read()
infile.close()
outname = change_filename(file, ".stage2", files['stage1'], files['stage2'])
outfile = open(outname, mode="w")
parser = Stage2Parser(file=outfile)
parser.feed(input)
parser.close()
outfile.close()
if len(parser.control) > 0:
filename_in_archive = change_filename(outname, ".htm", files['stage2'], ".", makedirs=False)
for control in parser.control:
helparray.append((control, filename_in_archive))
logging.debug(" Control name %s", control)
return outname
def process_input_stage3(file, options, files, extrafiles):
infile = open(file, mode="r")
input = infile.read()
infile.close()
outname = change_filename(file, ".stage3", files['stage2'], files['stage3'])
outfile = open(outname, mode="w")
#figure out what subdirectory of the onlinehelp I am in
subdir = os.path.dirname(outname).replace(os.path.normpath(files['stage3']), "")
if subdir.startswith(os.path.sep):
subdir = subdir.replace(os.path.sep, "", 1) # I only want to remove the leading sep
parser = Stage3Parser(options, files, file=outfile, extrafiles=extrafiles, subdir=subdir)
parser.feed(input)
parser.close()
outfile.close()
return outname
def process_input_stage4(file, options, files):
"""Fix the a tags so that they point to the htm files that will be in the output archive."""
infile = open(file, mode="r")
input = infile.read()
infile.close()
outname = change_filename(file, ".stage4", files['stage3'], files['stage4'])
outfile = open(outname, mode="w")
#figure out what subdirectory of the onlinehelp I am in
subdir = os.path.dirname(outname).replace(os.path.normpath(files['stage4']), "")
if subdir.startswith(os.path.sep):
subdir = subdir.replace(os.path.sep, "", 1) # I only want to remove the leading sep
parser = Stage4Parser(files=files, file=outfile, options=options,
subdir=subdir)
parser.feed(input)
parser.close()
outfile.close()
return outname
def process_input_stage5(options, files, extrafiles):
"""Generate the index and table of contents for the output file from the output of stage4."""
# write header file
headerfile_name = os.path.join(files['stage5'], "header.hhp")
headerfile = open(headerfile_name, mode="w")
headerfile.write(
"""Contents file=%(contents)s\nIndex file=%(index)s\nTitle=%(title)s\nDefault topic=%(default)s\nCharset=UTF-8\n""" %
{ "contents": "contents.hhc",
"index": "index.hhk",
"title": "wxLauncher User Guide",
"default": "index.htm"
})
headerfile.close()
# generate both index and table of contents
tocfile_name = os.path.join(files['stage5'], "contents.hhc")
tocfile = open(tocfile_name, mode="w")
tocfile.write("<ul>\n")
toclevel = 1
indexfile_name = os.path.join(files['stage5'], "index.hhk")
indexfile = open(indexfile_name, mode="w")
indexfile.write("<ul>\n")
help_files = generate_file_list(files['stage4'], ".stage4")
last_path_list = []
for path, dirs, thefiles in os.walk(files['stage4']):
"""new directory. If the directory is not the base directory then check if there will be an index.htm for this directory.
If there is an index.htm then parse it for the title so that the subsection will have the title of the index.htm as the name of the subsection.
If there is no index.htm then make a default one and use the name of the directory as the subsection name.
Note that this algorithm requires that os.walk generates the names in alphabetical order."""
# relativize directory path for being in the archive
path_list = find_path_in_archive(path, files['stage4'])
logging.debug("Processing directory '%s'", os.path.sep.join(path_list))
if len(path_list) == 1 and path_list[0] == '':
path_list = []
level = len(path_list)
# parse the index.help to get the name of the section
index_file_name = os.path.join(path, "index.stage4")
# relativize filename for being in the archive
index_in_archive = change_filename(index_file_name, ".htm", files['stage4'], ".", False)
index_in_archive = index_in_archive.replace(os.path.sep, "/") # make the separators the same so that it doesn't matter what platform the launcher is built on.
# find the title
outindex_name = change_filename(index_file_name, ".htm", files['stage4'], files['stage5'])
outindex = open(outindex_name, mode="w")
inindex = open(index_file_name, mode="r")
input = inindex.read()
inindex.close()
parser = Stage5Parser(file=outindex)
parser.feed(input)
parser.close()
outindex.close()
tocfile.write(generate_sections(path_list, last_path_list,index_filename=index_in_archive, section_title=parser.title))
last_path_list = path_list
if level > 0:
# remove index.htm from thefiles because they are used by the section names
try:
thefiles.remove('index.stage4')
except ValueError:
logging.warning("Directory %s does not have an index.help",
os.path.sep.join(path_list))
for file in thefiles:
full_filename = os.path.join(path, file)
# relativize filename for being in the archive
filename_in_archive = change_filename(full_filename, ".htm", files['stage4'], ".", False)
# find the title
outfile_name = change_filename(full_filename, ".htm", files['stage4'], files['stage5'])
outfile = open(outfile_name, mode="w")
infile = open(full_filename, mode="r")
input = infile.read()
infile.close()
parser = Stage5Parser(file=outfile)
parser.feed(input)
parser.close()
outfile.close()
tocfile.write(
"""%(tab)s<li> <object type="text/sitemap">\n%(tab)s <param name="Name" value="%(name)s">\n%(tab)s <param name="Local" value="%(file)s">\n%(tab)s </object>\n""" % {
"tab": " "*level,
"name": parser.title,
"file": filename_in_archive, })
indexfile.write(
"""%(tab)s<li> <object type="text/sitemap">\n%(tab)s\t<param name="Name" value="%(name)s">\n%(tab)s\t<param name="Local" value="%(file)s">\n%(tab)s </object>\n""" % {
"tab": "\t",
"name": parser.title,
"file": filename_in_archive, })
tocfile.write(generate_sections([], last_path_list))
tocfile.write("</ul>\n")
tocfile.close()
indexfile.close()
# copy the extra files (i.e. images) from stage3
for extrafilename in extrafiles:
logging.debug(" Copying: %s", extrafilename)
dst = change_filename(extrafilename, None, orginaldir=files['stage3'], destdir=files['stage5'])
shutil.copy2(extrafilename, dst)
def generate_sections(path_list, last_path_list, basetab=0, orginal_path_list=None, index_filename=None, section_title=None):
"""Return the string that will allow me to write in the correct section."""
logging.debug(" generate_sections(%s, %s, %d, %s)", str(path_list), str(last_path_list), basetab, orginal_path_list)
if orginal_path_list == None:
orginal_path_list = path_list
if len(path_list) > 0 and len(last_path_list) > 0 and path_list[0] == last_path_list[0]:
logging.debug(" matches don't need to do anything")
return generate_sections(path_list[1:], last_path_list[1:], basetab+1, orginal_path_list, index_filename, section_title)
elif len(path_list) > 0 and len(last_path_list) > 0:
logging.debug(" go down then up")
s = generate_sections([], last_path_list, basetab, orginal_path_list, index_filename, section_title)
s += generate_sections(path_list, [], basetab, orginal_path_list, index_filename, section_title)
return s
elif len(path_list) > 0 and len(last_path_list) == 0:
logging.debug(" go up (deeper)")
if index_filename == None:
raise Exception("index_filename is None")
if section_title == None:
title = path_list[len(path_list)-1]
else:
title = section_title
s = ""
for path in path_list:
s += """%(tab)s<li> <object type="text/sitemap">\n%(tab)s <param name="Name" value="%(name)s">\n%(tab)s <param name="Local" value="%(file)s">\n%(tab)s </object>\n%(tab)s <ul>\n""" % {
"tab": " "*basetab,
"name": title,
"file": index_filename }
return s
elif len(path_list) == 0 and len(last_path_list) > 0:
logging.debug(" do down")
s = ""
basetab += len(last_path_list)
for path in last_path_list:
s += """%(tab)s</ul>\n""" % { 'tab': " "*(basetab) }
basetab -= 1
return s
elif len(path_list) == 0 and len(last_path_list) == 0:
logging.debug(" both lists empty, doing nothing")
return ''
else:
raise Exception("Should never get here")
return ""
def find_path_in_archive(pLeft, pRight):
"""Return the parts of the path that is in 'pLeft' but not in 'pRight'"""
pLeft = os.path.normpath(pLeft)
pRight = os.path.normpath(pRight)
lLeft = pLeft.split(os.path.sep)
lRight = pRight.split(os.path.sep)
return find_path_in_archive_helper(lLeft, lRight)
def find_path_in_archive_helper(lLeft, lRight):
logging.debug("make_path_in_archive_helper(%s, %s)",
str(lLeft), str(lRight))
if len(lLeft) > 0 and len(lRight) > 0 and lLeft[0] == lRight[0]:
return find_path_in_archive_helper(lLeft[1:], lRight[1:])
elif len(lLeft) > 0 and len(lRight) == 0:
return lLeft
else:
return []
def process_input_stage6(options, stage_dirs):
#make sure that the directories exist before creating file
outfile_path = os.path.dirname(options.outfile)
if os.path.exists(outfile_path):
if os.path.isdir(outfile_path):
pass
else:
log.error(" %s exists but is not a directory", outfile_path)
else:
os.makedirs(outfile_path)
outzip = zipfile.ZipFile(options.outfile, mode="w", compression=zipfile.ZIP_DEFLATED)
for path, dirs, files in os.walk(stage_dirs['stage5']):
for filename in files:
full_filename = os.path.join(path, filename)
arcname = change_filename(full_filename, None, stage_dirs['stage5'], ".", False)
logging.debug(" Added %s as %s", full_filename, arcname)
outzip.write(full_filename, arcname)
outzip.close()
def enum_directories(dir):
ret = os.path.dirname(dir).split(os.path.sep)
if len(ret) == 1 and len(ret[0]) == 0:
ret = list()
logging.debug(" Enum directories %s", str(ret))
return ret
def generate_cpp_files(options, files, helparray):
if options.carrayfilename == None:
defaultname = os.path.join(os.path.dirname(options.outfile), "helplinks.cpp")
logging.info("Filename for c-array has not been specified.")
logging.info(" using default %s" % (defaultname))
options.carrayfilename = defaultname
logging.log(NOTICE, "Writing to %s", options.carrayfilename)
outfile = open(options.carrayfilename, mode="w")
outfile.write("// Generated by scripts/onlinehelpmaker.py\n")
outfile.write("// GENERATED FILE - DO NOT EDIT\n")
for id, location in helparray:
outfile.write("""{%s,_T("%s")},\n""" %
( id, location.replace(os.path.sep, "/")))
outfile.close()
if __name__ == "__main__":
main(sys.argv)
|