sbsv2/raptor/python/raptor_meta.py
author timothy.murphy@nokia.com
Wed, 20 Jan 2010 18:22:44 +0000
branchwip
changeset 152 4afe202ba8fa
parent 151 d4605037b3b2
parent 150 62d9f099315d
child 155 e65788ec4aa9
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
151
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
     1
#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
     2
# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
     3
# All rights reserved.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
     4
# This component and the accompanying materials are made available
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
     5
# under the terms of the License "Eclipse Public License v1.0"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
     6
# which accompanies this distribution, and is available
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
     7
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
     8
#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
     9
# Initial Contributors:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    10
# Nokia Corporation - initial contribution.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    11
#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    12
# Contributors:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    13
#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    14
# Description: 
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    15
# This module includes classes that process bld.inf and .mmp files to
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    16
# generate Raptor build specifications
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    17
#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    18
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    19
import copy
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    20
import re
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    21
import os.path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    22
import shutil
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    23
import stat
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    24
import hashlib
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    25
import base64
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    26
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    27
import raptor
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    28
import raptor_data
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    29
import raptor_utilities
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    30
import raptor_xml
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    31
import generic_path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    32
import subprocess
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    33
import zipfile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    34
from mmpparser import *
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    35
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    36
import time
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    37
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    38
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    39
PiggyBackedBuildPlatforms = {'ARMV5':['GCCXML']}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    40
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    41
PlatformDefaultDefFileDir = {'WINSCW':'bwins',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    42
				  'ARMV5' :'eabi',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    43
				  'ARMV5SMP' :'eabi',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    44
				  'GCCXML':'eabi',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    45
				  'ARMV6':'eabi',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    46
				  'ARMV7' : 'eabi',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    47
				  'ARMV7SMP' : 'eabi'}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    48
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    49
def getVariantCfgDetail(aEPOCROOT, aVariantCfgFile):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    50
	"""Obtain pertinent build related detail from the Symbian variant.cfg file.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    51
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    52
	This variant.cfg file, usually located relative to $(EPOCROOT), contains:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    53
	(1) The $(EPOCROOT) relative location of the primary .hrh file used to configure the specific OS variant build
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    54
	(2) A flag determining whether ARMV5 represents an ABIV1 or ABIV2 build (currently unused by Raptor)."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    55
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    56
	variantCfgDetails = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    57
	variantCfgFile = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    58
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    59
	try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    60
		variantCfgFile = open(str(aVariantCfgFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    61
	except IOError, (number, message):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    62
		raise MetaDataError("Could not read variant configuration file "+str(aVariantCfgFile)+" ("+message+")")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    63
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    64
	for line in variantCfgFile.readlines():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    65
		if re.search('^(\s$|\s*#)', line):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    66
			continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    67
		# Note that this detection of the .hrh file matches the command line build i.e. ".hrh" somewhere
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    68
		# in the specified line
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    69
		elif re.search('\.hrh', line, re.I):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    70
			variantHrh = line.strip()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    71
			if variantHrh.startswith('\\') or variantHrh.startswith('/'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    72
				variantHrh = variantHrh[1:]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    73
			variantHrh = aEPOCROOT.Append(variantHrh)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    74
			variantCfgDetails['VARIANT_HRH'] = variantHrh
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    75
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    76
			lineContent = line.split()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    77
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    78
			if len(lineContent) == 1:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    79
				variantCfgDetails[lineContent.pop(0)] = 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    80
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    81
				variantCfgDetails[lineContent.pop(0)] = lineContent
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    82
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    83
	variantCfgFile.close()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    84
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    85
	if not variantCfgDetails.has_key('VARIANT_HRH'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    86
		raise MetaDataError("No variant file specified in "+str(aVariantCfgFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    87
	if not variantHrh.isFile():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    88
		raise MetaDataError("Variant file "+str(variantHrh)+" does not exist")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    89
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    90
	return variantCfgDetails
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    91
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    92
def getOsVerFromKifXml(aPathToKifXml):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    93
	"""Obtain the OS version from the kif.xml file located at $EPOCROOT/epoc32/data/kif.xml.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    94
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    95
	If successful, the function returns a string such as "v95" to indicate 9.5; None is
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    96
	returned if for any reason the function cannot determine the OS version."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    97
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    98
	releaseTagName = "ki:release"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
    99
	osVersion = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   100
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   101
	import xml.dom.minidom
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   102
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   103
	try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   104
		# Parsed document object
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   105
		kifDom = xml.dom.minidom.parse(str(aPathToKifXml))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   106
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   107
		# elements - the elements whose names are releaseTagName
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   108
		elements = kifDom.getElementsByTagName(releaseTagName)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   109
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   110
		# There should be exactly one of the elements whose name is releaseTagName
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   111
		# If more than one, osVersion is left as None, since the version should be
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   112
		# unique to the kif.xml file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   113
		if len(elements) == 1:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   114
			osVersionTemp = elements[0].getAttribute("version")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   115
			osVersion = "v" + osVersionTemp.replace(".", "")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   116
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   117
		kifDom.unlink() # Clean up
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   118
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   119
	except:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   120
		# There's no documentation on which exceptions are raised by these functions.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   121
		# We catch everything and assume any exception means there was a failure to
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   122
		# determine OS version. None is returned, and the code will fall back
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   123
		# to looking at the buildinfo.txt file.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   124
		pass
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   125
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   126
	return osVersion
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   127
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   128
def getOsVerFromBuildInfoTxt(aPathToBuildInfoTxt):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   129
	"""Obtain the OS version from the buildinfo.txt file located at $EPOCROOT/epoc32/data/buildinfo.txt.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   130
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   131
	If successful, the function returns a string such as "v95" to indicate 9.5; None is
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   132
	returned if for any reason the function cannot determine the OS version.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   133
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   134
	The file $EPOCROOT/epoc32/data/buildinfo.txt is presumed to exist. The client code should
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   135
	handle existance/non-existance."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   136
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   137
	pathToBuildInfoTxt = str(aPathToBuildInfoTxt) # String form version of path to buildinfo.txt
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   138
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   139
	# Open the file for reading; throw an exception if it could not be read - note that
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   140
	# it should exist at this point.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   141
	try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   142
		buildInfoTxt = open(pathToBuildInfoTxt)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   143
	except IOError, (number, message):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   144
		raise MetaDataError("Could not read buildinfo.txt file at" + pathToBuildInfoTxt + ": (" + message + ")")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   145
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   146
	# Example buildinfo.txt contents:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   147
	#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   148
	# DeviceFamily               100
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   149
	# DeviceFamilyRev            0x900
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   150
	# ManufacturerSoftwareBuild  M08765_Symbian_OS_v9.5
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   151
	#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   152
	# Regexp to match the line containing the OS version
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   153
	# Need to match things like M08765_Symbian_OS_v9.5 and M08765_Symbian_OS_vFuture
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   154
	# So for the version, match everything except whitespace after v. Whitespace
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   155
	# signifies the end of the regexp.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   156
	osVersionMatcher = re.compile('.*_Symbian_OS_v([^\s]*)', re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   157
	osVersion = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   158
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   159
	# Search for a regexp match over all the times in the file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   160
	# Note: if two or more lines match the search pattern then
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   161
	# the latest match will overwrite the osVersion string.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   162
	for line in buildInfoTxt:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   163
		matchResult = osVersionMatcher.match(line)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   164
		if matchResult:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   165
			result = matchResult.groups()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   166
			osVersion = "v" +  str(reduce(lambda x, y: x + y, result))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   167
			osVersion = osVersion.replace(".", "")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   168
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   169
	buildInfoTxt.close() # Clean-up
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   170
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   171
	return osVersion
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   172
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   173
def getBuildableBldInfBuildPlatforms(aBldInfBuildPlatforms,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   174
									aDefaultOSBuildPlatforms,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   175
									aBaseDefaultOSBuildPlatforms,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   176
									aBaseUserDefaultOSBuildPlatforms):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   177
	"""Obtain a set of build platform names supported by a bld.inf file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   178
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   179
	Build platform deduction is based on both the contents of the PRJ_PLATFORMS section of
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   180
	a bld.inf file together with a hard-coded set of default build platforms supported by
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   181
	the build system itself."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   182
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   183
	expandedBldInfBuildPlatforms = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   184
	removePlatforms = set()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   185
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   186
	for bldInfBuildPlatform in aBldInfBuildPlatforms:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   187
		if bldInfBuildPlatform.upper() == "DEFAULT":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   188
			expandedBldInfBuildPlatforms.extend(aDefaultOSBuildPlatforms.split())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   189
		elif bldInfBuildPlatform.upper() == "BASEDEFAULT":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   190
			expandedBldInfBuildPlatforms.extend(aBaseDefaultOSBuildPlatforms.split())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   191
		elif bldInfBuildPlatform.upper() == "BASEUSERDEFAULT":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   192
			expandedBldInfBuildPlatforms.extend(aBaseUserDefaultOSBuildPlatforms.split())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   193
		elif bldInfBuildPlatform.startswith("-"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   194
			removePlatforms.add(bldInfBuildPlatform.lstrip("-").upper())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   195
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   196
			expandedBldInfBuildPlatforms.append(bldInfBuildPlatform.upper())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   197
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   198
	if len(expandedBldInfBuildPlatforms) == 0:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   199
		expandedBldInfBuildPlatforms.extend(aDefaultOSBuildPlatforms.split())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   200
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   201
	# make a set of platforms that can be built
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   202
	buildableBldInfBuildPlatforms = set(expandedBldInfBuildPlatforms)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   203
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   204
	# Add platforms that are buildable by virtue of the presence of another
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   205
	for piggyBackedPlatform in PiggyBackedBuildPlatforms:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   206
		if piggyBackedPlatform in buildableBldInfBuildPlatforms:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   207
			buildableBldInfBuildPlatforms.update(PiggyBackedBuildPlatforms.get(piggyBackedPlatform))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   208
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   209
	# Remove platforms that were negated
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   210
	buildableBldInfBuildPlatforms -= removePlatforms
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   211
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   212
	return buildableBldInfBuildPlatforms
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   213
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   214
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   215
def getPreProcessorCommentDetail (aPreProcessorComment):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   216
	"""Takes a preprocessor comment and returns an array containing the filename and linenumber detail."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   217
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   218
	commentDetail = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   219
	commentMatch = re.search('# (?P<LINENUMBER>\d+) "(?P<FILENAME>.*)"', aPreProcessorComment)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   220
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   221
	if commentMatch:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   222
		filename = commentMatch.group('FILENAME')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   223
		filename = os.path.abspath(filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   224
		filename = re.sub(r'\\\\', r'\\', filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   225
		filename = re.sub(r'//', r'/', filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   226
		filename = generic_path.Path(filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   227
		linenumber = int (commentMatch.group('LINENUMBER'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   228
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   229
		commentDetail.append(filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   230
		commentDetail.append(linenumber)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   231
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   232
	return commentDetail
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   233
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   234
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   235
def getSpecName(aFileRoot, fullPath=False):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   236
	"""Returns a build spec name: this is the file root (full path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   237
	or simple file name) made safe for use as a file name."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   238
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   239
	if fullPath:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   240
		specName = str(aFileRoot).replace("/","_")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   241
		specName = specName.replace(":","")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   242
	else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   243
		specName = aFileRoot.File()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   244
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   245
	return specName.lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   246
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   247
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   248
# Classes
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   249
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   250
class MetaDataError(Exception):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   251
	"""Fatal error wrapper, to be thrown directly back to whatever is calling."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   252
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   253
	def __init__(self, aText):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   254
		self.Text = aText
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   255
	def __str__(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   256
		return repr(self.Text)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   257
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   258
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   259
class PreProcessedLine(str):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   260
	"""Custom string class that accepts filename and line number information from
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   261
	a preprocessed context."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   262
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   263
	def __new__(cls, value, *args, **keywargs):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   264
		return str.__new__(cls, value)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   265
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   266
	def __init__(self, value, aFilename, aLineNumber):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   267
		self.filename = aFilename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   268
		self.lineNumber = aLineNumber
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   269
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   270
	def getFilename (self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   271
		return self.filename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   272
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   273
	def getLineNumber (self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   274
		return self.lineNumber
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   275
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   276
class PreProcessor(raptor_utilities.ExternalTool):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   277
	"""Preprocessor wrapper suitable for Symbian metadata file processing."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   278
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   279
	def __init__(self, aPreProcessor,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   280
				 aStaticOptions,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   281
				 aIncludeOption,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   282
				 aMacroOption,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   283
				 aPreIncludeOption,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   284
				 aRaptor):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   285
		raptor_utilities.ExternalTool.__init__(self, aPreProcessor)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   286
		self.__StaticOptions = aStaticOptions
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   287
		self.__IncludeOption = aIncludeOption
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   288
		self.__MacroOption = aMacroOption
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   289
		self.__PreIncludeOption = aPreIncludeOption
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   290
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   291
		self.filename = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   292
		self.__Macros = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   293
		self.__IncludePaths = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   294
		self.__PreIncludeFile = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   295
		self.raptor = aRaptor
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   296
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   297
	def call(self, aArgs, sourcefilename):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   298
		""" Override call so that we can do our own error handling."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   299
		tool = self._ExternalTool__Tool
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   300
		commandline = tool + " " + aArgs + " " + str(sourcefilename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   301
		try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   302
			# the actual call differs between Windows and Unix
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   303
			if raptor_utilities.getOSFileSystem() == "unix":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   304
				p = subprocess.Popen(commandline, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   305
									 shell=True, bufsize=65535, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   306
									 stdin=subprocess.PIPE, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   307
									 stdout=subprocess.PIPE, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   308
									 stderr=subprocess.PIPE, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   309
									 close_fds=True)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   310
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   311
				p = subprocess.Popen(commandline, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   312
									 bufsize=65535, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   313
									 stdin=subprocess.PIPE, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   314
									 stdout=subprocess.PIPE, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   315
									 stderr=subprocess.PIPE, \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   316
									 universal_newlines=True)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   317
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   318
			# run the command and wait for all the output
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   319
			(self._ExternalTool__Output, errors) = p.communicate()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   320
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   321
			if self.raptor.debugOutput:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   322
				self.raptor.Debug("Preprocessing Start %s", str(sourcefilename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   323
				self.raptor.Debug("Output:\n%s", self._ExternalTool__Output)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   324
				self.raptor.Debug("Errors:\n%s", errors)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   325
				self.raptor.Debug("Preprocessing End %s", str(sourcefilename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   326
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   327
			incRE = re.compile("In file included from")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   328
			fromRE = re.compile(r"\s+from")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   329
			warningRE = re.compile("warning:|pasting.+token|from.+:")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   330
			remarkRE = re.compile("no newline at end of file|does not give a valid preprocessing token")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   331
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   332
			actualErr = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   333
			if errors != "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   334
				for error in errors.splitlines():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   335
					if incRE.search(error) or fromRE.search(error):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   336
						continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   337
					if not remarkRE.search(error):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   338
						if warningRE.search(error):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   339
							self.raptor.Warn("%s: %s", tool, error)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   340
						else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   341
							self.raptor.Error("%s: %s", tool, error)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   342
							actualErr = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   343
			if actualErr:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   344
				raise MetaDataError("Errors in %s" % str(sourcefilename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   345
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   346
		except Exception,e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   347
			raise MetaDataError("Preprocessor exception: '%s' : in command : '%s'" % (str(e), commandline))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   348
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   349
		return 0	# all OK
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   350
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   351
	def setMacros(self, aMacros):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   352
		self.__Macros = aMacros
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   353
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   354
	def addMacro(self, aMacro):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   355
		self.__Macros.append(aMacro)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   356
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   357
	def addMacros(self, aMacros):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   358
		self.__Macros.extend(aMacros)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   359
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   360
	def getMacros(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   361
		return self.__Macros
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   362
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   363
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   364
	def addIncludePath(self, aIncludePath):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   365
		p = str(aIncludePath)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   366
		if p == "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   367
			self.raptor.Warn("attempt to set an empty preprocessor include path for %s" % str(self.filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   368
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   369
			self.__IncludePaths.append(p)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   370
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   371
	def addIncludePaths(self, aIncludePaths):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   372
		for path in aIncludePaths:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   373
			self.addIncludePath(path)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   374
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   375
	def setIncludePaths(self, aIncludePaths):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   376
		self.__IncludePaths = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   377
		self.addIncludePaths(aIncludePaths)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   378
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   379
	def setPreIncludeFile(self, aPreIncludeFile):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   380
		self.__PreIncludeFile = aPreIncludeFile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   381
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   382
	def preprocess(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   383
		preProcessorCall = self.__constructPreProcessorCall()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   384
		returnValue = self.call(preProcessorCall, self.filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   385
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   386
		return self.getOutput()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   387
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   388
	def __constructPreProcessorCall(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   389
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   390
		call = self.__StaticOptions
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   391
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   392
		if self.__PreIncludeFile:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   393
			call += " " + self.__PreIncludeOption
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   394
			call += " " + str(self.__PreIncludeFile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   395
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   396
		for macro in self.__Macros:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   397
			call += " " + self.__MacroOption + macro
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   398
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   399
		for includePath in self.__IncludePaths:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   400
			call += " " + self.__IncludeOption
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   401
			call += " " + str(includePath)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   402
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   403
		return call
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   404
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   405
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   406
class MetaDataFile(object):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   407
	"""A generic representation of a Symbian metadata file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   408
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   409
	Symbian metadata files are subject to preprocessing, primarily with macros based
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   410
	on the selected build platform.  This class provides a generic means of wrapping
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   411
	up the preprocessing of such files."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   412
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   413
	def __init__(self, aFilename, gnucpp, depfiles, aRootLocation=None, log=None):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   414
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   415
		@param aFilename	An MMP, bld.inf or other preprocessable build spec file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   416
		@param aDefaultPlatform  Default preprocessed version of this file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   417
		@param aCPP 		location of GNU CPP
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   418
		@param depfiles     	list to add dependency file tuples to
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   419
		@param aRootLocation    where the file is 
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   420
		@param log 		A class with Debug(<string>), Info(<string>) and Error(<string>) methods
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   421
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   422
		self.filename = aFilename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   423
		self.__RootLocation = aRootLocation
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   424
		# Dictionary with key of build platform and a text string of processed output as values
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   425
		self.__PreProcessedContent = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   426
		self.log = log
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   427
		self.depfiles = depfiles
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   428
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   429
		self.__gnucpp = gnucpp
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   430
		if gnucpp is None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   431
			raise ValueError('gnucpp must be set')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   432
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   433
	def depspath(self, platform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   434
	   """ Where does dependency information go relative to platform's SBS_BUILD_DIR?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   435
	       Subclasses should redefine this
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   436
	   """
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   437
	   return str(platform['SBS_BUILD_DIR']) + "/" + str(self.__RootLocation) + "." + platform['key_md5'] + ".d"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   438
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   439
	def getContent(self, aBuildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   440
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   441
		key = aBuildPlatform['key']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   442
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   443
		config_macros = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   444
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   445
		adepfilename = self.depspath(aBuildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   446
		generateDepsOptions = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   447
		if adepfilename:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   448
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   449
			if raptor_utilities.getOSPlatform().startswith("win"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   450
				metatarget = "$(PARSETARGET)"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   451
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   452
				metatarget = "'$(PARSETARGET)'"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   453
			generateDepsOptions = "-MD -MF%s -MT%s" % (adepfilename, metatarget)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   454
			self.depfiles.append((adepfilename, metatarget))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   455
			try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   456
				os.makedirs(os.path.dirname(adepfilename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   457
			except Exception, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   458
				self.log.Debug("Couldn't make bldinf outputpath for dependency generation")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   459
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   460
		config_macros = (aBuildPlatform['PLATMACROS']).split()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   461
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   462
		if not key in self.__PreProcessedContent:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   463
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   464
			preProcessor = PreProcessor(self.__gnucpp, '-undef -nostdinc ' + generateDepsOptions + ' ',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   465
										'-I', '-D', '-include', self.log)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   466
			preProcessor.filename = self.filename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   467
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   468
			# always have the current directory on the include path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   469
			preProcessor.addIncludePath('.')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   470
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   471
			# the SYSTEMINCLUDE directories defined in the build config
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   472
			# should be on the include path. This is added mainly to support
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   473
			# Feature Variation as SYSTEMINCLUDE is usually empty at this point.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   474
			systemIncludes = aBuildPlatform['SYSTEMINCLUDE']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   475
			if systemIncludes:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   476
				preProcessor.addIncludePaths(systemIncludes.split())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   477
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   478
			preInclude = aBuildPlatform['VARIANT_HRH']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   479
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   480
			# for non-Feature Variant builds, the directory containing the HRH should
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   481
			# be on the include path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   482
			if not aBuildPlatform['ISFEATUREVARIANT']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   483
				preProcessor.addIncludePath(preInclude.Dir())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   484
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   485
			# and EPOCROOT/epoc32/include
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   486
			preProcessor.addIncludePath(aBuildPlatform['EPOCROOT'].Append('epoc32/include'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   487
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   488
			# and the directory containing the bld.inf file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   489
			if self.__RootLocation is not None and str(self.__RootLocation) != "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   490
				preProcessor.addIncludePath(self.__RootLocation)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   491
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   492
			# and the directory containing the file we are processing
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   493
			preProcessor.addIncludePath(self.filename.Dir())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   494
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   495
			# there is always a pre-include file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   496
			preProcessor.setPreIncludeFile(preInclude)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   497
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   498
			macros = ["SBSV2"]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   499
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   500
			if config_macros:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   501
				macros.extend(config_macros)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   502
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   503
			if macros:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   504
				for macro in macros:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   505
					preProcessor.addMacro(macro + "=_____" +macro)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   506
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   507
			# extra "raw" macros that do not need protecting
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   508
			preProcessor.addMacro("__GNUC__=3")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   509
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   510
			preProcessorOutput = preProcessor.preprocess()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   511
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   512
			# Resurrect preprocessing replacements
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   513
			pattern = r'([\\|/]| |) ?_____(('+macros[0]+')'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   514
			for macro in macros[1:]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   515
				pattern += r'|('+macro+r')'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   516
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   517
			pattern += r'\s*)'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   518
			# Work on all Macros in one substitution.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   519
			text = re.sub(pattern, r"\1\2", preProcessorOutput)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   520
			text = re.sub(r"\n[\t ]*", r"\n", text)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   521
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   522
			self.__PreProcessedContent[key] = text
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   523
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   524
		return self.__PreProcessedContent[key]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   525
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   526
class MMPFile(MetaDataFile):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   527
	"""A generic representation of a Symbian metadata file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   528
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   529
	Symbian metadata files are subject to preprocessing, primarily with macros based
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   530
	on the selected build platform.  This class provides a generic means of wrapping
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   531
	up the preprocessing of such files."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   532
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   533
	def __init__(self, aFilename, gnucpp, bldinf, depfiles, log=None):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   534
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   535
		@param aFilename	An MMP, bld.inf or other preprocessable build spec file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   536
		@param gnucpp 		location of GNU CPP
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   537
		@param bldinf		the bld.inf file this mmp was specified in
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   538
		@param depfiles         list to fill with mmp dependency files
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   539
		@param log 		A class with Debug(<string>), Info(<string>) and Error(<string>) methods
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   540
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   541
		super(MMPFile, self).__init__(aFilename, gnucpp, depfiles, str(bldinf.filename.Dir()),  log)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   542
		self.__bldinf = bldinf
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   543
		self.depfiles = depfiles
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   544
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   545
		self.__gnucpp = gnucpp
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   546
		if gnucpp is None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   547
			raise ValueError('gnucpp must be set')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   548
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   549
	def depspath(self, platform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   550
	   """ Where does dependency information go relative to platform's SBS_BUILD_DIR?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   551
	       Subclasses should redefine this
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   552
	   """
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   553
	   return self.__bldinf.outputpath(platform) + "/" + self.filename.File() + '.' + platform['key_md5'] + ".d"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   554
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   555
class Export(object):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   556
	"""Single processed PRJ_EXPORTS or PRJ_TESTEXPORTS entry from a bld.inf file"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   557
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   558
	def getPossiblyQuotedStrings(cls,spec):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   559
		""" 	Split a string based on whitespace
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   560
			but keep double quoted substrings together.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   561
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   562
		inquotes=False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   563
		intokengap=False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   564
		sourcedest=[]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   565
		word = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   566
		for c in spec:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   567
			if c == '"':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   568
				if inquotes:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   569
					inquotes = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   570
					word += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   571
					intokengap = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   572
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   573
					inquotes = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   574
					intokengap = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   575
				pass
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   576
			elif c == ' ' or c == '\t':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   577
				if inquotes:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   578
					if len(sourcedest) == word:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   579
						sourcedest.append(c)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   580
					else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   581
						sourcedest[word] += c
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   582
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   583
					if intokengap:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   584
						# gobble unquoted spaces
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   585
						pass
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   586
					else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   587
						word += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   588
						intokengap=True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   589
				pass
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   590
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   591
				intokengap = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   592
				if len(sourcedest) == word:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   593
					sourcedest.append(c)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   594
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   595
					sourcedest[word] += c
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   596
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   597
		return sourcedest
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   598
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   599
	getPossiblyQuotedStrings = classmethod(getPossiblyQuotedStrings)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   600
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   601
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   602
	def __init__(self, aBldInfFile, aExportsLine, aType):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   603
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   604
		Rules from the OS library for convenience:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   605
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   606
		For PRJ_TESTEXPORTS
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   607
		source_file_1 [destination_file]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   608
		source_file_n [destination_file]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   609
		If the source file is listed with a relative path, the path will
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   610
	 	  be considered relative to the directory containing the bld.inf file.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   611
		If a destination file is not specified, the source file will be copied
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   612
		  to the directory containing the bld.inf file.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   613
		If a relative path is specified with the destination file, the path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   614
		  will be considered relative to directory containing the bld.inf file.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   615
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   616
		For PRJ_EXPORTS
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   617
		source_file_1 [destination_file]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   618
		source_file_n [destination_file]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   619
		:zip zip_file [destination_path]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   620
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   621
		Note that:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   622
		If a source file is listed with a relative path, the path will be
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   623
		considered relative to the directory containing the bld.inf file.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   624
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   625
		If a destination file is not specified, the source file will be copied
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   626
		to epoc32\include\.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   627
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   628
		If a destination file is specified with the relative path, the path will
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   629
		be considered relative to directory epoc32\include\.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   630
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   631
		If a destination begins with a drive letter, then the file is copied to
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   632
		epoc32\data\<drive_letter>\<path>. For example,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   633
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   634
			mydata.dat e:\appdata\mydata.dat
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   635
			copies mydata.dat to epoc32\data\e\appdata\mydata.dat.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   636
			You can use any driveletter between A and Z.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   637
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   638
		A line can start with the preface :zip. This instructs the build tools
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   639
		to unzip the specified zip file to the specified destination path. If a
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   640
		destination path is not specified, the source file will be unzipped in
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   641
		the root directory.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   642
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   643
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   644
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   645
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   646
		# Work out what action is required - unzip or copy?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   647
		action = "copy"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   648
		typematch = re.match(r'^\s*(?P<type>:zip\s+)?(?P<spec>[^\s].*[^\s])\s*$',aExportsLine, re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   649
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   650
		spec = typematch.group('spec')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   651
		if spec == None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   652
			raise ValueError('must specify at least a source file for an export')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   653
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   654
		if typematch.group('type') is not None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   655
			action = "unzip"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   656
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   657
		# Split the spec into source and destination but take care
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   658
		# to allow filenames with quoted strings.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   659
		exportEntries = Export.getPossiblyQuotedStrings(spec)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   660
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   661
		# Get the source path as specified by the bld.inf
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   662
		source_spec = exportEntries.pop(0).replace(' ','%20')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   663
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   664
		# Resolve the source file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   665
		sourcepath = generic_path.Path(raptor_utilities.resolveSymbianPath(str(aBldInfFile), source_spec))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   666
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   667
		# Find it if the case of the filename is wrong:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   668
		# Carry on even if we don't find it
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   669
		foundfile = sourcepath.FindCaseless()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   670
		if foundfile != None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   671
			source = str(foundfile).replace(' ','%20')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   672
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   673
			source = str(sourcepath).replace(' ','%20')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   674
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   675
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   676
		# Get the destination path as specified by the bld.inf
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   677
		if len(exportEntries) > 0:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   678
			dest_spec = exportEntries.pop(0).replace(' ','%20')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   679
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   680
			dest_spec = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   681
		# Destination list - list of destinations. For the WINSCW resource building stage,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   682
		# files exported to the emulated drives and there are several locations, for example,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   683
		# PRJ_[TEST]EXPORTS
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   684
		# 1234ABCD.SPD		z:/private/10009876/policy/1234ABCD.spd
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   685
		# needs to end up copied in
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   686
		# epoc32/data/z/private/10009876/policy/1234ABCD.spd *and* in
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   687
		# epoc32/release/winscw/udeb/z/private/10009876/policy/1234ABCD.spd *and* in
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   688
		# epoc32/release/winscw/urel/z/private/10009876/policy/1234ABCD.spd
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   689
		dest_list = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   690
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   691
		# Resolve the destination if one is specified
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   692
		if dest_spec:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   693
			# check for troublesome characters
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   694
			if ':' in dest_spec and not re.search('^[a-z]:', dest_spec, re.I):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   695
				raise ValueError("invalid filename " + dest_spec)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   696
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   697
			dest_spec = dest_spec.replace(' ','%20')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   698
			aSubType=""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   699
			if action == "unzip":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   700
				aSubType=":zip"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   701
				dest_spec = dest_spec.rstrip("\\/")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   702
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   703
			# Get the export destination(s) - note this can be a list of strings or just a string.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   704
			dest_list = raptor_utilities.resolveSymbianPath(str(aBldInfFile), dest_spec, aType, aSubType)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   705
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   706
			def process_dest(aDest):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   707
				if dest_spec.endswith('/') or  dest_spec.endswith('\\'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   708
					m = generic_path.Path(source)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   709
					aDest += '/'+m.File()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   710
				return aDest
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   711
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   712
			if isinstance(dest_list, list):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   713
				# Process each file in the list
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   714
				dest_list = map(process_dest, dest_list)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   715
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   716
				# Process the single destination
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   717
				dest_list = process_dest(dest_list)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   718
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   719
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   720
			# No destination was specified so we assume an appropriate one
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   721
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   722
			dest_filename=generic_path.Path(source).File()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   723
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   724
			if aType == "PRJ_EXPORTS":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   725
				if action == "copy":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   726
					destination = '$(EPOCROOT)/epoc32/include/'+dest_filename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   727
				elif action == "unzip":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   728
					destination = '$(EPOCROOT)'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   729
			elif aType == "PRJ_TESTEXPORTS":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   730
				d = aBldInfFile.Dir()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   731
				if action == "copy":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   732
					destination = str(d.Append(dest_filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   733
				elif action == "unzip":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   734
					destination = "$(EPOCROOT)"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   735
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   736
				raise ValueError("Export type should be 'PRJ_EXPORTS' or 'PRJ_TESTEXPORTS'. It was: "+str(aType))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   737
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   738
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   739
		self.__Source = source
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   740
		if len(dest_list) > 0: # If the list has length > 0, this means there are several export destinations.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   741
			self.__Destination = dest_list
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   742
		else: # Otherwise the list has length zero, so there is only a single export destination.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   743
			self.__Destination = destination
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   744
		self.__Action = action
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   745
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   746
	def getSource(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   747
		return self.__Source
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   748
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   749
	def getDestination(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   750
		return self.__Destination # Note that this could be either a list, or a string, depending on the export destination
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   751
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   752
	def getAction(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   753
		return self.__Action
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   754
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   755
class ExtensionmakefileEntry(object):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   756
	def __init__(self, aGnuLine, aBldInfFile, tmp):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   757
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   758
		self.__BldInfFile = aBldInfFile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   759
		bldInfLocation = self.__BldInfFile.Dir()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   760
		biloc = str(bldInfLocation)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   761
		extInfLocation = tmp.filename.Dir()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   762
		eiloc = str(extInfLocation)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   763
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   764
		if eiloc is None or eiloc == "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   765
			eiloc="." # Someone building with a relative raptor path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   766
		if biloc is None or biloc == "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   767
			biloc="." # Someone building with a relative raptor path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   768
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   769
		self.__StandardVariables = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   770
		# Relative step-down to the root - let's try ignoring this for now, as it
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   771
		# should amount to the same thing in a world where absolute paths are king
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   772
		self.__StandardVariables['TO_ROOT'] = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   773
		# Top-level bld.inf location
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   774
		self.__StandardVariables['TO_BLDINF'] = biloc
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   775
		self.__StandardVariables['EXTENSION_ROOT'] = eiloc
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   776
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   777
		# Get the directory and filename from the full path containing the extension makefile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   778
		self.__FullPath = generic_path.Join(eiloc,aGnuLine)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   779
		self.__FullPath = self.__FullPath.GetLocalString()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   780
		self.__Filename = os.path.split(self.__FullPath)[1]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   781
		self.__Directory = os.path.split(self.__FullPath)[0]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   782
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   783
	def getMakefileName(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   784
		return self.__Filename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   785
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   786
	def getMakeDirectory(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   787
		return self.__Directory
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   788
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   789
	def getStandardVariables(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   790
		return self.__StandardVariables
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   791
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   792
class Extension(object):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   793
	"""Single processed PRJ_EXTENSIONS or PRJ_TESTEXTENSIONS START EXTENSIONS...END block
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   794
	from a bld.inf file"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   795
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   796
	def __init__(self, aBldInfFile, aStartLine, aOptionLines, aBuildPlatform, aRaptor):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   797
		self.__BldInfFile = aBldInfFile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   798
		self.__Options = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   799
		self.interface = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   800
		self.__Raptor = aRaptor
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   801
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   802
		makefile = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   803
		makefileMatch = re.search(r'^\s*START EXTENSION\s+(?P<MAKEFILE>\S+)\s*(?P<NAMETAG>\S*)$', aStartLine, re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   804
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   805
		self.__RawMakefile = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   806
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   807
		if (makefileMatch):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   808
			self.__RawMakefile = makefileMatch.group('MAKEFILE')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   809
			self.nametag = makefileMatch.group('NAMETAG').lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   810
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   811
			# Ensure all \'s are translated into /'s if required
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   812
			self.interface = self.__RawMakefile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   813
			self.interface = self.interface.replace("\\", "/").replace("/", ".")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   814
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   815
		# To support standalone testing, '$(' prefixed TEMs  are assumed to  start with
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   816
		# a makefile variable and hence be fully located in FLM operation
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   817
		if self.__RawMakefile.startswith("$("):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   818
			self.__Makefile = self.__RawMakefile + ".mk"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   819
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   820
			self.__Makefile = '$(MAKEFILE_TEMPLATES)/' + self.__RawMakefile + ".mk"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   821
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   822
		for optionLine in aOptionLines:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   823
			optionMatch = re.search(r'^\s*(OPTION\s+)?(?P<VARIABLE>\S+)\s+(?P<VALUE>\S+.*)$',optionLine, re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   824
			if optionMatch:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   825
				self.__Options[optionMatch.group('VARIABLE').upper()] = optionMatch.group('VALUE')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   826
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   827
		bldInfLocation = self.__BldInfFile.Dir()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   828
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   829
		biloc = str(bldInfLocation)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   830
		if biloc is None or biloc == "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   831
			biloc="." # Someone building with a relative raptor path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   832
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   833
		extInfLocation = aStartLine.filename.Dir()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   834
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   835
		eiloc = str(extInfLocation)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   836
		if eiloc is None or eiloc == "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   837
			eiloc="." # Someone building with a relative raptor path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   838
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   839
		self.__StandardVariables = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   840
		# Relative step-down to the root - let's try ignoring this for now, as it
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   841
		# should amount to the same thing in a world where absolute paths are king
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   842
		self.__StandardVariables['TO_ROOT'] = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   843
		# Top-level bld.inf location
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   844
		self.__StandardVariables['TO_BLDINF'] = biloc
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   845
		# Location of bld.inf file containing the current EXTENSION block
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   846
		self.__StandardVariables['EXTENSION_ROOT'] = eiloc
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   847
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   848
		# If the interface exists, this means it's not a Template Extension Makefile so don't look for a .meta file for it;
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   849
		# so do nothing if it's not a template extension makefile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   850
		try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   851
			self.__Raptor.cache.FindNamedInterface(str(self.interface), aBuildPlatform['CACHEID'])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   852
		except KeyError: # This means that this Raptor doesn't have the interface self.interface, so we are in a TEM
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   853
			# Read extension meta file and get default options from it.  The use of TEM meta file is compulsory if TEM is used
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   854
			metaFilename = "%s/epoc32/tools/makefile_templates/%s.meta" % (aBuildPlatform['EPOCROOT'], self.__RawMakefile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   855
			metaFile = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   856
			try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   857
				metaFile = open(metaFilename, "r")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   858
			except IOError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   859
				self.__warn("Extension: %s - cannot open Meta file: %s" % (self.__RawMakefile, metaFilename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   860
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   861
			if metaFile:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   862
				for line in metaFile.readlines():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   863
					defaultOptionMatch = re.search(r'^OPTION\s+(?P<VARIABLE>\S+)\s+(?P<VALUE>\S+.*)$',line, re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   864
					if defaultOptionMatch and defaultOptionMatch.group('VARIABLE').upper() not in self.__Options.keys():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   865
						self.__Options[defaultOptionMatch.group('VARIABLE').upper()] = defaultOptionMatch.group('VALUE')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   866
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   867
				metaFile.close()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   868
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   869
	def __warn(self, format, *extras):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   870
		if (self.__Raptor):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   871
			self.__Raptor.Warn(format, *extras)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   872
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   873
	def getIdentifier(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   874
		return re.sub (r'\\|\/|\$|\(|\)', '_', self.__RawMakefile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   875
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   876
	def getMakefile(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   877
		return self.__Makefile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   878
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   879
	def getOptions(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   880
		return self.__Options
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   881
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   882
	def getStandardVariables(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   883
		return self.__StandardVariables
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   884
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   885
class MMPFileEntry(object):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   886
	def __init__(self, aFilename, aTestOption, aARMOption):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   887
		self.filename = aFilename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   888
		self.testoption = aTestOption
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   889
		if aARMOption:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   890
			self.armoption = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   891
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   892
			self.armoption = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   893
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   894
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   895
class BldInfFile(MetaDataFile):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   896
	"""Representation of a Symbian bld.inf file"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   897
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   898
	def __init__(self, aFilename, gnucpp, depfiles, log=None):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   899
		MetaDataFile.__init__(self, aFilename, gnucpp, depfiles, None, log)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   900
		self.__Raptor = log
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   901
		self.testManual = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   902
		self.testAuto = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   903
	# Generic
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   904
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   905
	def getBuildPlatforms(self, aBuildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   906
		platformList = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   907
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   908
		for platformLine in self.__getSection(aBuildPlatform, 'PRJ_PLATFORMS'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   909
			for platformEntry in platformLine.split():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   910
				platformList.append(platformEntry)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   911
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   912
		return platformList
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   913
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   914
	# Build Platform Specific
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   915
	def getMMPList(self, aBuildPlatform, aType="PRJ_MMPFILES"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   916
		mmpFileList=[]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   917
		gnuList = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   918
		makefileList = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   919
		extFound = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   920
		m = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   921
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   922
		hashValue = {'mmpFileList': [] , 'gnuList': [], 'makefileList' : []}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   923
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   924
		for mmpFileEntry in self.__getSection(aBuildPlatform, aType):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   925
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   926
			actualBldInfRoot = mmpFileEntry.getFilename()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   927
			n = re.match('\s*(?P<makefiletype>(GNUMAKEFILE|N?MAKEFILE))\s+(?P<extmakefile>[^ ]+)\s*(support|manual)?\s*(?P<invalid>\S+.*)?\s*$',mmpFileEntry,re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   928
			if n:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   929
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   930
				if (n.groupdict()['invalid']):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   931
					self.log.Error("%s (%d) : invalid .mmp file qualifier \"%s\"", mmpFileEntry.filename, mmpFileEntry.getLineNumber(), n.groupdict()['invalid'])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   932
				if raptor_utilities.getOSFileSystem() == "unix":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   933
					self.log.Warn("NMAKEFILE/GNUMAKEFILE/MAKEFILE keywords not supported on Linux")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   934
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   935
					extmakefilearg = n.groupdict()['extmakefile']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   936
					bldInfDir = actualBldInfRoot.Dir()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   937
					extmakefilename = bldInfDir.Append(extmakefilearg)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   938
					extmakefile = ExtensionmakefileEntry(extmakefilearg, self.filename, mmpFileEntry)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   939
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   940
					if (n.groupdict()['makefiletype']).upper() == "GNUMAKEFILE":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   941
						gnuList.append(extmakefile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   942
					else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   943
						makefileList.append(extmakefile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   944
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   945
				# Currently there is only one possible option - build as arm.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   946
				# For TESTMMPFILES, the supported options are support, tidy, ignore, manual and build as arm
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   947
				if aType.upper()=="PRJ_TESTMMPFILES":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   948
					if re.match('\s*(?P<name>[^ ]+)\s*(?P<baa>build_as_arm)?\s*(?P<support>support)?\s*(?P<ignore>ignore)?\s*(?P<tidy>tidy)?\s*(?P<manual>manual)?\s*(?P<invalid>\S+.*)?\s*$', mmpFileEntry, re.I):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   949
						m = re.match('\s*(?P<name>[^ ]+)\s*(?P<baa>build_as_arm)?\s*(?P<support>support)?\s*(?P<ignore>ignore)?\s*(?P<tidy>tidy)?\s*(?P<manual>manual)?\s*(?P<invalid>\S+.*)?\s*$', mmpFileEntry, re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   950
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   951
					if re.match('\s*(?P<name>[^ ]+)\s*(?P<baa>build_as_arm)?\s*(?P<invalid>\S+.*)?\s*$', mmpFileEntry, re.I):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   952
						m = re.match('\s*(?P<name>[^ ]+)\s*(?P<baa>build_as_arm)?\s*(?P<invalid>\S+.*)?\s*$', mmpFileEntry, re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   953
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   954
			if m:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   955
				if (m.groupdict()['invalid']):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   956
					self.log.Error("%s (%d) : invalid .mmp file qualifier \"%s\"", mmpFileEntry.filename, mmpFileEntry.getLineNumber(), m.groupdict()['invalid'])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   957
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   958
				mmpFileName = m.groupdict()['name']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   959
				testmmpoption = "auto" # Setup tests to be automatic by default
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   960
				tokens = m.groupdict()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   961
				for key,item in tokens.iteritems():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   962
					if key=="manual" and item=="manual":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   963
						testmmpoption = "manual"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   964
					elif key=="support" and item=="support":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   965
						testmmpoption = "support"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   966
					elif key=="ignore" and item=="ignore":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   967
						testmmpoption = "ignore"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   968
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   969
				buildasarm = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   970
				if  m.groupdict()['baa']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   971
					if m.groupdict()['baa'].lower() == 'build_as_arm':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   972
						buildasarm = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   973
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   974
				if not mmpFileName.lower().endswith('.mmp'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   975
					mmpFileName += '.mmp'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   976
				bldInfDir = actualBldInfRoot.Dir()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   977
				try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   978
					mmpFileName = bldInfDir.Append(mmpFileName)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   979
					mmpfe = MMPFileEntry(mmpFileName, testmmpoption, buildasarm)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   980
					mmpFileList.append(mmpfe)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   981
				except ValueError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   982
					self.log.Error("invalid .mmp file name: %s" % str(e))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   983
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   984
				m = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   985
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   986
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   987
		hashValue['mmpFileList'] = mmpFileList
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   988
		hashValue['gnuList'] = gnuList
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   989
		hashValue['makefileList'] = makefileList
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   990
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   991
		return hashValue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   992
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   993
	# Return a list of gnumakefiles used in the bld.inf
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   994
	def getExtensionmakefileList(self, aBuildPlatform, aType="PRJ_MMPFILES",aString = ""):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   995
		extMakefileList=[]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   996
		m = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   997
		for extmakeFileEntry in self.__getSection(aBuildPlatform, aType):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   998
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
   999
			actualBldInfRoot = extmakeFileEntry.filename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1000
			if aType.upper()=="PRJ_TESTMMPFILES":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1001
				m = re.match('\s*GNUMAKEFILE\s+(?P<extmakefile>[^ ]+)\s*(?P<support>support)?\s*(?P<ignore>ignore)?\s*(?P<tidy>tidy)?\s*(?P<manual>manual)?\s*(?P<invalid>\S+.*)?\s*$',extmakeFileEntry,re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1002
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1003
				if aString == "gnumakefile":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1004
					m = re.match('\s*GNUMAKEFILE\s+(?P<extmakefile>[^ ]+)\s*(?P<invalid>\S+.*)?\s*$',extmakeFileEntry,re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1005
				elif aString == "nmakefile":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1006
					m = re.match('\s*NMAKEFILE\s+(?P<extmakefile>[^ ]+)\s*(?P<invalid>\S+.*)?\s*$',extmakeFileEntry,re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1007
				elif aString == "makefile":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1008
					m = re.match('\s*MAKEFILE\s+(?P<extmakefile>[^ ]+)\s*(?P<invalid>\S+.*)?\s*$',extmakeFileEntry,re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1009
			if m:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1010
				if (m.groupdict()['invalid']):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1011
					self.log.Error("%s (%d) : invalid extension makefile qualifier \"%s\"", extmakeFileEntry.filename, extmakeFileEntry.getLineNumber(), m.groupdict()['invalid'])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1012
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1013
				extmakefilearg = m.groupdict()['extmakefile']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1014
				bldInfDir = actualBldInfRoot.Dir()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1015
				extmakefilename = bldInfDir.Append(extmakefilearg)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1016
				extmakefile = ExtensionmakefileEntry(extmakefilearg, self.filename, extmakeFileEntry)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1017
				extMakefileList.append(extmakefile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1018
				m = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1019
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1020
		return extMakefileList
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1021
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1022
	def getTestExtensionmakefileList(self,aBuildPlatform,aString=""):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1023
		return self.getExtensionmakefileList(aBuildPlatform,"PRJ_TESTMMPFILES",aString)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1024
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1025
	def getTestMMPList(self, aBuildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1026
		return self.getMMPList(aBuildPlatform, "PRJ_TESTMMPFILES")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1027
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1028
	def getRomTestType(self, aBuildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1029
		testMMPList = self.getTestMMPList(aBuildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1030
		for testMMPFileEntry in testMMPList['mmpFileList']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1031
			if aBuildPlatform["TESTCODE"]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1032
				# Calculate test type (manual or auto)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1033
				if testMMPFileEntry.testoption == "manual":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1034
					self.testManual += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1035
				if not (testMMPFileEntry.testoption == "support" or testMMPFileEntry.testoption == "manual" or testMMPFileEntry.testoption == "ignore"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1036
					self.testAuto += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1037
		if self.testManual and self.testAuto:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1038
			return 'BOTH'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1039
		elif self.testAuto:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1040
			return 'AUTO'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1041
		elif self.testManual:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1042
			return 'MANUAL'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1043
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1044
			return 'NONE'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1045
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1046
	def getExports(self, aBuildPlatform, aType="PRJ_EXPORTS"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1047
		exportList = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1048
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1049
		for exportLine in self.__getSection(aBuildPlatform, aType):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1050
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1051
			if not re.match(r'\S+', exportLine):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1052
				continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1053
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1054
			try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1055
				exportList.append(Export(exportLine.getFilename(), exportLine, aType))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1056
			except ValueError,e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1057
				self.log.Error(str(e))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1058
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1059
		return exportList
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1060
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1061
	def getTestExports(self, aBuildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1062
		return self.getExports(aBuildPlatform, "PRJ_TESTEXPORTS")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1063
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1064
	def getExtensions(self, aBuildPlatform, aType="PRJ_EXTENSIONS"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1065
		extensionObjects = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1066
		start = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1067
		options = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1068
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1069
		for extensionLine in self.__getSection(aBuildPlatform, aType):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1070
			if (re.search(r'^\s*START ',extensionLine, re.I)):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1071
				start = extensionLine
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1072
			elif re.search(r'^\s*END\s*$',extensionLine, re.I):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1073
				extensionObjects.append(Extension(self.filename, start, options, aBuildPlatform, self.__Raptor))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1074
				start = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1075
				options = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1076
			elif re.search(r'^\s*$',extensionLine, re.I):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1077
				continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1078
			elif start:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1079
				options.append(extensionLine)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1080
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1081
		return extensionObjects
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1082
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1083
	def getTestExtensions(self, aBuildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1084
		return self.getExtensions(aBuildPlatform, "PRJ_TESTEXTENSIONS")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1085
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1086
	def __getSection(self, aBuildPlatform, aSection):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1087
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1088
		activeSection = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1089
		sectionContent = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1090
		lineContent = re.split(r'\n', self.getContent(aBuildPlatform));
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1091
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1092
		currentBldInfFile = self.filename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1093
		currentLineNumber = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1094
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1095
		for line in lineContent:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1096
			if line.startswith("#"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1097
				commentDetail = getPreProcessorCommentDetail(line)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1098
				currentBldInfFile = commentDetail[0]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1099
				currentLineNumber = commentDetail[1]-1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1100
				continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1101
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1102
			currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1103
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1104
			if not re.match(r'.*\S+', line):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1105
				continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1106
			elif re.match(r'\s*' + aSection + r'\s*$', line, re.I):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1107
				activeSection = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1108
			elif re.match(r'\s*PRJ_\w+\s*$', line, re.I):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1109
				activeSection = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1110
			elif activeSection:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1111
				sectionContent.append(PreProcessedLine(line, currentBldInfFile, currentLineNumber))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1112
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1113
		return sectionContent
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1114
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1115
	@staticmethod
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1116
	def outputPathFragment(bldinfpath):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1117
		"""Return a relative path that uniquely identifies this bldinf file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1118
		   whilst being short so that it can be appended to epoc32/build.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1119
		   The  build product of a particular bld.inf may be placed in here.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1120
		   This affects its TEMs and its MMPs"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1121
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1122
		absroot_str = os.path.abspath(str(bldinfpath)).lower().replace("\\","/")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1123
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1124
		uniqueid = hashlib.md5()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1125
		uniqueid.update(absroot_str)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1126
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1127
		specnamecomponents = (re.sub("^[A-Za-z]:", "", absroot_str)).split('/') # split, removing any drive identifier (if present)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1128
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1129
		pathlist=[]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1130
		while len(specnamecomponents) > 0:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1131
			top = specnamecomponents.pop()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1132
			if top.endswith('.inf'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1133
				continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1134
			elif top == 'group':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1135
				continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1136
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1137
				pathlist = [top]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1138
				break
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1139
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1140
		pathlist.append("c_"+uniqueid.hexdigest()[:16])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1141
		return "/".join(pathlist)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1142
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1143
	def outputpath(self, platform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1144
		""" The full path where product from this bldinf is created."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1145
		return str(platform['SBS_BUILD_DIR']) + "/" + BldInfFile.outputPathFragment(self.filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1146
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1147
	def depspath(self, platform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1148
	   """ Where does dependency information go relative to platform's SBS_BUILD_DIR?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1149
	       Subclasses should redefine this
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1150
	   """
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1151
	   return self.outputpath(platform) + "/bldinf." + platform['key_md5'] + ".d"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1152
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1153
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1154
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1155
class MMPRaptorBackend(MMPBackend):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1156
	"""A parser "backend" for the MMP language
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1157
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1158
	This is used to map recognised MMP syntax onto a buildspec """
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1159
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1160
	# Support priorities, with case-fixed mappings for use
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1161
	epoc32priorities = {
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1162
		'low':'Low',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1163
		'background':'Background',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1164
		'foreground':'Foreground',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1165
		'high':'High',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1166
		'windowserver':'WindowServer',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1167
		'fileserver':'FileServer',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1168
		'realtimeserver':'RealTimeServer',
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1169
		'supervisor':'SuperVisor'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1170
		}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1171
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1172
	# Known capability flags with associated bitwise operations
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1173
	supportedCapabilities = {
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1174
		'tcb':(1<<0),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1175
		'commdd':(1<<1),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1176
		'powermgmt':(1<<2),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1177
		'multimediadd':(1<<3),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1178
		'readdevicedata':(1<<4),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1179
		'writedevicedata':(1<<5),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1180
		'drm':(1<<6),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1181
		'trustedui':(1<<7),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1182
		'protserv':(1<<8),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1183
		'diskadmin':(1<<9),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1184
		'networkcontrol':(1<<10),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1185
		'allfiles':(1<<11),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1186
		'swevent':(1<<12),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1187
		'networkservices':(1<<13),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1188
		'localservices':(1<<14),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1189
		'readuserdata':(1<<15),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1190
		'writeuserdata':(1<<16),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1191
		'location':(1<<17),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1192
		'surroundingsdd':(1<<18),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1193
		'userenvironment':(1<<19),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1194
	# Old capability names have zero value
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1195
		'root':0,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1196
		'mediadd':0,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1197
		'readsystemdata':0,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1198
		'writesystemdata':0,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1199
		'sounddd':0,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1200
		'uidd':0,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1201
		'killanyprocess':0,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1202
		'devman':0,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1203
		'phonenetwork':0,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1204
		'localnetwork':0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1205
	  	}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1206
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1207
	library_re = re.compile(r"^(?P<name>[^{]+?)(?P<version>{(?P<major>[0-9]+)\.(?P<minor>[0-9]+)})?(\.(lib|dso))?$",re.I)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1208
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1209
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1210
	def __init__(self, aRaptor, aMmpfilename, aBldInfFilename):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1211
		super(MMPRaptorBackend,self).__init__()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1212
		self.platformblock = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1213
		self.__Raptor = aRaptor
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1214
		self.__debug("-----+++++ %s " % aMmpfilename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1215
		self.BuildVariant = raptor_data.Variant(name = "mmp")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1216
		self.ApplyVariants = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1217
		self.ResourceVariants = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1218
		self.BitmapVariants = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1219
		self.StringTableVariants = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1220
		self.__bldInfFilename = aBldInfFilename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1221
		self.__targettype = "UNKNOWN"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1222
		self.__currentMmpFile = aMmpfilename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1223
		self.__defFileRoot = self.__currentMmpFile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1224
		self.__currentLineNumber = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1225
		self.__sourcepath = raptor_utilities.resolveSymbianPath(self.__currentMmpFile, "")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1226
		self.__userinclude = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1227
		self.__systeminclude = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1228
		self.__bitmapSourcepath = self.__sourcepath
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1229
		self.__current_resource = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1230
		self.__resourceFiles = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1231
		self.__pageConflict = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1232
		self.__debuggable = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1233
		self.__compressionKeyword = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1234
		self.sources = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1235
		self.capabilities = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1236
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1237
		self.__TARGET = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1238
		self.__TARGETEXT = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1239
		self.deffile = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1240
		self.__LINKAS = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1241
		self.nostrictdef = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1242
		self.featureVariant = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1243
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1244
		self.__currentResourceVariant = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1245
		self.__currentStringTableVariant = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1246
		self.__explicitversion = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1247
		self.__versionhex = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1248
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1249
		# "ALL" capability calculated based on the total capabilities currently supported
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1250
		allCapabilities = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1251
		for supportedCapability in MMPRaptorBackend.supportedCapabilities.keys():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1252
			allCapabilities = allCapabilities | MMPRaptorBackend.supportedCapabilities[supportedCapability]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1253
		MMPRaptorBackend.supportedCapabilities['all'] = allCapabilities
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1254
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1255
	# Permit unit-testing output without a Raptor context
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1256
	def __debug(self, format, *extras):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1257
		if (self.__Raptor):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1258
			self.__Raptor.Debug(format, *extras)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1259
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1260
	def __warn(self, format, *extras):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1261
		if (self.__Raptor):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1262
			self.__Raptor.Warn(format, *extras)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1263
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1264
	def doPreProcessorComment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1265
		commentDetail = getPreProcessorCommentDetail(toks[0])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1266
		self.__currentMmpFile = commentDetail[0].GetLocalString()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1267
		self.__currentLineNumber = commentDetail[1]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1268
		self.__debug("Current file %s, line number %s\n"  % (self.__currentMmpFile,str(self.__currentLineNumber)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1269
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1270
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1271
	def doBlankLine(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1272
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1273
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1274
	def doStartPlatform(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1275
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1276
		self.__debug( "Start Platform block "+toks[0])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1277
		self.platformblock = toks[0]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1278
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1279
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1280
	def doEndPlatform(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1281
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1282
		self.__debug( "Finalise platform " + self.platformblock)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1283
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1284
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1285
	def doSetSwitch(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1286
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1287
		prefix=""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1288
		varname = toks[0].upper()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1289
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1290
		# A bright spark made the optionname the same as
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1291
		# the env variable. One will override the other if we pass this
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1292
		# on to make.  Add a prefix to prevent the clash.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1293
		if varname=='ARMINC':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1294
			prefix="SET_"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1295
			self.__debug( "Set switch "+toks[0]+" ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1296
			self.BuildVariant.AddOperation(raptor_data.Set(prefix+varname, "1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1297
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1298
		elif varname=='NOSTRICTDEF':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1299
			self.nostrictdef = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1300
			self.__debug( "Set switch "+toks[0]+" ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1301
			self.BuildVariant.AddOperation(raptor_data.Set(prefix+varname, "1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1302
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1303
		elif varname == 'PAGED':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1304
			self.BuildVariant.AddOperation(raptor_data.Set(varname, "1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1305
			self.__debug( "Set switch PAGE ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1306
			self.BuildVariant.AddOperation(raptor_data.Set("PAGEDCODE_OPTION", "paged"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1307
			self.__debug( "Set switch PAGEDCODE ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1308
			self.BuildVariant.AddOperation(raptor_data.Set("PAGEDDATA_OPTION", "paged"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1309
			self.__debug( "Set data PAGEDDATA ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1310
			self.__pageConflict.append("PAGEDCODE")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1311
			self.__pageConflict.append("PAGEDDATA")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1312
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1313
		elif varname == 'UNPAGED':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1314
			self.BuildVariant.AddOperation(raptor_data.Set("PAGED", "0"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1315
			self.__debug( "Set switch PAGED OFF")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1316
			self.BuildVariant.AddOperation(raptor_data.Set("PAGEDCODE_OPTION", "unpaged"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1317
			self.__debug( "Set switch PAGEDCODE OFF")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1318
			self.BuildVariant.AddOperation(raptor_data.Set("PAGEDDATA_OPTION", "unpaged"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1319
			self.__debug( "Set data PAGEDDATA OFF")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1320
			self.__pageConflict.append("UNPAGEDCODE")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1321
			self.__pageConflict.append("UNPAGEDDATA")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1322
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1323
		elif varname == 'PAGEDCODE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1324
			self.BuildVariant.AddOperation(raptor_data.Set("PAGEDCODE_OPTION", "paged"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1325
			self.__debug( "Set switch " + varname + " ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1326
			self.__pageConflict.append(varname)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1327
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1328
		elif varname == 'PAGEDDATA':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1329
			self.BuildVariant.AddOperation(raptor_data.Set("PAGEDDATA_OPTION", "paged"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1330
			self.__debug( "Set switch " + varname + " ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1331
			self.__pageConflict.append(varname)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1332
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1333
		elif varname == 'UNPAGEDCODE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1334
			self.BuildVariant.AddOperation(raptor_data.Set("PAGEDCODE_OPTION", "unpaged"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1335
			self.__debug( "Set switch " + varname + " ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1336
			self.__pageConflict.append(varname)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1337
		elif varname == 'UNPAGEDDATA':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1338
			self.BuildVariant.AddOperation(raptor_data.Set("PAGEDDATA_OPTION", "unpaged"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1339
			self.__debug( "Set switch " + varname + " ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1340
			self.__pageConflict.append(varname)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1341
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1342
		elif varname == 'NOLINKTIMECODEGENERATION':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1343
			self.BuildVariant.AddOperation(raptor_data.Set("LTCG",""))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1344
			self.__debug( "Set switch " + varname + " OFF")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1345
		elif varname == 'NOMULTIFILECOMPILATION':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1346
			self.BuildVariant.AddOperation(raptor_data.Set("MULTIFILE_ENABLED",""))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1347
			self.__debug( "Set switch " + varname + " OFF")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1348
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1349
		elif varname == 'DEBUGGABLE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1350
			if self.__debuggable != "udeb":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1351
				self.__debuggable = "udeb urel"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1352
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1353
				self.__Raptor.Warn("DEBUGGABLE keyword ignored as DEBUGGABLE_UDEBONLY is already specified")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1354
		elif varname == 'DEBUGGABLE_UDEBONLY':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1355
			if self.__debuggable != "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1356
				self.__Raptor.Warn("DEBUGGABLE keyword has no effect as DEBUGGABLE or DEBUGGABLE_UDEBONLY is already set")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1357
			self.__debuggable = "udeb"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1358
		elif varname == 'FEATUREVARIANT':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1359
			self.BuildVariant.AddOperation(raptor_data.Set(varname,"1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1360
			self.featureVariant = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1361
		elif varname in ['COMPRESSTARGET', 'NOCOMPRESSTARGET', 'INFLATECOMPRESSTARGET', 'BYTEPAIRCOMPRESSTARGET']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1362
			if self.__compressionKeyword:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1363
				self.__Raptor.Warn("%s keyword in %s overrides earlier use of %s" % (varname, self.__currentMmpFile, self.__compressionKeyword))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1364
				self.BuildVariant.AddOperation(raptor_data.Set(self.__compressionKeyword,""))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1365
				self.__debug( "Set switch " + varname + " OFF")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1366
			self.BuildVariant.AddOperation(raptor_data.Set(varname,"1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1367
			self.__debug( "Set switch " + varname + " ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1368
			self.__compressionKeyword = varname
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1369
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1370
			self.__debug( "Set switch "+toks[0]+" ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1371
			self.BuildVariant.AddOperation(raptor_data.Set(prefix+varname, "1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1372
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1373
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1374
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1375
	def doAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1376
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1377
		varname = toks[0].upper()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1378
		if varname=='TARGET':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1379
			(self.__TARGET, self.__TARGETEXT) = os.path.splitext(toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1380
			self.__TARGETEXT = self.__TARGETEXT.lstrip('.')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1381
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1382
			self.BuildVariant.AddOperation(raptor_data.Set("REQUESTEDTARGETEXT", self.__TARGETEXT.lower()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1383
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1384
			lowercase_TARGET = self.__TARGET.lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1385
			self.__debug("Set "+toks[0]+" to " + lowercase_TARGET)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1386
			self.__debug("Set REQUESTEDTARGETEXT to " + self.__TARGETEXT.lower())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1387
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1388
			self.BuildVariant.AddOperation(raptor_data.Set("TARGET", self.__TARGET))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1389
			self.BuildVariant.AddOperation(raptor_data.Set("TARGET_lower", lowercase_TARGET))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1390
			if  lowercase_TARGET !=  self.__TARGET:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1391
				self.__debug("TARGET is not lowercase: '%s' - might cause BC problems." % self.__TARGET)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1392
		elif varname=='TARGETTYPE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1393
			self.__debug("Set "+toks[0]+" to " + str(toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1394
			self.__targettype=toks[1]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1395
			if  self.__targettype.lower() == "none":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1396
				self.BuildVariant.AddOperation(raptor_data.Set("TARGET", ""))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1397
				self.BuildVariant.AddOperation(raptor_data.Set("TARGET_lower",""))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1398
				self.BuildVariant.AddOperation(raptor_data.Set("REQUESTEDTARGETEXT", ""))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1399
			self.BuildVariant.AddOperation(raptor_data.Set(varname,toks[1].lower()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1400
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1401
		elif varname=='TARGETPATH':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1402
			value = toks[1].lower().replace('\\','/')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1403
			self.__debug("Set "+varname+" to " + value)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1404
			self.BuildVariant.AddOperation(raptor_data.Set(varname, value))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1405
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1406
		elif varname=='OPTION' or varname=='LINKEROPTION':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1407
			self.__debug("Set "+toks[1]+varname+" to " + str(toks[2]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1408
			self.BuildVariant.AddOperation(raptor_data.Append(varname+"_"+toks[1].upper()," ".join(toks[2])))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1409
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1410
			# Warn about OPTION ARMASM
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1411
			if "armasm" in toks[1].lower():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1412
				self.__Raptor.Warn(varname+" ARMASM has no effect (use OPTION ARMCC).")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1413
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1414
		elif varname=='OPTION_REPLACE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1415
			# Warn about OPTION_REPLACE ARMASM
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1416
			if "armasm" in toks[1].lower():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1417
				self.__Raptor.Warn("OPTION_REPLACE ARMASM has no effect (use OPTION_REPLACE ARMCC).")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1418
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1419
				args = " ".join(toks[2])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1420
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1421
				searchReplacePairs = self.resolveOptionReplace(args)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1422
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1423
				for searchReplacePair in searchReplacePairs:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1424
					self.__debug("Append %s to OPTION_REPLACE_%s", searchReplacePair, toks[1].upper())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1425
					self.BuildVariant.AddOperation(raptor_data.Append(varname+"_"+toks[1].upper(),searchReplacePair))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1426
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1427
		elif varname=='SYSTEMINCLUDE' or varname=='USERINCLUDE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1428
			for path in toks[1]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1429
				resolved = raptor_utilities.resolveSymbianPath(self.__currentMmpFile, path)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1430
				self.BuildVariant.AddOperation(raptor_data.Append(varname,resolved))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1431
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1432
				if varname=='SYSTEMINCLUDE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1433
					self.__systeminclude += ' ' + resolved
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1434
					self.__debug("  %s = %s",varname, self.__systeminclude)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1435
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1436
					self.__userinclude += ' ' + resolved
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1437
					self.__debug("  %s = %s",varname, self.__userinclude)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1438
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1439
				self.__debug("Appending %s to %s",resolved, varname)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1440
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1441
			self.__systeminclude = self.__systeminclude.strip()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1442
			self.__systeminclude = self.__systeminclude.rstrip('\/')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1443
			self.__userinclude = self.__userinclude.strip()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1444
			self.__userinclude = self.__userinclude.rstrip('\/')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1445
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1446
		elif varname=='EXPORTLIBRARY':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1447
			# Remove extension from the EXPORTLIBRARY name
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1448
			libName = toks[1].rsplit(".", 1)[0]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1449
			self.__debug("Set "+varname+" to " + libName)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1450
			self.BuildVariant.AddOperation(raptor_data.Set(varname,"".join(libName)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1451
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1452
		elif varname=='CAPABILITY':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1453
			for cap in toks[1]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1454
				cap = cap.lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1455
				self.__debug("Setting  "+toks[0]+": " + cap)
152
timothy.murphy@nokia.com
parents: 151 150
diff changeset
  1456
				if cap != "all":
151
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1457
					if not cap.startswith("-"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1458
						if not cap.startswith("+"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1459
							cap = "+" + cap	
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1460
				self.capabilities.append(cap)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1461
		elif varname=='DEFFILE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1462
			self.__defFileRoot = self.__currentMmpFile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1463
			self.deffile = toks[1]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1464
		elif varname=='LINKAS':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1465
			self.__debug("Set "+toks[0]+"  OPTION to " + str(toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1466
			self.__LINKAS = toks[1]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1467
			self.BuildVariant.AddOperation(raptor_data.Set(varname, toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1468
		elif varname=='SECUREID' or varname=='VENDORID':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1469
			hexoutput = MMPRaptorBackend.canonicalUID(toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1470
			self.__debug("Set "+toks[0]+"  OPTION to " + hexoutput)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1471
			self.BuildVariant.AddOperation(raptor_data.Set(varname, hexoutput))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1472
		elif varname=='VERSION':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1473
			if toks[-1] == "EXPLICIT":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1474
				self.__explicitversion = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1475
				self.BuildVariant.AddOperation(raptor_data.Set("EXPLICITVERSION", "1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1476
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1477
			vm = re.match(r'^(\d+)(\.(\d+))?$', toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1478
			if vm is not None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1479
				version = vm.groups()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1480
				# the major version number
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1481
				major = int(version[0],10)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1482
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1483
				# add in the minor number
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1484
				minor = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1485
				if version[1] is not None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1486
					minor = int(version[2],10)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1487
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1488
					self.__Raptor.Warn("VERSION (%s) missing '.minor' in %s, using '.0'" % (toks[1],self.__currentMmpFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1489
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1490
				self.__versionhex = "%04x%04x" % (major, minor)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1491
				self.BuildVariant.AddOperation(raptor_data.Set(varname, "%d.%d" %(major, minor)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1492
				self.BuildVariant.AddOperation(raptor_data.Set(varname+"HEX", self.__versionhex))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1493
				self.__debug("Set "+toks[0]+"  OPTION to " + toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1494
				self.__debug("Set "+toks[0]+"HEX OPTION to " + "%04x%04x" % (major,minor))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1495
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1496
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1497
				self.__Raptor.Warn("Invalid version supplied to VERSION (%s), using default value" % toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1498
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1499
		elif varname=='EPOCHEAPSIZE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1500
			# Standardise on sending hex numbers to the FLMS.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1501
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1502
			if toks[1].lower().startswith('0x'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1503
				min = long(toks[1],16)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1504
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1505
				min = long(toks[1],10)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1506
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1507
			if toks[2].lower().startswith('0x'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1508
				max = long(toks[2],16)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1509
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1510
				max = long(toks[2],10)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1511
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1512
			self.BuildVariant.AddOperation(raptor_data.Set(varname+"MIN", "%x" % min))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1513
			self.__debug("Set "+varname+"MIN  OPTION to '%x' (hex)" % min )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1514
			self.BuildVariant.AddOperation(raptor_data.Set(varname+"MAX", "%x" % max))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1515
			self.__debug("Set "+varname+"MAX  OPTION to '%x' (hex)" % max )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1516
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1517
			# Some toolchains require decimal versions of the min/max values, converted to KB and
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1518
			# rounded up to the next 1KB boundary
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1519
			min_dec_kb = (int(min) + 1023) / 1024
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1520
			max_dec_kb = (int(max) + 1023) / 1024
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1521
			self.BuildVariant.AddOperation(raptor_data.Set(varname+"MIN_DEC_KB", "%d" % min_dec_kb))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1522
			self.__debug("Set "+varname+"MIN  OPTION KB to '%d' (dec)" % min_dec_kb )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1523
			self.BuildVariant.AddOperation(raptor_data.Set(varname+"MAX_DEC_KB", "%d" % max_dec_kb))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1524
			self.__debug("Set "+varname+"MAX  OPTION KB to '%d' (dec)" % max_dec_kb )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1525
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1526
		elif varname=='EPOCSTACKSIZE':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1527
			if toks[1].lower().startswith('0x'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1528
				stack = long(toks[1],16)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1529
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1530
				stack = long(toks[1],10)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1531
			self.BuildVariant.AddOperation(raptor_data.Set(varname, "%x" % stack))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1532
			self.__debug("Set "+varname+"  OPTION to '%x' (hex)" % stack  )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1533
		elif varname=='EPOCPROCESSPRIORITY':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1534
			# low, background, foreground, high, windowserver, fileserver, realtimeserver or supervisor
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1535
			# These are case insensitive in metadata entries, but must be mapped to a static case pattern for use
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1536
			prio = toks[1].lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1537
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1538
			# NOTE: Original validation here didn't actually work.  This has been corrected to provide an error, but probably needs re-examination.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1539
			if not MMPRaptorBackend.epoc32priorities.has_key(prio):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1540
				self.__Raptor.Error("Priority setting '%s' is not a valid priority - should be one of %s.", prio, MMPRaptorBackend.epoc32priorities.values())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1541
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1542
				self.__debug("Set "+toks[0]+" to " +  MMPRaptorBackend.epoc32priorities[prio])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1543
				self.BuildVariant.AddOperation(raptor_data.Set(varname,MMPRaptorBackend.epoc32priorities[prio]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1544
		elif varname=='ROMTARGET' or varname=='RAMTARGET':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1545
			if len(toks) == 1:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1546
				self.__debug("Set "+toks[0]+" to <none>" )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1547
				self.BuildVariant.AddOperation(raptor_data.Set(varname,"<none>"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1548
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1549
				toks1 = str(toks[1]).replace("\\","/")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1550
				if toks1.find(","):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1551
					toks1 = re.sub("[,'\[\]]", "", toks1).replace("//","/")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1552
				self.__debug("Set "+toks[0]+" to " + toks1)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1553
				self.BuildVariant.AddOperation(raptor_data.Set(varname,toks1))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1554
		elif varname=='APPLY':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1555
			self.ApplyVariants.append(toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1556
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1557
			self.__debug("Set "+toks[0]+" to " + str(toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1558
			self.BuildVariant.AddOperation(raptor_data.Set(varname,"".join(toks[1])))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1559
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1560
			if varname=='LINKAS':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1561
				self.__LINKAS = toks[1]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1562
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1563
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1564
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1565
	def doAppend(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1566
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1567
		"""MMP command
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1568
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1569
		name=toks[0].upper()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1570
		if len(toks) == 1:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1571
			# list can be empty e.g. MACRO _FRED_ when fred it defined in the HRH
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1572
			# causes us to see just "MACRO" in the input - it is valid to ignore this
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1573
			self.__debug("Empty append list for " + name)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1574
			return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1575
		self.__debug("Append to "+name+" the values: " +str(toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1576
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1577
		if name=='MACRO':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1578
			name='MMPDEFS'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1579
		elif name=='LANG':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1580
			# don't break the environment variable
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1581
			name='LANGUAGES'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1582
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1583
		for item in toks[1]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1584
			if name=='MMPDEFS':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1585
				# Unquote any macros since the FLM does it anyhow
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1586
				if item.startswith('"') and item.endswith('"') \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1587
				or item.startswith("'") and item.endswith("'"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1588
					item = item.strip("'\"")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1589
			if name=='LIBRARY' or name=='DEBUGLIBRARY':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1590
				im = MMPRaptorBackend.library_re.match(item)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1591
				if not im:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1592
					self.__error("LIBRARY: %s Seems to have an invalid name.\nExpected xxxx.lib or xxxx.dso\n where xxxx might be\n\tname or \n\tname(n,m) where n is a major version number and m is a minor version number\n" %item)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1593
				d = im.groupdict()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1594
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1595
				item = d['name']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1596
				if d['version'] is not None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1597
					item += "{%04x%04x}" % (int(d['major']), int(d['minor']))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1598
				item += ".dso"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1599
			elif name=='STATICLIBRARY':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1600
				# the FLM will decide on the ending appropriate to the platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1601
				item = re.sub(r"^(.*)\.[Ll][Ii][Bb]$",r"\1", item)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1602
			elif name=="LANGUAGES":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1603
				item = item.lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1604
			elif (name=="WIN32_LIBRARY" and (item.startswith(".") or re.search(r'[\\|/]',item))) \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1605
				or (name=="WIN32_RESOURCE"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1606
				# Relatively pathed win32 libraries, and all win32 resources, are resolved in relation
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1607
				# to the wrapper bld.inf file in which their .mmp file is specified.  This equates to
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1608
				# the current working directory in ABLD operation.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1609
				item = raptor_utilities.resolveSymbianPath(self.__bldInfFilename, item)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1610
				
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1611
			self.BuildVariant.AddOperation(raptor_data.Append(name,item," "))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1612
			
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1613
			# maintain a debug library list, the same as LIBRARY but with DEBUGLIBRARY values
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1614
			# appended as they are encountered
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1615
			if name=='LIBRARY' or name=='DEBUGLIBRARY':
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1616
				self.BuildVariant.AddOperation(raptor_data.Append("LIBRARY_DEBUG",item," "))			
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1617
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1618
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1619
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1620
	def canonicalUID(number):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1621
		""" convert a UID string into an 8 digit hexadecimal string without leading 0x """
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1622
		if number.lower().startswith("0x"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1623
			n = int(number,16)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1624
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1625
			n = int(number,10)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1626
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1627
		return "%08x" % n
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1628
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1629
	canonicalUID = staticmethod(canonicalUID)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1630
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1631
	def doUIDAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1632
		"""A single UID command results in a number of spec variables"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1633
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1634
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1635
		hexoutput = MMPRaptorBackend.canonicalUID(toks[1][0])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1636
		self.__debug( "Set UID2 to %s" % hexoutput )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1637
		self.BuildVariant.AddOperation(raptor_data.Set("UID2", hexoutput))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1638
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1639
		if len(toks[1]) > 1:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1640
			hexoutput = MMPRaptorBackend.canonicalUID(toks[1][1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1641
			self.__debug( "Set UID3 to %s" % hexoutput)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1642
			self.BuildVariant.AddOperation(raptor_data.Set("UID3", hexoutput))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1643
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1644
		self.__debug( "done set UID")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1645
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1646
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1647
	def doSourcePathAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1648
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1649
		self.__sourcepath = raptor_utilities.resolveSymbianPath(self.__currentMmpFile, toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1650
		self.__debug( "Remembering self.sourcepath state:  "+str(toks[0])+" is now " + self.__sourcepath)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1651
		self.__debug("selfcurrentMmpFile: " + self.__currentMmpFile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1652
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1653
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1654
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1655
	def doSourceAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1656
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1657
		self.__debug( "Setting "+toks[0]+" to " + str(toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1658
		for file in toks[1]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1659
			# file is always relative to sourcepath but some MMP files
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1660
			# have items that begin with a slash...
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1661
			file = file.lstrip("/")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1662
			source = generic_path.Join(self.__sourcepath, file)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1663
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1664
			# If the SOURCEPATH itself begins with a '/', then dont look up the caseless version, since
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1665
			# we don't know at this time what $(EPOCROOT) will evaluate to.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1666
			if source.GetLocalString().startswith('$(EPOCROOT)'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1667
				self.sources.append(str(source))	
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1668
				self.__debug("Append SOURCE " + str(source))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1669
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1670
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1671
				foundsource = source.FindCaseless()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1672
				if foundsource == None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1673
					# Hope that the file will be generated later
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1674
					self.__debug("Sourcefile not found: %s" % source)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1675
					foundsource = source
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1676
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1677
				self.sources.append(str(foundsource))	
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1678
				self.__debug("Append SOURCE " + str(foundsource))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1679
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1680
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1681
		self.__debug("		sourcepath: " + self.__sourcepath)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1682
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1683
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1684
	# Resource
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1685
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1686
	def doOldResourceAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1687
		# Technically deprecated, but still used, so...
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1688
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1689
		self.__debug("Processing old-style "+toks[0]+" "+str(toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1690
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1691
		sysRes = (toks[0].lower() == "systemresource")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1692
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1693
		for rss in toks[1]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1694
			variant = raptor_data.Variant()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1695
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1696
			source = generic_path.Join(self.__sourcepath, rss)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1697
			variant.AddOperation(raptor_data.Set("SOURCE", str(source)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1698
			self.__resourceFiles.append(str(source))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1699
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1700
			target = source.File().rsplit(".", 1)[0]	# remove the extension
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1701
			variant.AddOperation(raptor_data.Set("TARGET", target))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1702
			variant.AddOperation(raptor_data.Set("TARGET_lower", target.lower()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1703
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1704
			header = target.lower() + ".rsg"			# filename policy
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1705
			variant.AddOperation(raptor_data.Set("HEADER", header))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1706
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1707
			if sysRes:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1708
				dsrtp = self.getDefaultSystemResourceTargetPath()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1709
				variant.AddOperation(raptor_data.Set("TARGETPATH", dsrtp))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1710
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1711
			self.ResourceVariants.append(variant)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1712
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1713
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1714
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1715
	def getDefaultSystemResourceTargetPath(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1716
		# the default systemresource TARGETPATH value should come from the
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1717
		# configuration rather than being hard-coded here. Then again, this
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1718
		# should really be deprecated away into oblivion...
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1719
		return "system/data"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1720
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1721
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1722
	def getDefaultResourceTargetPath(self, targettype):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1723
		# the different default TARGETPATH values should come from the
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1724
		# configuration rather than being hard-coded here.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1725
		if targettype == "plugin":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1726
			return "resource/plugins"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1727
		if targettype == "pdl":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1728
			return "resource/printers"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1729
		return ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1730
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1731
	def resolveOptionReplace(self, content):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1732
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1733
		Constructs search/replace pairs based on .mmp OPTION_REPLACE entries for use on tool command lines
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1734
		within FLMS.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1735
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1736
		Depending on what's supplied to OPTION_REPLACE <TOOL>, the core part of the <TOOL> command line
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1737
		in the relevant FLM will have search and replace actions performed on it post-expansion (but pre-
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1738
		any OPTION <TOOL> additions).
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1739
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1740
		In terms of logic, we try to follow what ABLD does, as the current behaviour is undocumented.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1741
		What happens is a little inconsistent, and best described by some generic examples:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1742
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1743
			OPTION_REPLACE TOOL existing_option replacement_value
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1744
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1745
				Replace all instances of "option existing_value" with "option replacement_value"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1746
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1747
			OPTION_REPLACE TOOL existing_option replacement_option
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1748
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1749
				Replace all instances of "existing_option" with "replacement_option".
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1750
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1751
			If "existing_option" is present in isolation then a removal is performed.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1752
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1753
		Any values encountered that don't follow an option are ignored.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1754
		Options are identified as being prefixed with either '-' or '--'.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1755
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1756
		The front-end processes each OPTION_REPLACE entry and then appends one or more search/replace pairs
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1757
		to an OPTION_REPLACE_<TOOL> variable in the following format:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1758
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1759
		     search<->replace
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1760
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1761
		# Note that, for compatibility reasons, the following is mostly a port to Python of the corresponding
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1762
		# ABLD Perl, and hence maintains ABLD's idiosyncrasies in what it achieves
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1763
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1764
		searchReplacePairs = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1765
		matches = re.findall("-{1,2}\S+\s*(?!-)\S*",content)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1766
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1767
		if matches:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1768
			# reverse so we can process as a stack whilst retaining original order
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1769
			matches.reverse()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1770
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1771
			while (len(matches)):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1772
				match = matches.pop()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1773
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1774
				standaloneMatch = re.match('^(?P<option>\S+)\s+(?P<value>\S+)$', match)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1775
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1776
				if (standaloneMatch):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1777
					# Option listed standalone with a replacement value
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1778
					# Example:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1779
					# 	OPTION_REPLACE ARMCC --cpu 6
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1780
					# Intention:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1781
					# 	Replace instances of  "--cpu <something>" with "--cpu 6"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1782
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1783
					# Substitute any existing "option <existing_value>" instances with a single word
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1784
					# "@@<existing_value>" for later replacement
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1785
					searchReplacePairs.append('%s <->@@' % standaloneMatch.group('option'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1786
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1787
					# Replace "@@<existing_value>" entries from above with "option <new_value>" entries
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1788
					# A pattern substitution is used to cover pre-existing values
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1789
					searchReplacePairs.append('@@%%<->%s %s' % (standaloneMatch.group('option'), standaloneMatch.group('value')))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1790
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1791
					# Options specified in search/replace pairs with optional values
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1792
					# Example:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1793
					#	OPTION_REPLACE ARMCC --O2 --O3
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1794
					# Intention:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1795
					#	Replace instances of "--O2" with "--O3"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1796
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1797
					# At this point we will be looking at just the search option - there may or may not
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1798
					# be a replacement to consider
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1799
					search = match
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1800
					replace = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1801
					if len(matches):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1802
						replace = matches.pop()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1803
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1804
					searchReplacePairs.append('%s<->%s' % (search, replace))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1805
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1806
			# Replace spaces to maintain word-based grouping in downstream makefile lists
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1807
			for i in range(0,len(searchReplacePairs)):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1808
				searchReplacePairs[i] = searchReplacePairs[i].replace(' ','%20')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1809
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1810
		return searchReplacePairs
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1811
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1812
	def doStartResource(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1813
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1814
		self.__debug("Start RESOURCE "+toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1815
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1816
		self.__current_resource = generic_path.Path(self.__sourcepath, toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1817
		self.__current_resource = str(self.__current_resource)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1818
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1819
		self.__debug("sourcepath: " + self.__sourcepath)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1820
		self.__debug("self.__current_resource source: " + toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1821
		self.__debug("adjusted self.__current_resource source=" + self.__current_resource)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1822
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1823
		self.__currentResourceVariant = raptor_data.Variant()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1824
		self.__currentResourceVariant.AddOperation(raptor_data.Set("SOURCE", self.__current_resource))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1825
		self.__resourceFiles.append(self.__current_resource)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1826
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1827
		# The target name is the basename of the resource without the extension
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1828
		# e.g. "/fred/129ab34f.rss" would have a target name of "129ab34f"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1829
		target = self.__current_resource.rsplit("/",1)[-1]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1830
		target = target.rsplit(".",1)[0]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1831
		self.__currentResourceVariant.AddOperation(raptor_data.Set("TARGET", target))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1832
		self.__currentResourceVariant.AddOperation(raptor_data.Set("TARGET_lower", target.lower()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1833
		self.__headerspecified = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1834
		self.__headeronlyspecified = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1835
		self.__current_resource_header = target.lower() + ".rsg"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1836
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1837
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1838
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1839
	def doResourceAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1840
		""" Assign variables for resource files """
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1841
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1842
		varname = toks[0].upper() # the mmp keyword
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1843
		varvalue = "".join(toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1844
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1845
		# Get rid of any .rsc extension because the build system
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1846
		# needs to have it stripped off to calculate other names
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1847
		# for other purposes and # we aren't going to make it
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1848
		# optional anyhow.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1849
		if varname == "TARGET":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1850
			target_withext = varvalue.rsplit("/\\",1)[-1]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1851
			target = target_withext.rsplit(".",1)[0]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1852
			self.__current_resource_header = target.lower() + ".rsg"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1853
			self.__currentResourceVariant.AddOperation(raptor_data.Set("TARGET_lower", target.lower()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1854
			self.__debug("Set resource "+varname+" to " + target)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1855
			self.__currentResourceVariant.AddOperation(raptor_data.Set(varname,target))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1856
		if varname == "TARGETPATH":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1857
			varvalue=varvalue.replace('\\','/')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1858
			self.__debug("Set resource "+varname+" to " + varvalue)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1859
			self.__currentResourceVariant.AddOperation(raptor_data.Set(varname,varvalue))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1860
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1861
			self.__debug("Set resource "+varname+" to " + varvalue)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1862
			self.__currentResourceVariant.AddOperation(raptor_data.Set(varname,varvalue))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1863
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1864
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1865
	def doResourceAppend(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1866
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1867
		self.__debug("Append resource to "+toks[0]+" the values: " +str(toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1868
		varname = toks[0].upper()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1869
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1870
		# we cannot use LANG as it interferes with the environment
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1871
		if varname == "LANG":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1872
			varname = "LANGUAGES"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1873
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1874
		for item in toks[1]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1875
			if varname == "LANGUAGES":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1876
				item = item.lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1877
			self.__currentResourceVariant.AddOperation(raptor_data.Append(varname,item))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1878
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1879
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1880
	def doResourceSetSwitch(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1881
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1882
		name = toks[0].upper()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1883
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1884
		if name == "HEADER":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1885
			self.__headerspecified = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1886
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1887
		elif name == "HEADERONLY":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1888
			self.__headeronlyspecified = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1889
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1890
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1891
			value = "1"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1892
			self.__debug( "Set resource switch " + name + " " + value)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1893
			self.__currentResourceVariant.AddOperation(raptor_data.Set(name, value))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1894
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1895
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1896
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1897
	def doEndResource(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1898
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1899
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1900
		# Header name can change, depening if there was a TARGET defined or not, so it must be appended at the end
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1901
		if self.__headerspecified:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1902
			self.__debug("Set resource switch HEADER " + self.__current_resource_header)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1903
			self.__currentResourceVariant.AddOperation(raptor_data.Set("HEADER", self.__current_resource_header))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1904
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1905
		if self.__headeronlyspecified:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1906
			self.__debug("Set resource switch HEADERONLY " + self.__current_resource_header)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1907
			self.__currentResourceVariant.AddOperation(raptor_data.Set("HEADER", self.__current_resource_header))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1908
			self.__currentResourceVariant.AddOperation(raptor_data.Set("HEADERONLY", "True"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1909
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1910
		self.__debug("End RESOURCE")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1911
		self.ResourceVariants.append(self.__currentResourceVariant)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1912
		self.__currentResourceVariant = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1913
		self.__current_resource = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1914
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1915
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1916
	# Bitmap
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1917
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1918
	def doStartBitmap(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1919
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1920
		self.__debug("Start BITMAP "+toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1921
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1922
		self.__currentBitmapVariant = raptor_data.Variant(name = toks[1].replace('.','_'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1923
		# Use BMTARGET and BMTARGET_lower because that prevents
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1924
		# confusion with the TARGET and TARGET_lower of our parent MMP
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1925
		# when setting the OUTPUTPATH.  This in turn allows us to
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1926
		# not get tripped up by multiple mbms being generated with
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1927
		# the same name to the same directory.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1928
		self.__currentBitmapVariant.AddOperation(raptor_data.Set("BMTARGET", toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1929
		self.__currentBitmapVariant.AddOperation(raptor_data.Set("BMTARGET_lower", toks[1].lower()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1930
		self.__currentBitmapVariant.AddOperation(raptor_data.Set("SOURCE", ""))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1931
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1932
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1933
	def doBitmapAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1934
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1935
		self.__debug("Set bitmap "+toks[0]+" to " + str(toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1936
		name = toks[0].upper()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1937
		value = "".join(toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1938
		if name == "TARGETPATH":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1939
			value = value.replace('\\','/')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1940
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1941
		self.__currentBitmapVariant.AddOperation(raptor_data.Set(name,value))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1942
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1943
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1944
	def doBitmapSourcePathAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1945
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1946
		self.__debug("Previous bitmap sourcepath:" + self.__bitmapSourcepath)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1947
		self.__bitmapSourcepath = raptor_utilities.resolveSymbianPath(self.__currentMmpFile, toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1948
		self.__debug("New bitmap sourcepath: " + self.__bitmapSourcepath)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1949
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1950
	def doBitmapSourceAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1951
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1952
		self.__debug( "Setting "+toks[0]+" to " + str(toks[1]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1953
		# The first "source" is the colour depth for all the others.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1954
		# The depth format is b[,m] where b is the bitmap depth and m is
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1955
		# the mask depth.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1956
		# Valid values for b are: 1 2 4 8 c4 c8 c12 c16 c24 c32 c32a (?)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1957
		# Valid values for m are: 1 8 (any number?)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1958
		#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1959
		# If m is specified then the bitmaps are in pairs: b0 m0 b1 m1...
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1960
		# If m is not specified then there are no masks, just bitmaps: b0 b1...
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1961
		colordepth = toks[1][0].lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1962
		if "," in colordepth:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1963
			(bitmapdepth, maskdepth) = colordepth.split(",")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1964
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1965
			bitmapdepth = colordepth
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1966
			maskdepth = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1967
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1968
		sources=""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1969
		mask = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1970
		for file in toks[1][1:]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1971
			path = generic_path.Join(self.__bitmapSourcepath, file)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1972
			if sources:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1973
				sources += " "
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1974
			if mask:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1975
				sources += "DEPTH=" + maskdepth + " FILE=" + str(path)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1976
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1977
				sources += "DEPTH=" + bitmapdepth + " FILE=" + str(path)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1978
			if maskdepth:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1979
				mask = not mask
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1980
		self.__debug("sources: " + sources)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1981
		self.__currentBitmapVariant.AddOperation(raptor_data.Append("SOURCE", sources))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1982
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1983
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1984
	def doBitmapSetSwitch(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1985
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1986
		self.__debug( "Set bitmap switch "+toks[0]+" ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1987
		self.__currentBitmapVariant.AddOperation(raptor_data.Set(toks[0].upper(), "1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1988
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1989
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1990
	def doEndBitmap(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1991
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1992
		self.__bitmapSourcepath = self.__sourcepath
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1993
		self.BitmapVariants.append(self.__currentBitmapVariant)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1994
		self.__currentBitmapVariant = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1995
		self.__debug("End BITMAP")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1996
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1997
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1998
	# Stringtable
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  1999
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2000
	def doStartStringTable(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2001
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2002
		self.__debug( "Start STRINGTABLE "+toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2003
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2004
		specstringtable = generic_path.Join(self.__sourcepath, toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2005
		uniqname = specstringtable.File().replace('.','_') # corrected, filename only
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2006
		source = str(specstringtable.FindCaseless())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2007
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2008
		self.__debug("sourcepath: " + self.__sourcepath)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2009
		self.__debug("stringtable: " + toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2010
		self.__debug("adjusted stringtable source=" + source)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2011
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2012
		self.__currentStringTableVariant = raptor_data.Variant(name = uniqname)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2013
		self.__currentStringTableVariant.AddOperation(raptor_data.Set("SOURCE", source))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2014
		self.__currentStringTableVariant.AddOperation(raptor_data.Set("EXPORTPATH", ""))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2015
		self.__stringtableExported = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2016
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2017
		# The target name by default is the name of the stringtable without the extension
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2018
		# e.g. the stringtable "/fred/http.st" would have a default target name of "http"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2019
		stringtable_withext = specstringtable.File()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2020
		self.__stringtable = stringtable_withext.rsplit(".",1)[0].lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2021
		self.__currentStringTableVariant.AddOperation(raptor_data.Set("TARGET", self.__stringtable))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2022
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2023
		self.__stringtableHeaderonlyspecified = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2024
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2025
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2026
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2027
	def doStringTableAssignment(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2028
		""" Assign variables for stringtables """
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2029
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2030
		varname = toks[0].upper() # the mmp keyword
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2031
		varvalue = "".join(toks[1])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2032
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2033
		# Get rid of any .rsc extension because the build system
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2034
		# needs to have it stripped off to calculate other names
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2035
		# for other purposes and # we aren't going to make it
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2036
		# optional anyhow.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2037
		if varname == "EXPORTPATH":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2038
			finalvalue = raptor_utilities.resolveSymbianPath(self.__currentMmpFile, varvalue)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2039
			self.__stringtableExported = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2040
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2041
			finalvalue = varvalue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2042
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2043
		self.__debug("Set stringtable "+varname+" to " + finalvalue)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2044
		self.__currentStringTableVariant.AddOperation(raptor_data.Set(varname,finalvalue))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2045
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2046
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2047
	def doStringTableSetSwitch(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2048
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2049
		if toks[0].upper()== "HEADERONLY":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2050
			self.__stringtableHeaderonlyspecified = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2051
			self.__debug( "Set stringtable switch "+toks[0]+" ON")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2052
			self.__currentStringTableVariant.AddOperation(raptor_data.Set(toks[0].upper(), "1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2053
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2054
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2055
	def doEndStringTable(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2056
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2057
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2058
		if not self.__stringtableExported:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2059
			# There was no EXPORTPATH specified for this stringtable
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2060
			# so for our other code to be able to reference it we
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2061
			# must add the path of the generated location to the userinclude path
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2062
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2063
			ipath = "$(OUTPUTPATH)"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2064
			self.BuildVariant.AddOperation(raptor_data.Append("USERINCLUDE",ipath))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2065
			self.__userinclude += ' ' + ipath
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2066
			self.__debug("  USERINCLUDE = %s", self.__userinclude)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2067
			self.__userinclude.strip()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2068
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2069
		self.StringTableVariants.append(self.__currentStringTableVariant)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2070
		self.__currentStringTableVariant = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2071
		self.__debug("End STRINGTABLE")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2072
		if not self.__stringtableHeaderonlyspecified:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2073
			# Have to assume that this is where the cpp file will be.  This has to be maintained
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2074
			# in sync with the FLM's idea of where this file should be.  We need a better way.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2075
			# Interfaces also need outputs that allow other interfaces to refer to their outputs
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2076
			# without having to "know" where they will be.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2077
			self.sources.append('$(OUTPUTPATH)/' + self.__stringtable + '.cpp')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2078
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2079
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2080
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2081
	def doUnknownStatement(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2082
		self.__warn("%s (%d) : Unrecognised Keyword %s", self.__currentMmpFile, self.__currentLineNumber, str(toks))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2083
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2084
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2085
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2086
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2087
	def doUnknownBlock(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2088
		self.__warn("%s (%d) : Unrecognised Block %s", self.__currentMmpFile, self.__currentLineNumber, str(toks))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2089
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2090
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2091
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2092
	def doDeprecated(self,s,loc,toks):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2093
		self.__debug( "Deprecated command " + str(toks))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2094
		self.__warn("%s (%d) : %s is deprecated .mmp file syntax", self.__currentMmpFile, self.__currentLineNumber, str(toks))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2095
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2096
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2097
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2098
	def doNothing(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2099
		self.__currentLineNumber += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2100
		return "OK"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2101
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2102
	def finalise(self, aBuildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2103
		"""Post-processing of data that is only applicable in the context of a fully
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2104
		processed .mmp file."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2105
		resolvedDefFile = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2106
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2107
		if self.__TARGET:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2108
			defaultRootName = self.__TARGET
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2109
			if self.__TARGETEXT!="":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2110
				defaultRootName += "." + self.__TARGETEXT
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2111
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2112
			# NOTE: Changing default .def file name based on the LINKAS argument is actually
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2113
			# a defect, but this follows the behaviour of the current build system.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2114
			if (self.__LINKAS):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2115
				defaultRootName = self.__LINKAS
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2116
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2117
			resolvedDefFile = self.resolveDefFile(defaultRootName, aBuildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2118
			self.__debug("Resolved def file:  %s" % resolvedDefFile )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2119
			# We need to store this resolved deffile location for the FREEZE target
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2120
			self.BuildVariant.AddOperation(raptor_data.Set("RESOLVED_DEFFILE", resolvedDefFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2121
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2122
		# If a deffile is specified, an FLM will put in a dependency.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2123
		# If a deffile is specified then raptor_meta will guess a name but:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2124
		#	1) If the guess is wrong then the FLM will complain "no rule to make ..."
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2125
		#	2) In some cases, e.g. plugin, 1) is not desirable as the presence of a def file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2126
		#		is not a necessity.  In these cases the FLM needs to know if DEFFILE
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2127
		#		is a guess or not so it can decide if a dependency should be added.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2128
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2129
		# We check that the def file exists and that it is non-zero (incredible
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2130
		# that this should be needed).
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2131
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2132
		deffile_keyword="1"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2133
		if self.deffile == "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2134
			# If the user didn't specify a deffile name then
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2135
			# we must be guessing
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2136
			# Let's check if our guess actually corresponds to a
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2137
			# real file.  If it does then that confims the guess.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2138
			#  If there's no file then we still need to pass make the name
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2139
			# so it can complain about there not being a DEF file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2140
			# for this particular target type and fail to build this target.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2141
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2142
			deffile_keyword=""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2143
			try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2144
				findpath = generic_path.Path(resolvedDefFile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2145
				foundfile = findpath.FindCaseless()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2146
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2147
				if foundfile == None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2148
					raise IOError("file not found")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2149
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2150
				self.__debug("Found DEFFILE  " + foundfile.GetLocalString())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2151
				rfstat = os.stat(foundfile.GetLocalString())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2152
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2153
				mode = rfstat[stat.ST_MODE]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2154
				if mode != None and stat.S_ISREG(mode) and rfstat[stat.ST_SIZE] > 0:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2155
					resolvedDefFile = str(foundfile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2156
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2157
					resolvedDefFile=""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2158
			except Exception,e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2159
				self.__debug("While Searching for an IMPLIED  DEFFILE: %s: %s" % (str(e),str(findpath)) )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2160
				resolvedDefFile=""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2161
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2162
			if not resolvedDefFile == "":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2163
				try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2164
					findpath = generic_path.Path(resolvedDefFile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2165
					resolvedDefFile = str(findpath.FindCaseless())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2166
					if resolvedDefFile=="None":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2167
						raise IOError("file not found")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2168
				except Exception,e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2169
					self.__warn("While Searching for a SPECIFIED DEFFILE: %s: %s" % (str(e),str(findpath)) )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2170
					resolvedDefFile=""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2171
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2172
				self.__warn("DEFFILE KEYWORD used (%s) but def file not resolved" % (self.deffile) )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2173
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2174
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2175
		self.BuildVariant.AddOperation(raptor_data.Set("DEFFILE", resolvedDefFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2176
		self.__debug("Set DEFFILE to " + resolvedDefFile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2177
		self.BuildVariant.AddOperation(raptor_data.Set("DEFFILEKEYWORD", deffile_keyword))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2178
		self.__debug("Set DEFFILEKEYWORD to '%s'",deffile_keyword)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2179
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2180
		# if this target type has a default TARGETPATH other than "" for
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2181
		# resources then we need to add that default to all resources which
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2182
		# do not explicitly set the TARGETPATH themselves.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2183
		tp = self.getDefaultResourceTargetPath(self.getTargetType())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2184
		if tp:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2185
			for i,var in enumerate(self.ResourceVariants):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2186
				# does this resource specify its own TARGETPATH?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2187
				needTP = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2188
				for op in var.ops:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2189
					if isinstance(op, raptor_data.Set) \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2190
					and op.name == "TARGETPATH":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2191
						needTP = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2192
						break
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2193
				if needTP:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2194
					self.ResourceVariants[i].AddOperation(raptor_data.Set("TARGETPATH", tp))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2195
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2196
		# some core build configurations need to know about the resource builds, and
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2197
		# some resource building configurations need knowledge of the core build
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2198
		for resourceFile in self.__resourceFiles:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2199
			self.BuildVariant.AddOperation(raptor_data.Append("RESOURCEFILES", resourceFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2200
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2201
		for i,var in enumerate(self.ResourceVariants):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2202
			self.ResourceVariants[i].AddOperation(raptor_data.Set("MAIN_TARGET_lower", self.__TARGET.lower()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2203
			self.ResourceVariants[i].AddOperation(raptor_data.Set("MAIN_REQUESTEDTARGETEXT", self.__TARGETEXT.lower()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2204
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2205
		# Create Capability variable in one SET operation (more efficient than multiple appends)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2206
		
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2207
		self.BuildVariant.AddOperation(raptor_data.Set("CAPABILITY","".join(self.capabilities)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2208
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2209
		# Resolve combined capabilities as hex flags, for configurations that require them
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2210
		capabilityFlag1 = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2211
		capabilityFlag2 = 0			# Always 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2212
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2213
		for capability in self.capabilities:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2214
			invert = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2215
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2216
			if capability.startswith('-'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2217
				invert = 0xffffffff
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2218
				capability = capability[1:]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2219
			elif capability.startswith('+'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2220
				capability = capability[1:]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2221
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2222
			if MMPRaptorBackend.supportedCapabilities.has_key(capability):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2223
				capabilityFlag1 = capabilityFlag1 ^ invert
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2224
				capabilityFlag1 = capabilityFlag1 | MMPRaptorBackend.supportedCapabilities[capability]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2225
				capabilityFlag1 = capabilityFlag1 ^ invert
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2226
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2227
		capabilityFlag1 = "%08xu" % capabilityFlag1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2228
		capabilityFlag2 = "%08xu" % capabilityFlag2
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2229
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2230
		self.BuildVariant.AddOperation(raptor_data.Set("CAPABILITYFLAG1", capabilityFlag1))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2231
		self.__debug ("Set CAPABILITYFLAG1 to " + capabilityFlag1)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2232
		self.BuildVariant.AddOperation(raptor_data.Set("CAPABILITYFLAG2", capabilityFlag2))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2233
		self.__debug ("Set CAPABILITYFLAG2 to " + capabilityFlag2)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2234
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2235
		# For non-Feature Variant builds, the location of the product include hrh file is
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2236
		# appended to the SYSTEMINCLUDE list
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2237
		if not aBuildPlatform['ISFEATUREVARIANT']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2238
			productIncludePath = str(aBuildPlatform['VARIANT_HRH'].Dir())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2239
			self.BuildVariant.AddOperation(raptor_data.Append("SYSTEMINCLUDE",productIncludePath))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2240
			self.__debug("Appending product include location %s to SYSTEMINCLUDE",productIncludePath)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2241
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2242
		# Specifying both a PAGED* and its opposite UNPAGED* keyword in a .mmp file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2243
		# will generate a warning and the last keyword specified will take effect.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2244
		self.__pageConflict.reverse()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2245
		if "PAGEDCODE" in self.__pageConflict and "UNPAGEDCODE" in self.__pageConflict:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2246
			for x in self.__pageConflict:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2247
				if x == "PAGEDCODE" or x == "UNPAGEDCODE":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2248
					self.__Raptor.Warn("Both PAGEDCODE and UNPAGEDCODE are specified. The last one %s will take effect" % x)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2249
					break
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2250
		if "PAGEDDATA" in self.__pageConflict and "UNPAGEDDATA" in self.__pageConflict:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2251
			for x in self.__pageConflict:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2252
				if x == "PAGEDDATA" or x == "UNPAGEDDATA":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2253
					self.__Raptor.Warn("Both PAGEDDATA and UNPAGEDDATA are specified. The last one %s will take effect" % x)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2254
					break
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2255
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2256
		# Set Debuggable
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2257
		self.BuildVariant.AddOperation(raptor_data.Set("DEBUGGABLE", self.__debuggable))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2258
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2259
		if self.__explicitversion:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2260
			self.BuildVariant.AddOperation(raptor_data.Append("UNIQUETARGETPATH","$(TARGET_lower)_$(VERSIONHEX)_$(REQUESTEDTARGETEXT)",'/'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2261
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2262
			self.BuildVariant.AddOperation(raptor_data.Append("UNIQUETARGETPATH","$(TARGET_lower)_$(REQUESTEDTARGETEXT)",'/'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2263
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2264
		# Put the list of sourcefiles in with one Set operation - saves memory
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2265
		# and performance over using multiple Append operations.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2266
		self.BuildVariant.AddOperation(raptor_data.Set("SOURCE",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2267
						   " ".join(self.sources)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2268
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2269
	def getTargetType(self):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2270
		"""Target type in lower case - the standard format"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2271
		return self.__targettype.lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2272
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2273
	def resolveDefFile(self, aTARGET, aBuildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2274
		"""Returns a fully resolved DEFFILE entry depending on .mmp file location and TARGET, DEFFILE and NOSTRICTDEF
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2275
		entries in the .mmp file itself (where appropriate).
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2276
		Is able to deal with target names that have multiple '.' characters e.g. messageintercept.esockdebug.dll
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2277
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2278
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2279
		resolvedDefFile = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2280
		platform = aBuildPlatform['PLATFORM']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2281
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2282
		# Not having a default .def file directory is a pretty strong indicator that
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2283
		# .def files aren't supported for the particular platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2284
		if PlatformDefaultDefFileDir.has_key(platform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2285
			(targetname,targetext) = os.path.splitext(aTARGET)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2286
			(defname,defext) = os.path.splitext(self.deffile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2287
			if defext=="":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2288
				defext = ".def"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2289
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2290
			# NOTE: WORKAROUND
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2291
			if len(targetext) > 4:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2292
				targetname += defext
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2293
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2294
			if not self.deffile:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2295
				resolvedDefFile = targetname
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2296
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2297
				if re.search('[\\|\/]$', self.deffile):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2298
					# If DEFFILE is *solely* a path, signified by ending in a slash, then TARGET is the
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2299
					# basis for the default .def filename but with the specified path as prefix
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2300
					resolvedDefFile = self.deffile + targetname
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2301
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2302
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2303
					resolvedDefFile = defname
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2304
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2305
				resolvedDefFile = resolvedDefFile.replace('~', PlatformDefaultDefFileDir[platform])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2306
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2307
			if resolvedDefFile:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2308
				if not self.nostrictdef:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2309
					resolvedDefFile += 'u'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2310
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2311
				if self.__explicitversion:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2312
					resolvedDefFile += '{' + self.__versionhex + '}'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2313
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2314
				resolvedDefFile += defext
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2315
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2316
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2317
				# If a DEFFILE statement doesn't specify a path in any shape or form, prepend the default .def file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2318
				# location based on the platform being built
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2319
				if not re.search('[\\\/]+', self.deffile):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2320
					resolvedDefFile = '../'+PlatformDefaultDefFileDir[platform]+'/'+resolvedDefFile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2321
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2322
				resolvedDefFile = raptor_utilities.resolveSymbianPath(self.__defFileRoot, resolvedDefFile, 'DEFFILE', "", str(aBuildPlatform['EPOCROOT']))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2323
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2324
		return resolvedDefFile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2325
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2326
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2327
def CheckedGet(self, key, default = None):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2328
	"""extract a value from an self and raise an exception if None.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2329
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2330
	An optional default can be set to replace a None value.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2331
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2332
	This function belongs in the Evaluator class logically. But
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2333
	Evaluator doesn't know how to raise a Metadata error. Since
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2334
	being able to raise a metadata error is the whole point of
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2335
	the method, it makes sense to adapt the Evaluator class from
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2336
	raptor_meta for the use of everything inside raptor_meta.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2337
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2338
	... so it will be added to the Evaluator class.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2339
	"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2340
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2341
	value = self.Get(key)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2342
	if value == None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2343
		if default == None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2344
			raise MetaDataError("configuration " + self.buildUnit.name +
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2345
							    " has no variable " + key)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2346
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2347
			return default
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2348
	return value
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2349
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2350
raptor_data.Evaluator.CheckedGet = CheckedGet 
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2351
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2352
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2353
class MetaReader(object):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2354
	"""Entry point class for Symbian metadata processing.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2355
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2356
	Provides a means of integrating "traditional" Symbian metadata processing
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2357
	with the new Raptor build system."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2358
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2359
	filesplit_re = re.compile(r"^(?P<name>.*)\.(?P<ext>[^\.]*)$")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2360
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2361
	def __init__(self, aRaptor, configsToBuild):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2362
		self.__Raptor = aRaptor
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2363
		self.BuildPlatforms = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2364
		self.ExportPlatforms = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2365
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2366
		# Get the version of CPP that we are using
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2367
		metadata = self.__Raptor.cache.FindNamedVariant("meta")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2368
		evaluator = self.__Raptor.GetEvaluator(None, raptor_data.BuildUnit(metadata.name, [metadata]) )
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2369
		self.__gnucpp = evaluator.CheckedGet("GNUCPP")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2370
		self.__defaultplatforms = evaluator.CheckedGet("DEFAULT_PLATFORMS")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2371
		self.__basedefaultplatforms = evaluator.CheckedGet("BASE_DEFAULT_PLATFORMS")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2372
		self.__baseuserdefaultplatforms = evaluator.CheckedGet("BASE_USER_DEFAULT_PLATFORMS")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2373
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2374
		# Only read each variant.cfg once
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2375
		variantCfgs = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2376
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2377
		# Group the list of configurations into "build platforms".
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2378
		# A build platform is a set of configurations which share
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2379
		# the same metadata. In other words, a set of configurations
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2380
		# for which the bld.inf and MMP files pre-process to exactly
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2381
		# the same text.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2382
		platforms = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2383
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2384
		# Exports are not "platform dependent" but they are configuration
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2385
		# dependent because different configs can have different EPOCROOT
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2386
		# and VARIANT_HRH values. Each "build platform" has one associated
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2387
		# "export platform" but several "build platforms" can be associated
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2388
		# with the same "export platform".
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2389
		exports = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2390
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2391
		self.__Raptor.Debug("MetaReader: configsToBuild:  %s", [b.name for b in configsToBuild])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2392
		for buildConfig in configsToBuild:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2393
			# get everything we need to know about the configuration
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2394
			evaluator = self.__Raptor.GetEvaluator(None, buildConfig)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2395
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2396
			detail = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2397
			detail['PLATFORM'] = evaluator.CheckedGet("TRADITIONAL_PLATFORM")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2398
			epocroot = evaluator.CheckedGet("EPOCROOT")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2399
			detail['EPOCROOT'] = generic_path.Path(epocroot)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2400
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2401
			sbs_build_dir = evaluator.CheckedGet("SBS_BUILD_DIR")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2402
			detail['SBS_BUILD_DIR'] = generic_path.Path(sbs_build_dir)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2403
			flm_export_dir = evaluator.CheckedGet("FLM_EXPORT_DIR")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2404
			detail['FLM_EXPORT_DIR'] = generic_path.Path(flm_export_dir)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2405
			detail['CACHEID'] = flm_export_dir
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2406
			if raptor_utilities.getOSPlatform().startswith("win"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2407
				detail['PLATMACROS'] = evaluator.CheckedGet("PLATMACROS.WINDOWS")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2408
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2409
				detail['PLATMACROS'] = evaluator.CheckedGet("PLATMACROS.LINUX")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2410
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2411
			# Apply OS variant provided we are not ignoring this
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2412
			if not self.__Raptor.ignoreOsDetection:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2413
				self.__Raptor.Debug("Automatic OS detection enabled.")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2414
				self.ApplyOSVariant(buildConfig, epocroot)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2415
			else: # We are ignore OS versions so no detection required, so no variant will be applied
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2416
				self.__Raptor.Debug("Automatic OS detection disabled.")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2417
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2418
			# is this a feature variant config or an ordinary variant
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2419
			fv = evaluator.Get("FEATUREVARIANTNAME")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2420
			if fv:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2421
				variantHdr = evaluator.CheckedGet("VARIANT_HRH")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2422
				variantHRH = generic_path.Path(variantHdr)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2423
				detail['ISFEATUREVARIANT'] = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2424
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2425
				variantCfg = evaluator.CheckedGet("VARIANT_CFG")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2426
				variantCfg = generic_path.Path(variantCfg)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2427
				if not variantCfg in variantCfgs:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2428
					# get VARIANT_HRH from the variant.cfg file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2429
					varCfg = getVariantCfgDetail(detail['EPOCROOT'], variantCfg)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2430
					variantCfgs[variantCfg] = varCfg['VARIANT_HRH']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2431
					# we expect to always build ABIv2
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2432
					if not 'ENABLE_ABIV2_MODE' in varCfg:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2433
						self.__Raptor.Warn("missing flag ENABLE_ABIV2_MODE in %s file. ABIV1 builds are not supported.",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2434
										   str(variantCfg))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2435
				variantHRH = variantCfgs[variantCfg]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2436
				detail['ISFEATUREVARIANT'] = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2437
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2438
			detail['VARIANT_HRH'] = variantHRH
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2439
			self.__Raptor.Info("'%s' uses variant hrh file '%s'", buildConfig.name, variantHRH)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2440
			detail['SYSTEMINCLUDE'] = evaluator.CheckedGet("SYSTEMINCLUDE")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2441
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2442
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2443
			# find all the interface names we need
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2444
			ifaceTypes = evaluator.CheckedGet("INTERFACE_TYPES")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2445
			interfaces = ifaceTypes.split()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2446
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2447
			for iface in interfaces:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2448
				detail[iface] = evaluator.CheckedGet("INTERFACE." + iface)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2449
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2450
			# not test code unless positively specified
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2451
			detail['TESTCODE'] = evaluator.CheckedGet("TESTCODE", "")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2452
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2453
			# make a key that identifies this platform uniquely
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2454
			# - used to tell us whether we have done the pre-processing
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2455
			# we need already using another platform with compatible values.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2456
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2457
			key = str(detail['VARIANT_HRH']) \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2458
			 	+ str(detail['EPOCROOT']) \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2459
		    	+ detail['SYSTEMINCLUDE'] \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2460
		    	+ detail['PLATFORM'] \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2461
		    	+ detail['PLATMACROS']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2462
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2463
		    # Keep a short version of the key for use in filenames.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2464
			uniq = hashlib.md5()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2465
			uniq.update(key)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2466
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2467
			detail['key'] = key
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2468
			detail['key_md5'] = "p_" + uniq.hexdigest()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2469
			del uniq
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2470
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2471
			# compare this configuration to the ones we have already seen
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2472
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2473
			# Is this an unseen export platform?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2474
			# concatenate all the values we care about in a fixed order
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2475
			# and use that as a signature for the exports.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2476
			items = ['EPOCROOT', 'VARIANT_HRH', 'SYSTEMINCLUDE', 'TESTCODE', 'export']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2477
			export = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2478
			for i in  items:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2479
				if i in detail:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2480
					export += i + str(detail[i])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2481
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2482
			if export in exports:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2483
				# add this configuration to an existing export platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2484
				index = exports[export]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2485
				self.ExportPlatforms[index]['configs'].append(buildConfig)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2486
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2487
				# create a new export platform with this configuration
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2488
				exports[export] = len(self.ExportPlatforms)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2489
				exp = copy.copy(detail)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2490
				exp['PLATFORM'] = 'EXPORT'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2491
				exp['configs']  = [buildConfig]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2492
				self.ExportPlatforms.append(exp)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2493
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2494
			# Is this an unseen build platform?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2495
			# concatenate all the values we care about in a fixed order
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2496
			# and use that as a signature for the platform.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2497
			items = ['PLATFORM', 'PLATMACROS', 'EPOCROOT', 'VARIANT_HRH', 'SYSTEMINCLUDE', 'TESTCODE']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2498
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2499
			items.extend(interfaces)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2500
			platform = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2501
			for i in  items:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2502
				if i in detail:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2503
					platform += i + str(detail[i])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2504
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2505
			if platform in platforms:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2506
				# add this configuration to an existing build platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2507
				index = platforms[platform]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2508
				self.BuildPlatforms[index]['configs'].append(buildConfig)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2509
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2510
				# create a new build platform with this configuration
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2511
				platforms[platform] = len(self.BuildPlatforms)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2512
				detail['configs'] = [buildConfig]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2513
				self.BuildPlatforms.append(detail)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2514
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2515
		# one platform is picked as the "default" for extracting things
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2516
		# that are supposedly platform independent (e.g. PRJ_PLATFORMS)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2517
		self.defaultPlatform = self.ExportPlatforms[0]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2518
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2519
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2520
	def ReadBldInfFiles(self, aComponentList, doexport, dobuild = True):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2521
		"""Take a list of bld.inf files and return a list of build specs.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2522
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2523
		The returned specification nodes will be suitable for all the build
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2524
		configurations under consideration (using Filter nodes where required).
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2525
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2526
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2527
		# we need a Filter node per export platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2528
		exportNodes = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2529
		for i,ep in enumerate(self.ExportPlatforms):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2530
			filter = raptor_data.Filter(name = "export_" + str(i))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2531
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2532
			# what configurations is this node active for?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2533
			for config in ep['configs']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2534
				filter.AddConfigCondition(config.name)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2535
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2536
			exportNodes.append(filter)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2537
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2538
		# we need a Filter node per build platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2539
		platformNodes = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2540
		for i,bp in enumerate(self.BuildPlatforms):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2541
			filter = raptor_data.Filter(name = "build_" + str(i))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2542
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2543
			# what configurations is this node active for?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2544
			for config in bp['configs']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2545
				filter.AddConfigCondition(config.name)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2546
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2547
			# platform-wide data
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2548
			platformVar = raptor_data.Variant()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2549
			platformVar.AddOperation(raptor_data.Set("PRODUCT_INCLUDE",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2550
													 str(bp['VARIANT_HRH'])))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2551
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2552
			filter.AddVariant(platformVar)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2553
			platformNodes.append(filter)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2554
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2555
		# check that each bld.inf exists and add a Specification node for it
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2556
		# to the nodes of the export and build platforms that it supports.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2557
		for c in aComponentList:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2558
			if c.bldinf_filename.isFile():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2559
				self.__Raptor.Info("Processing %s", str(c.bldinf_filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2560
				try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2561
					self.AddComponentNodes(c, exportNodes, platformNodes)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2562
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2563
				except MetaDataError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2564
					self.__Raptor.Error(e.Text, bldinf=str(c.bldinf_filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2565
					if not self.__Raptor.keepGoing:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2566
						return []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2567
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2568
				self.__Raptor.Error("build info file does not exist", bldinf=str(c.bldinf_filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2569
				if not self.__Raptor.keepGoing:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2570
					return []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2571
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2572
		# now we have the top-level structure in place...
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2573
		#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2574
		# <filter exports 1>
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2575
		#		<spec bld.inf 1 />
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2576
		#		<spec bld.inf 2 />
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2577
		#		<spec bld.inf N /> </filter>
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2578
		# <filter build 1>
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2579
		#		<spec bld.inf 1 />
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2580
		#		<spec bld.inf 2 />
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2581
		#		<spec bld.inf N /> </filter>
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2582
		# <filter build 2>
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2583
		#		<spec bld.inf 1 />
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2584
		#		<spec bld.inf 2 />
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2585
		#		<spec bld.inf N /> </filter>
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2586
		# <filter build 3>
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2587
		#		<spec bld.inf 1 />
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2588
		#		<spec bld.inf 2 />
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2589
		#		<spec bld.inf N /> </filter>
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2590
		#
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2591
		# assuming that every bld.inf builds for every platform and all
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2592
		# exports go to the same place. clearly, it is more likely that
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2593
		# some filters have less than N child nodes. in bigger builds there
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2594
		# will also be more than one export platform.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2595
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2596
		# we now need to process the EXPORTS for all the bld.inf nodes
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2597
		# before we can do anything else (because raptor itself must do
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2598
		# some exports before the MMP files that include them can be
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2599
		# processed).
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2600
		if doexport:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2601
			for i,p in enumerate(exportNodes):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2602
				exportPlatform = self.ExportPlatforms[i]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2603
				for s in p.GetChildSpecs():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2604
					try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2605
						self.ProcessExports(s, exportPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2606
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2607
					except MetaDataError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2608
						self.__Raptor.Error("%s",e.Text)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2609
						if not self.__Raptor.keepGoing:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2610
							return []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2611
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2612
			self.__Raptor.Info("Not Processing Exports (--noexport enabled)")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2613
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2614
		# this is a switch to return the function at this point if export
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2615
		# only option is specified in the run
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2616
		if dobuild is not True:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2617
			self.__Raptor.Info("Processing Exports only")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2618
			return[]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2619
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2620
		# after exports are done we can look to see if there are any
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2621
		# new Interfaces which can be used for EXTENSIONS. Make sure
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2622
		# that we only load each cache once as some export platforms
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2623
		# may share a directory.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2624
		doneID = {}
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2625
		for ep in self.ExportPlatforms:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2626
			flmDir = ep["FLM_EXPORT_DIR"]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2627
			cid = ep["CACHEID"]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2628
			if flmDir.isDir() and not cid in doneID:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2629
				self.__Raptor.cache.Load(flmDir, cid)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2630
			doneID[cid] = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2631
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2632
		# finally we can process all the other parts of the bld.inf nodes.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2633
		# Keep a list of the projects we were asked to build so that we can
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2634
		# tell at the end if there were any we didn't know about.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2635
		self.projectList = list(self.__Raptor.projects)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2636
		for i,p in enumerate(platformNodes):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2637
			buildPlatform = self.BuildPlatforms[i]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2638
			for s in p.GetChildSpecs():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2639
				try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2640
					self.ProcessTEMs(s, buildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2641
					self.ProcessMMPs(s, buildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2642
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2643
				except MetaDataError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2644
					self.__Raptor.Error(e.Text)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2645
					if not self.__Raptor.keepGoing:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2646
						return []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2647
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2648
		for badProj in self.projectList:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2649
			self.__Raptor.Warn("Can't find project '%s' in any build info file", badProj)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2650
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2651
		# everything is specified
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2652
		return exportNodes + platformNodes
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2653
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2654
	def ModuleName(self,aBldInfPath):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2655
		"""Calculate the name of the ROM/emulator batch files that run the tests"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2656
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2657
		def LeftPortionOf(pth,sep):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2658
			""" Internal function to return portion of str that is to the left of sep. 
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2659
			The split is case-insensitive."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2660
			length = len((pth.lower().split(sep.lower()))[0])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2661
			return pth[0:length]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2662
			
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2663
		modulePath = LeftPortionOf(LeftPortionOf(os.path.dirname(aBldInfPath), "group"), "ongoing")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2664
		moduleName = os.path.basename(modulePath.strip("/"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2665
		
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2666
		# Ensure that ModuleName does not return blank, if the above calculation determines
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2667
		# that moduleName is blank
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2668
		if moduleName == "" or moduleName.endswith(":"):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2669
			moduleName = "module"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2670
		return moduleName
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2671
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2672
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2673
	def AddComponentNodes(self, component, exportNodes, platformNodes):	
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2674
		"""Add Specification nodes for a bld.inf to the appropriate platforms."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2675
		bldInfFile = BldInfFile(component.bldinf_filename, self.__gnucpp, component.depfiles, self.__Raptor)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2676
		component.bldinf = bldInfFile 
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2677
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2678
		specName = getSpecName(component.bldinf_filename, fullPath=True)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2679
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2680
		if isinstance(component.bldinf, raptor_xml.SystemModelComponent):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2681
			# this component came from a system_definition.xml
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2682
			layer = component.bldinf.GetContainerName("layer")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2683
			componentName = component.bldinf.GetContainerName("component")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2684
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2685
			# this is a plain old bld.inf file from the command-line
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2686
			layer = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2687
			componentName = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2688
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2689
		# exports are independent of build platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2690
		for i,ep in enumerate(self.ExportPlatforms):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2691
			specNode = raptor_data.Specification(name = specName)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2692
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2693
			# keep the BldInfFile object for later
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2694
			specNode.component = component
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2695
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2696
			# add some basic data in a component-wide variant
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2697
			var = raptor_data.Variant(name='component-wide')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2698
			var.AddOperation(raptor_data.Set("COMPONENT_META", str(component.bldinf_filename)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2699
			var.AddOperation(raptor_data.Set("COMPONENT_NAME", componentName))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2700
			var.AddOperation(raptor_data.Set("COMPONENT_LAYER", layer))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2701
			specNode.AddVariant(var)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2702
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2703
			# add this bld.inf Specification to the export platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2704
			exportNodes[i].AddChild(specNode)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2705
			component.exportspecs.append(specNode)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2706
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2707
		# get the relevant build platforms
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2708
		listedPlatforms = bldInfFile.getBuildPlatforms(self.defaultPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2709
		platforms = getBuildableBldInfBuildPlatforms(listedPlatforms,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2710
								self.__defaultplatforms,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2711
								self.__basedefaultplatforms,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2712
								self.__baseuserdefaultplatforms)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2713
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2714
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2715
		outputDir = BldInfFile.outputPathFragment(component.bldinf_filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2716
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2717
		# Calculate "module name"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2718
		modulename = self.ModuleName(str(component.bldinf_filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2719
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2720
		for i,bp in enumerate(self.BuildPlatforms):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2721
			plat = bp['PLATFORM']
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2722
			if bp['PLATFORM'] in platforms:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2723
				specNode = raptor_data.Specification(name = specName)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2724
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2725
				# remember what component this spec node comes from for later
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2726
				specNode.component = component
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2727
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2728
				# add some basic data in a component-wide variant
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2729
				var = raptor_data.Variant(name='component-wide-settings-' + plat)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2730
				var.AddOperation(raptor_data.Set("COMPONENT_META",str(component.bldinf_filename)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2731
				var.AddOperation(raptor_data.Set("COMPONENT_NAME", componentName))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2732
				var.AddOperation(raptor_data.Set("COMPONENT_LAYER", layer))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2733
				var.AddOperation(raptor_data.Set("MODULE", modulename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2734
				var.AddOperation(raptor_data.Append("OUTPUTPATHOFFSET", outputDir, '/'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2735
				var.AddOperation(raptor_data.Append("OUTPUTPATH", outputDir, '/'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2736
				var.AddOperation(raptor_data.Append("BLDINF_OUTPUTPATH",outputDir, '/'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2737
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2738
				var.AddOperation(raptor_data.Set("TEST_OPTION", component.bldinf.getRomTestType(bp)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2739
				specNode.AddVariant(var)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2740
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2741
				# add this bld.inf Specification to the build platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2742
				platformNodes[i].AddChild(specNode)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2743
				# also attach it into the component
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2744
				component.specs.append(specNode)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2745
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2746
	def ProcessExports(self, componentNode, exportPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2747
		"""Do the exports for a given platform and skeleton bld.inf node.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2748
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2749
		This will actually perform exports as certain types of files (.mmh)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2750
		are required to be in place before the rest of the bld.inf node
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2751
		(and parts of other bld.inf nodes) can be processed.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2752
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2753
		[some MMP files #include exported .mmh files]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2754
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2755
		if exportPlatform["TESTCODE"]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2756
			exports = componentNode.component.bldinf.getTestExports(exportPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2757
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2758
			exports = componentNode.component.bldinf.getExports(exportPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2759
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2760
		self.__Raptor.Debug("%i exports for %s",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2761
							len(exports), str(componentNode.component.bldinf.filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2762
		if exports:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2763
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2764
			# each export is either a 'copy' or 'unzip'
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2765
			# maybe we should trap multiple exports to the same location here?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2766
			epocroot = str(exportPlatform["EPOCROOT"])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2767
			bldinf_filename = str(componentNode.component.bldinf.filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2768
			exportwhatlog="<whatlog bldinf='%s' mmp='' config=''>\n" % bldinf_filename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2769
			for export in exports:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2770
				expSrc = export.getSource()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2771
				expDstList = export.getDestination() # Might not be a list in all circumstances
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2772
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2773
				# make it a list if it isn't
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2774
				if not isinstance(expDstList, list):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2775
					expDstList = [expDstList]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2776
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2777
				fromFile = generic_path.Path(expSrc.replace("$(EPOCROOT)", epocroot))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2778
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2779
				# For each destination in the destination list, add an export target, perform it if required.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2780
				# This ensures that make knows the dependency situation but that the export is made
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2781
				# before any other part of the metadata requires it.  It also helps with the build
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2782
				# from clean situation where we can't use order only prerequisites.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2783
				for expDst in expDstList:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2784
					toFile = generic_path.Path(expDst.replace("$(EPOCROOT)", epocroot))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2785
					try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2786
						if export.getAction() == "copy":
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2787
							# export the file
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2788
							exportwhatlog += self.CopyExport(fromFile, toFile, bldinf_filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2789
						else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2790
							members = self.UnzipExport(fromFile, toFile,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2791
									str(exportPlatform['SBS_BUILD_DIR']),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2792
									bldinf_filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2793
							
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2794
							exportwhatlog += ("<archive zipfile='" + str(fromFile) + "'>\n")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2795
							if members != None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2796
								exportwhatlog += members
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2797
							exportwhatlog += "</archive>\n"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2798
					except MetaDataError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2799
						if self.__Raptor.keepGoing:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2800
							self.__Raptor.Error("%s",e.Text, bldinf=bldinf_filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2801
						else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2802
							raise e
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2803
			exportwhatlog+="</whatlog>\n"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2804
			self.__Raptor.PrintXML("%s",exportwhatlog)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2805
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2806
	def CopyExport(self, _source, _destination, bldInfFile):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2807
		"""Copy the source file to the destination file (create a directory
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2808
		   to copy into if it does not exist). Don't copy if the destination
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2809
		   file exists and has an equal or newer modification time."""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2810
		source = generic_path.Path(str(_source).replace('%20',' '))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2811
		destination = generic_path.Path(str(_destination).replace('%20',' '))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2812
		dest_str = str(destination)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2813
		source_str = str(source)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2814
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2815
		exportwhatlog="<export destination='" + dest_str + "' source='" + \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2816
				source_str + "'/>\n"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2817
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2818
		try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2819
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2820
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2821
			destDir = destination.Dir()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2822
			if not destDir.isDir():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2823
				os.makedirs(str(destDir))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2824
				shutil.copyfile(source_str, dest_str)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2825
				return exportwhatlog
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2826
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2827
			sourceMTime = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2828
			destMTime = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2829
			try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2830
				sourceMTime = os.stat(source_str)[stat.ST_MTIME]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2831
				destMTime = os.stat(dest_str)[stat.ST_MTIME]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2832
			except OSError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2833
				if sourceMTime == 0:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2834
					message = "Source of export does not exist:  " + str(source)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2835
					if not self.__Raptor.keepGoing:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2836
						raise MetaDataError(message)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2837
					else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2838
						self.__Raptor.Error(message, bldinf=bldInfFile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2839
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2840
			if destMTime == 0 or destMTime < sourceMTime:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2841
				if os.path.exists(dest_str):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2842
					os.chmod(dest_str,stat.S_IREAD | stat.S_IWRITE)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2843
				shutil.copyfile(source_str, dest_str)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2844
				self.__Raptor.Info("Copied %s to %s", source_str, dest_str)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2845
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2846
				self.__Raptor.Info("Up-to-date: %s", dest_str)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2847
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2848
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2849
		except Exception,e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2850
			message = "Could not export " + source_str + " to " + dest_str + " : " + str(e)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2851
			if not self.__Raptor.keepGoing:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2852
				raise MetaDataError(message)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2853
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2854
				self.__Raptor.Error(message, bldinf=bldInfFile)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2855
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2856
		return exportwhatlog
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2857
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2858
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2859
	def UnzipExport(self, _source, _destination, _sbs_build_dir, bldinf_filename):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2860
		"""Unzip the source zipfile into the destination directory
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2861
		   but only if the markerfile does not already exist there
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2862
		   or it does exist but is older than the zipfile.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2863
		   the markerfile is comprised of the name of the zipfile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2864
		   with the ".zip" removed and ".unzipped" added.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2865
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2866
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2867
		# Insert spaces into file if they are there
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2868
		source = str(_source).replace('%20',' ')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2869
		destination = str(_destination).replace('%20',' ')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2870
		sanitisedSource = raptor_utilities.sanitise(source)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2871
		sanitisedDestination = raptor_utilities.sanitise(destination)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2872
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2873
		destination = str(_destination).replace('%20',' ')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2874
		exportwhatlog = ""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2875
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2876
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2877
		try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2878
			if not _destination.isDir():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2879
				os.makedirs(destination)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2880
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2881
			# Form the directory to contain the unzipped marker files, and make the directory if require.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2882
			markerfiledir = generic_path.Path(_sbs_build_dir)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2883
			if not markerfiledir.isDir():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2884
				os.makedirs(str(markerfiledir))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2885
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2886
			# Form the marker file name and convert to Python string
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2887
			markerfilename = str(generic_path.Join(markerfiledir, sanitisedSource + sanitisedDestination + ".unzipped"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2888
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2889
			# Don't unzip if the marker file is already there or more uptodate
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2890
			sourceMTime = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2891
			destMTime = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2892
			try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2893
				sourceMTime = os.stat(source)[stat.ST_MTIME]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2894
				destMTime = os.stat(markerfilename)[stat.ST_MTIME]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2895
			except OSError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2896
				if sourceMTime == 0:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2897
					raise MetaDataError("Source zip for export does not exist:  " + source)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2898
			if destMTime != 0 and destMTime >= sourceMTime:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2899
				# This file has already been unzipped. Print members then return
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2900
				exportzip = zipfile.ZipFile(source, 'r')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2901
				files = exportzip.namelist()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2902
				files.sort()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2903
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2904
				for file in files:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2905
					if not file.endswith('/'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2906
						expfilename = str(generic_path.Join(destination, file))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2907
						exportwhatlog += "<member>" + expfilename + "</member>\n"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2908
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2909
				self.__Raptor.PrintXML("<clean bldinf='" + bldinf_filename + "' mmp='' config=''>\n")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2910
				self.__Raptor.PrintXML("<zipmarker>" + markerfilename + "</zipmarker>\n")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2911
				self.__Raptor.PrintXML("</clean>\n")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2912
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2913
				return exportwhatlog
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2914
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2915
			exportzip = zipfile.ZipFile(source, 'r')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2916
			files = exportzip.namelist()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2917
			files.sort()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2918
			filecount = 0
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2919
			for file in files:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2920
				expfilename = str(generic_path.Join(destination, file))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2921
				if file.endswith('/'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2922
					try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2923
						os.makedirs(expfilename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2924
					except OSError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2925
						pass # errors to do with "already exists" are not interesting.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2926
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2927
					try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2928
						os.makedirs(os.path.split(expfilename)[0])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2929
					except OSError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2930
						pass # errors to do with "already exists" are not interesting.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2931
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2932
					try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2933
						if os.path.exists(expfilename):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2934
							os.chmod(expfilename,stat.S_IREAD | stat.S_IWRITE)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2935
						expfile = open(expfilename, 'wb')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2936
						expfile.write(exportzip.read(file))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2937
						expfile.close()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2938
						
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2939
						# Resurrect any file execution permissions present in the archived version
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2940
						if (exportzip.getinfo(file).external_attr >> 16L) & 0100:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2941
							os.chmod(expfilename, stat.S_IMODE(os.stat(expfilename).st_mode) | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH)						
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2942
						
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2943
						# Each file keeps its modified time the same as what it was before unzipping
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2944
						accesstime = time.time()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2945
						datetime = exportzip.getinfo(file).date_time
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2946
						timeTuple=(int(datetime[0]), int(datetime[1]), int(datetime[2]), int(datetime[3]), \
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2947
									int(datetime[4]), int(datetime[5]), int(0), int(0), int(0))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2948
						modifiedtime = time.mktime(timeTuple)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2949
						os.utime(expfilename,(accesstime, modifiedtime))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2950
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2951
						filecount += 1
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2952
						exportwhatlog+="<member>" + expfilename + "</member>\n"
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2953
					except IOError, e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2954
						message = "Could not unzip %s to %s: file %s: %s" %(source, destination, expfilename, str(e))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2955
						if not self.__Raptor.keepGoing:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2956
							raise MetaDataError(message)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2957
						else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2958
							self.__Raptor.Error(message, bldinf=bldinf_filename)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2959
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2960
			markerfile = open(markerfilename, 'wb+')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2961
			markerfile.close()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2962
			self.__Raptor.PrintXML("<clean bldinf='" + bldinf_filename + "' mmp='' config=''>\n")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2963
			self.__Raptor.PrintXML("<zipmarker>" + markerfilename +	"</zipmarker>\n")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2964
			self.__Raptor.PrintXML("</clean>\n")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2965
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2966
		except IOError:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2967
			self.__Raptor.Warn("Problem while unzipping export %s to %s: %s",source,destination,str(e))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2968
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2969
		self.__Raptor.Info("Unzipped %d files from %s to %s", filecount, source, destination)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2970
		return exportwhatlog
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2971
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2972
	def ProcessTEMs(self, componentNode, buildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2973
		"""Add Template Extension Makefile nodes for a given platform
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2974
		   to a skeleton bld.inf node.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2975
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2976
		This happens after exports have been handled.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2977
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2978
		if buildPlatform["ISFEATUREVARIANT"]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2979
			return	# feature variation does not run extensions at all
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2980
		
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2981
		if buildPlatform["TESTCODE"]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2982
			extensions = componentNode.component.bldinf.getTestExtensions(buildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2983
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2984
			extensions = componentNode.component.bldinf.getExtensions(buildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2985
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2986
		self.__Raptor.Debug("%i template extension makefiles for %s",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2987
							len(extensions), str(componentNode.component.bldinf.filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2988
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2989
		for i,extension in enumerate(extensions):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2990
			if self.__Raptor.projects:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2991
				if not extension.nametag in self.__Raptor.projects:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2992
					self.__Raptor.Debug("Skipping %s", extension.getMakefile())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2993
					continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2994
				elif extension.nametag in self.projectList:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2995
					self.projectList.remove(extension.nametag)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2996
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2997
			extensionSpec = raptor_data.Specification("extension" + str(i))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2998
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  2999
			interface = buildPlatform["extension"]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3000
			customInterface = False
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3001
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3002
			# is there an FLM replacement for this extension?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3003
			if extension.interface:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3004
				try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3005
					interface = self.__Raptor.cache.FindNamedInterface(extension.interface, buildPlatform["CACHEID"])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3006
					customInterface = True
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3007
				except KeyError:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3008
					# no, there isn't an FLM
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3009
					pass
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3010
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3011
			extensionSpec.SetInterface(interface)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3012
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3013
			var = raptor_data.Variant()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3014
			var.AddOperation(raptor_data.Set("EPOCBLD", "$(OUTPUTPATH)"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3015
			var.AddOperation(raptor_data.Set("PLATFORM", buildPlatform["PLATFORM"]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3016
			var.AddOperation(raptor_data.Set("PLATFORM_PATH", buildPlatform["PLATFORM"].lower()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3017
			var.AddOperation(raptor_data.Set("CFG", "$(VARIANTTYPE)"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3018
			var.AddOperation(raptor_data.Set("CFG_PATH", "$(VARIANTTYPE)"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3019
			var.AddOperation(raptor_data.Set("GENERATEDCPP", "$(OUTPUTPATH)"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3020
			var.AddOperation(raptor_data.Set("TEMPLATE_EXTENSION_MAKEFILE", extension.getMakefile()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3021
			var.AddOperation(raptor_data.Set("TEMCOUNT", str(i)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3022
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3023
			# Extension inputs are added to the build spec.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3024
			# '$'s are escaped so that they are not expanded by Raptor or
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3025
			# by Make in the call to the FLM
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3026
			# The Extension makefiles are supposed to expand them themselves
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3027
			# Path separators need not be parameterised anymore
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3028
			# as bash is the standard shell
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3029
			standardVariables = extension.getStandardVariables()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3030
			for standardVariable in standardVariables.keys():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3031
				self.__Raptor.Debug("Set %s=%s", standardVariable, standardVariables[standardVariable])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3032
				value = standardVariables[standardVariable].replace('$(', '$$$$(')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3033
				value = value.replace('$/', '/').replace('$;', ':')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3034
				var.AddOperation(raptor_data.Set(standardVariable, value))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3035
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3036
			# . . . as with the standard variables but the names and number
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3037
			# of options are not known in advance so we add them to
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3038
			# a "structure" that is self-describing
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3039
			var.AddOperation(raptor_data.Set("O._MEMBERS", ""))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3040
			options = extension.getOptions()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3041
			for option in options:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3042
				self.__Raptor.Debug("Set %s=%s", option, options[option])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3043
				value = options[option].replace('$(EPOCROOT)', '$(EPOCROOT)/')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3044
				value = value.replace('$(', '$$$$(')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3045
				value = value.replace('$/', '/').replace('$;', ':')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3046
				value = value.replace('$/', '/').replace('$;', ':')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3047
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3048
				if customInterface:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3049
					var.AddOperation(raptor_data.Set(option, value))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3050
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3051
					var.AddOperation(raptor_data.Append("O._MEMBERS", option))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3052
					var.AddOperation(raptor_data.Set("O." + option, value))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3053
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3054
			extensionSpec.AddVariant(var)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3055
			componentNode.AddChild(extensionSpec)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3056
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3057
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3058
	def ProcessMMPs(self, componentNode, buildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3059
		"""Add project nodes for a given platform to a skeleton bld.inf node.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3060
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3061
		This happens after exports have been handled.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3062
		"""
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3063
		gnuList = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3064
		makefileList = []
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3065
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3066
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3067
		component = componentNode.component
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3068
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3069
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3070
		if buildPlatform["TESTCODE"]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3071
			MMPList = component.bldinf.getTestMMPList(buildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3072
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3073
			MMPList = component.bldinf.getMMPList(buildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3074
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3075
		bldInfFile = component.bldinf.filename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3076
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3077
		for mmpFileEntry in MMPList['mmpFileList']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3078
			component.AddMMP(mmpFileEntry.filename) # Tell the component another mmp is specified (for this platform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3079
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3080
			projectname = mmpFileEntry.filename.File().lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3081
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3082
			if self.__Raptor.projects:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3083
				if not projectname in self.__Raptor.projects:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3084
					self.__Raptor.Debug("Skipping %s", str(mmpFileEntry.filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3085
					continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3086
				elif projectname in self.projectList:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3087
					self.projectList.remove(projectname)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3088
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3089
			foundmmpfile = (mmpFileEntry.filename).FindCaseless()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3090
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3091
			if foundmmpfile == None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3092
				self.__Raptor.Error("Can't find mmp file '%s'", str(mmpFileEntry.filename), bldinf=str(bldInfFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3093
				continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3094
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3095
			mmpFile = MMPFile(foundmmpfile,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3096
								   self.__gnucpp,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3097
								   component.bldinf,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3098
								   component.depfiles,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3099
								   log = self.__Raptor)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3100
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3101
			mmpFilename = mmpFile.filename
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3102
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3103
			self.__Raptor.Info("Processing %s for platform %s",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3104
							   str(mmpFilename),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3105
							   " + ".join([x.name for x in buildPlatform["configs"]]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3106
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3107
			# Run the Parser
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3108
			# The backend supplies the actions
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3109
			content = mmpFile.getContent(buildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3110
			backend = MMPRaptorBackend(self.__Raptor, str(mmpFilename), str(bldInfFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3111
			parser  = MMPParser(backend)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3112
			parseresult = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3113
			try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3114
				parseresult = parser.mmp.parseString(content)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3115
			except ParseException,e:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3116
				self.__Raptor.Debug(e) # basically ignore parse exceptions
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3117
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3118
			if (not parseresult) or (parseresult[0] != 'MMP'):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3119
				self.__Raptor.Error("The MMP Parser didn't recognise the mmp file '%s'",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3120
					                str(mmpFileEntry.filename), 
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3121
					                bldinf=str(bldInfFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3122
				self.__Raptor.Debug(content)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3123
				self.__Raptor.Debug("The parse result was %s", parseresult)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3124
			else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3125
				backend.finalise(buildPlatform)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3126
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3127
			# feature variation only processes FEATUREVARIANT binaries
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3128
			if buildPlatform["ISFEATUREVARIANT"] and not backend.featureVariant:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3129
				continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3130
			
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3131
			# now build the specification tree
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3132
			mmpSpec = raptor_data.Specification(generic_path.Path(getSpecName(mmpFilename)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3133
			var = backend.BuildVariant
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3134
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3135
			var.AddOperation(raptor_data.Set("PROJECT_META", str(mmpFilename)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3136
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3137
			# If it is a TESTMMPFILE section, the FLM needs to know about it
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3138
			if buildPlatform["TESTCODE"] and (mmpFileEntry.testoption in
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3139
					["manual", "auto"]):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3140
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3141
				var.AddOperation(raptor_data.Set("TESTPATH",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3142
						mmpFileEntry.testoption.lower() + ".bat"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3143
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3144
			# The output path for objects, stringtables and bitmaps specified by
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3145
			# this MMP.  Adding in the requested target extension prevents build
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3146
			# "fouling" in cases where there are several mmp targets which only differ
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3147
			# by the requested extension. e.g. elocl.01 and elocl.18
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3148
			var.AddOperation(raptor_data.Append("OUTPUTPATH","$(UNIQUETARGETPATH)",'/'))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3149
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3150
			# If the bld.inf entry for this MMP had the BUILD_AS_ARM option then
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3151
			# tell the FLM.
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3152
			if mmpFileEntry.armoption:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3153
				var.AddOperation(raptor_data.Set("ALWAYS_BUILD_AS_ARM","1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3154
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3155
			# what interface builds this node?
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3156
			try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3157
				interfaceName = buildPlatform[backend.getTargetType()]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3158
				mmpSpec.SetInterface(interfaceName)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3159
			except KeyError:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3160
				self.__Raptor.Error("Unsupported target type '%s' in %s",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3161
								    backend.getTargetType(),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3162
								    str(mmpFileEntry.filename),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3163
								    bldinf=str(bldInfFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3164
				continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3165
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3166
			# Although not part of the MMP, some MMP-based build specs additionally require knowledge of their
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3167
			# container bld.inf exported headers
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3168
			for export in componentNode.component.bldinf.getExports(buildPlatform):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3169
				destination = export.getDestination()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3170
				if isinstance(destination, list):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3171
					exportfile = str(destination[0])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3172
				else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3173
					exportfile = str(destination)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3174
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3175
				if re.search('\.h',exportfile,re.IGNORECASE):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3176
					var.AddOperation(raptor_data.Append("EXPORTHEADERS", str(exportfile)))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3177
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3178
			# now we have something worth adding to the component
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3179
			mmpSpec.AddVariant(var)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3180
			componentNode.AddChild(mmpSpec)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3181
			
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3182
			# if there are APPLY variants then add them to the mmpSpec too
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3183
			for applyVar in backend.ApplyVariants:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3184
				try:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3185
					mmpSpec.AddVariant(self.__Raptor.cache.FindNamedVariant(applyVar))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3186
				except KeyError:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3187
					self.__Raptor.Error("APPLY unknown variant '%s' in %s",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3188
								        applyVar,
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3189
								        str(mmpFileEntry.filename),
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3190
								        bldinf=str(bldInfFile))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3191
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3192
			# resources, stringtables and bitmaps are sub-nodes of this project
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3193
			# (do not add these for feature variant builds)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3194
			
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3195
			if not buildPlatform["ISFEATUREVARIANT"]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3196
				# Buildspec for Resource files
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3197
				for i,rvar in enumerate(backend.ResourceVariants):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3198
					resourceSpec = raptor_data.Specification('resource' + str(i))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3199
					resourceSpec.SetInterface(buildPlatform['resource'])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3200
					resourceSpec.AddVariant(rvar)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3201
					mmpSpec.AddChild(resourceSpec)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3202
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3203
				# Buildspec for String Tables
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3204
				for i,stvar in enumerate(backend.StringTableVariants):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3205
					stringTableSpec = raptor_data.Specification('stringtable' + str(i))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3206
					stringTableSpec.SetInterface(buildPlatform['stringtable'])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3207
					stringTableSpec.AddVariant(stvar)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3208
					mmpSpec.AddChild(stringTableSpec)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3209
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3210
				# Buildspec for Bitmaps
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3211
				for i,bvar in enumerate(backend.BitmapVariants):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3212
					bitmapSpec = raptor_data.Specification('bitmap' + str(i))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3213
					bitmapSpec.SetInterface(buildPlatform['bitmap'])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3214
					bitmapSpec.AddVariant(bvar)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3215
					mmpSpec.AddChild(bitmapSpec)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3216
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3217
		# feature variation does not run extensions at all
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3218
		# so return without considering .*MAKEFILE sections
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3219
		if buildPlatform["ISFEATUREVARIANT"]:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3220
			return
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3221
			
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3222
		# Build spec for gnumakefile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3223
		for g in MMPList['gnuList']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3224
			projectname = g.getMakefileName().lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3225
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3226
			if self.__Raptor.projects:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3227
				if not projectname in self.__Raptor.projects:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3228
					self.__Raptor.Debug("Skipping %s", str(g.getMakefileName()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3229
					continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3230
				elif projectname in self.projectList:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3231
					self.projectList.remove(projectname)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3232
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3233
			self.__Raptor.Debug("%i gnumakefile extension makefiles for %s",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3234
						len(gnuList), str(componentNode.component.bldinf.filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3235
			var = raptor_data.Variant()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3236
			gnuSpec = raptor_data.Specification("gnumakefile " + str(g.getMakefileName()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3237
			interface = buildPlatform["ext_makefile"]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3238
			gnuSpec.SetInterface(interface)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3239
			gnumakefilePath = raptor_utilities.resolveSymbianPath(str(bldInfFile), g.getMakefileName())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3240
			var.AddOperation(raptor_data.Set("EPOCBLD", "$(OUTPUTPATH)"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3241
			var.AddOperation(raptor_data.Set("PLATFORM", buildPlatform["PLATFORM"]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3242
			var.AddOperation(raptor_data.Set("EXTMAKEFILENAME", g.getMakefileName()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3243
			var.AddOperation(raptor_data.Set("DIRECTORY",g.getMakeDirectory()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3244
			var.AddOperation(raptor_data.Set("CFG","$(VARIANTTYPE)"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3245
			standardVariables = g.getStandardVariables()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3246
			for standardVariable in standardVariables.keys():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3247
				self.__Raptor.Debug("Set %s=%s", standardVariable, standardVariables[standardVariable])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3248
				value = standardVariables[standardVariable].replace('$(', '$$$$(')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3249
				value = value.replace('$/', '/').replace('$;', ':')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3250
				var.AddOperation(raptor_data.Set(standardVariable, value))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3251
			gnuSpec.AddVariant(var)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3252
			componentNode.AddChild(gnuSpec)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3253
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3254
		# Build spec for makefile
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3255
		for m in MMPList['makefileList']:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3256
			projectname = m.getMakefileName().lower()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3257
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3258
			if self.__Raptor.projects:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3259
				if not projectname in self.__Raptor.projects:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3260
					self.__Raptor.Debug("Skipping %s", str(m.getMakefileName()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3261
					continue
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3262
				elif projectname in self.projectList:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3263
					projectList.remove(projectname)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3264
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3265
			self.__Raptor.Debug("%i makefile extension makefiles for %s",
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3266
						len(makefileList), str(componentNode.component.bldinf.filename))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3267
			var = raptor_data.Variant()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3268
			gnuSpec = raptor_data.Specification("makefile " + str(m.getMakefileName()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3269
			interface = buildPlatform["ext_makefile"]
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3270
			gnuSpec.SetInterface(interface)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3271
			gnumakefilePath = raptor_utilities.resolveSymbianPath(str(bldInfFile), m.getMakefileName())
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3272
			var.AddOperation(raptor_data.Set("EPOCBLD", "$(OUTPUTPATH)"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3273
			var.AddOperation(raptor_data.Set("PLATFORM", buildPlatform["PLATFORM"]))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3274
			var.AddOperation(raptor_data.Set("EXTMAKEFILENAME", m.getMakefileName()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3275
			var.AddOperation(raptor_data.Set("DIRECTORY",m.getMakeDirectory()))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3276
			var.AddOperation(raptor_data.Set("CFG","$(VARIANTTYPE)"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3277
			var.AddOperation(raptor_data.Set("USENMAKE","1"))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3278
			standardVariables = m.getStandardVariables()
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3279
			for standardVariable in standardVariables.keys():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3280
				self.__Raptor.Debug("Set %s=%s", standardVariable, standardVariables[standardVariable])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3281
				value = standardVariables[standardVariable].replace('$(', '$$$$(')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3282
				value = value.replace('$/', '/').replace('$;', ':')
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3283
				var.AddOperation(raptor_data.Set(standardVariable, value))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3284
			gnuSpec.AddVariant(var)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3285
			componentNode.AddChild(gnuSpec)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3286
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3287
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3288
	def ApplyOSVariant(self, aBuildUnit, aEpocroot):
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3289
		# Form path to kif.xml and path to buildinfo.txt
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3290
		kifXmlPath = generic_path.Join(aEpocroot, "epoc32", "data","kif.xml")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3291
		buildInfoTxtPath = generic_path.Join(aEpocroot, "epoc32", "data","buildinfo.txt")
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3292
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3293
		# Start with osVersion being None. This variable is a string and does two things:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3294
		# 1) is a representation of the OS version
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3295
		# 2) is potentially the name of a variant
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3296
		osVersion = None
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3297
		if kifXmlPath.isFile(): # kif.xml exists so try to read it
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3298
			osVersion = getOsVerFromKifXml(str(kifXmlPath))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3299
			if osVersion != None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3300
				self.__Raptor.Info("OS version \"%s\" determined from file \"%s\"" % (osVersion, kifXmlPath))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3301
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3302
		# OS version was not determined from the kif.xml, e.g. because it doesn't exist
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3303
		# or there was a problem parsing it. So, we fall over to using the buildinfo.txt
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3304
		if osVersion == None and buildInfoTxtPath.isFile():
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3305
			osVersion = getOsVerFromBuildInfoTxt(str(buildInfoTxtPath))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3306
			if osVersion != None:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3307
				self.__Raptor.Info("OS version \"%s\" determined from file \"%s\"" % (osVersion, buildInfoTxtPath))
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3308
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3309
		# If we determined a non-empty string for the OS Version, attempt to apply it
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3310
		if osVersion and osVersion in self.__Raptor.cache.variants:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3311
			self.__Raptor.Info("applying the OS variant to the configuration \"%s\"." % aBuildUnit.name)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3312
			aBuildUnit.variants.append(self.__Raptor.cache.variants[osVersion])
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3313
		else:
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3314
			self.__Raptor.Info("no OS variant for the configuration \"%s\"." % aBuildUnit.name)
d4605037b3b2 set file format of raptor_meta.py to unix when on unix
timothy.murphy@nokia.com
parents: 144
diff changeset
  3315