sbsv2/raptor/python/plugins/filter_whatcomp.py
author timothy.murphy@nokia.com
Wed, 16 Dec 2009 15:25:49 +0000
branchwip
changeset 114 35ed82e9d574
parent 93 572b3909c72f
child 115 5869e06bf2ac
permissions -rw-r--r--
Strip epocroot off whatcomp filter output.

#
# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of the License "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Nokia Corporation - initial contribution.
#
# Contributors:
#
# Description: 
# Filter class for doing --what and --check operations
#

import os
import sys
import re
import filter_interface
import filter_what

class FilterWhatComp(filter_what.FilterWhat):

        def __init__(self): 
		super(filter_what.FilterWhat,self).__init__()
		self.path_prefix_to_strip = os.path.abspath(os.environ["EPOCROOT"])

	def write(self, text):
		"process some log text"
		ok = True
		
		for line in text.splitlines():
			ok = filter_what.FilterWhat.write(self, line)
			if not ok:
				break
				
		self.ok = ok
		return self.ok
	
	def start_bldinf(self,bldinf):
		if "win" in self.buildparameters.platform:
			dir = os.path.dirname(bldinf.replace("/","\\"))
		else:
			dir = os.path.dirname(bldinf)

		self.outfile.write("-- abld -w \nChdir %s \n" % dir)
		
	def end_bldinf(self):
		self.outfile.write("++ Finished\n")