1 # -*- coding: utf-8 -*-
3 #-------------------------------------------------------------------------
4 # drawElements Quality Program utilities
5 # --------------------------------------
7 # Copyright 2015 The Android Open Source Project
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
13 # http://www.apache.org/licenses/LICENSE-2.0
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
21 #-------------------------------------------------------------------------
23 from itertools import chain
25 INL_HEADER_TMPL = """\
26 /* WARNING: This is auto-generated file. Do not modify, since changes will
27 * be lost! Modify the generating script instead.
29 * Generated from {registryName} revision {revision}.
33 def genInlHeader (registryName, revision):
34 return INL_HEADER_TMPL.format(
35 registryName = registryName,
36 revision = str(revision))
38 def genInlHeaderForSource (registrySource):
39 return genInlHeaderForSource(registrySource.getFilename(), registrySource.getRevision())
41 def nextMod (val, mod):
45 return int(val/mod)*mod + mod
47 def indentLines (lines):
51 lineColumns = [line.split("\t") for line in lines if line is not None]
52 if len(lineColumns) == 0:
55 numColumns = max(len(line) for line in lineColumns)
57 # Figure out max length per column
58 columnLengths = [nextMod(max(len(line[ndx]) for line in lineColumns if len(line) > ndx), tabSize) for ndx in range(numColumns)]
60 for line in lineColumns:
62 for columnNdx, col in enumerate(line[:-1]):
64 while colLen < columnLengths[columnNdx]:
66 colLen = nextMod(colLen, tabSize)
70 indented.append(line[-1])
71 yield "".join(indented)
73 def readFile (filename):
74 f = open(filename, 'rb')
79 def writeFileIfChanged (filename, data):
80 oldData = readFile(filename)
82 f = open(filename, 'wb')
86 def writeLines (filename, lines):
92 writeFileIfChanged(filename, text)
95 def writeInlFile (filename, header, source):
96 writeLines(filename, chain([header], source))
98 def normalizeConstant (constant):
99 value = int(constant, base=0)
102 elif value >= 1 << 32:
104 elif value >= 1 << 31:
108 return constant + suffix
110 def commandParams (command):
111 if len(command.params) > 0:
112 return ", ".join(param.declaration for param in command.params)
116 def commandArgs (command):
117 return ", ".join(param.name for param in command.params)