changeset 31:0a2ddc9f2e0b

Simplifying template arguments - Command Line arguments have slightly changed (will require controller git update) - In preparation for JSON I/O
author Jacob Alexander <haata@kiibohd.com>
date Sat, 21 Feb 2015 23:19:35 -0800
parents 2aa96be4e395
children 8b82e0ceac05
files examples/simpleExample.kll kll.py kll_lib/backends.py
diffstat 3 files changed, 46 insertions(+), 68 deletions(-) [+]
line wrap: on
line diff
--- a/examples/simpleExample.kll	Sat Feb 21 21:45:20 2015 -0800
+++ b/examples/simpleExample.kll	Sat Feb 21 23:19:35 2015 -0800
@@ -1,7 +1,8 @@
-Name = colemak;
-Author = "HaaTa (Jacob Alexander) 2014";
-KLL = 0.2a;
+Name = "Simple Example";
+Author = "HaaTa (Jacob Alexander) 2014-2015";
+KLL = 0.3a;
 
+usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );
 #S0x40 : U0x43;
 S0x40 : U"Backspace";
 
--- a/kll.py	Sat Feb 21 21:45:20 2015 -0800
+++ b/kll.py	Sat Feb 21 23:19:35 2015 -0800
@@ -90,18 +90,14 @@
 		help="Specify .kll files to generate partial map, multiple files per flag.\n"
 		"Each -p defines another partial map.\n"
 		"Base .kll files (that define the scan code maps) must be defined for each partial map." )
-	pArgs.add_argument( '-t', '--template', type=str, default="templates/kiibohdKeymap.h",
+	pArgs.add_argument( '-t', '--templates', type=str, nargs='+',
+		default=["templates/kiibohdKeymap.h", "templates/kiibohdDefs.h"],
 		help="Specify template used to generate the keymap.\n"
-		"Default: templates/kiibohdKeymap.h" )
-	pArgs.add_argument( '--defines-template', type=str, default="templates/kiibohdDefs.h",
-		help="Specify template used to generate kll_defs.h.\n"
-		"Default: templates/kiibohdDefs.h" )
-	pArgs.add_argument( '-o', '--output', type=str, default="generatedKeymap.h",
+		"Default: templates/kiibohdKeymap.h templates/kiibohdDefs.h" )
+	pArgs.add_argument( '-o', '--outputs', type=str, nargs='+',
+		default=["generatedKeymap.h", "kll_defs.h"],
 		help="Specify output file. Writes to current working directory by default.\n"
-		"Default: generatedKeymap.h" )
-	pArgs.add_argument( '--defines-output', type=str, default="kll_defs.h",
-		help="Specify output path for kll_defs.h. Writes to current working directory by default.\n"
-		"Default: kll_defs.h" )
+		"Default: generatedKeymap.h kll_defs.h" )
 	pArgs.add_argument( '-h', '--help', action="help",
 		help="This message." )
 
@@ -128,7 +124,7 @@
 		for filename in partial:
 			checkFileExists( filename )
 
-	return (baseFiles, defaultFiles, partialFileSets, args.backend, args.template, args.defines_template, args.output, args.defines_output)
+	return (baseFiles, defaultFiles, partialFileSets, args.backend, args.templates, args.outputs)
 
 
 
@@ -588,7 +584,7 @@
 ### Main Entry Point ###
 
 if __name__ == '__main__':
-	(baseFiles, defaultFiles, partialFileSets, backend_name, template, defines_template, output, defines_output) = processCommandLineArgs()
+	(baseFiles, defaultFiles, partialFileSets, backend_name, templates, outputs) = processCommandLineArgs()
 
 	# Look up git information on the compiler
 	gitRev, gitChanges = gitRevision( os.path.dirname( os.path.realpath( __file__ ) ) )
@@ -596,7 +592,7 @@
 	# Load backend module
 	global backend
 	backend_import = importlib.import_module( "backends.{0}".format( backend_name ) )
-	backend = backend_import.Backend( template, defines_template )
+	backend = backend_import.Backend( templates )
 
 	# Process base layout files
 	for filename in baseFiles:
@@ -641,7 +637,7 @@
 	)
 
 	# Generate output file using template and backend
-	backend.generate( output, defines_output )
+	backend.generate( outputs )
 
 	# Successful Execution
 	sys.exit( 0 )
--- a/kll_lib/backends.py	Sat Feb 21 21:45:20 2015 -0800
+++ b/kll_lib/backends.py	Sat Feb 21 23:19:35 2015 -0800
@@ -38,28 +38,24 @@
 class BackendBase:
 	# Initializes backend
 	# Looks for template file and builds list of fill tags
-	def __init__( self, templatePath, definesTemplatePath ):
-		# Does template exist?
-		if not os.path.isfile( templatePath ):
-			print ( "{0} '{1}' does not exist...".format( ERROR, templatePath ) )
-			sys.exit( 1 )
-
-		self.definesTemplatePath = definesTemplatePath
-		self.templatePath = templatePath
+	def __init__( self, templatePaths=[] ):
+		self.templatePaths = templatePaths
 		self.fill_dict = dict()
 
-		# Generate list of fill tags
+		# Process each template and add to tagList
 		self.tagList = []
-		with open( templatePath, 'r' ) as openFile:
-			for line in openFile:
-				match = re.findall( '<\|([^|>]+)\|>', line )
-				for item in match:
-					self.tagList.append( item )
-		with open( definesTemplatePath, 'r' ) as openFile:
-			for line in openFile:
-				match = re.findall( '<\|([^|>]+)\|>', line )
-				for item in match:
-					self.tagList.append( item )
+		for templatePath in templatePaths:
+			# Does template exist?
+			if not os.path.isfile( templatePath ):
+				print ( "{0} '{1}' does not exist...".format( ERROR, templatePath ) )
+				sys.exit( 1 )
+
+			# Generate list of fill tags
+			with open( templatePath, 'r' ) as openFile:
+				for line in openFile:
+					match = re.findall( '<\|([^|>]+)\|>', line )
+					for item in match:
+						self.tagList.append( item )
 
 
 	# USB Code Capability Name
@@ -69,44 +65,29 @@
 
 
 	# Processes content for fill tags and does any needed dataset calculations
+	# XXX Make sure to override
 	def process( self, capabilities, macros, variables, gitRev, gitChanges ):
 		print ( "{0} BackendBase 'process' function must be overridden".format( ERROR ) )
 		sys.exit( 2 )
 
 
 	# Generates the output keymap with fill tags filled
-	def generate( self, outputPath, definesOutputPath ):
-		# Process each line of the template, outputting to the target path
-		with open( outputPath, 'w' ) as outputFile:
-			with open( self.templatePath, 'r' ) as templateFile:
-				for line in templateFile:
-					# TODO Support multiple replacements per line
-					# TODO Support replacement with other text inline
-					match = re.findall( '<\|([^|>]+)\|>', line )
-
-					# If match, replace with processed variable
-					if match:
-						outputFile.write( self.fill_dict[ match[ 0 ] ] )
-						outputFile.write("\n")
-
-					# Otherwise, just append template to output file
-					else:
-						outputFile.write( line )
+	def generate( self, outputPaths ):
+		for templatePath, outputPath in zip( self.templatePaths, outputPaths ):
+			# Process each line of the template, outputting to the target path
+			with open( outputPath, 'w' ) as outputFile:
+				with open( templatePath, 'r' ) as templateFile:
+					for line in templateFile:
+						# TODO Support multiple replacements per line
+						# TODO Support replacement with other text inline
+						match = re.findall( '<\|([^|>]+)\|>', line )
 
-		# Process each line of the defines template, outputting to the target path
-		with open( definesOutputPath, 'w' ) as outputFile:
-			with open( self.definesTemplatePath, 'r' ) as templateFile:
-				for line in templateFile:
-					# TODO Support multiple replacements per line
-					# TODO Support replacement with other text inline
-					match = re.findall( '<\|([^|>]+)\|>', line )
+						# If match, replace with processed variable
+						if match:
+							outputFile.write( self.fill_dict[ match[ 0 ] ] )
+							outputFile.write("\n")
 
-					# If match, replace with processed variable
-					if match:
-						outputFile.write( self.fill_dict[ match[ 0 ] ] )
-						outputFile.write("\n")
+						# Otherwise, just append template to output file
+						else:
+							outputFile.write( line )
 
-					# Otherwise, just append template to output file
-					else:
-						outputFile.write( line )
-