/usr/lib/omniidl/omniidl/output.py is in omniidl 4.1.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | # -*- python -*-
# Package : omniidl
# output.py Created on: 1999/10/27
# Author : Duncan Grisby (dpg1)
#
# Copyright (C) 1999 AT&T Laboratories Cambridge
#
# This file is part of omniidl.
#
# omniidl is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
#
# Description:
#
# IDL compiler output functions
"""Output stream
Class:
Stream -- output stream which outputs templates, performing
key/value substitution and indentation."""
import idlstring
string = idlstring
def dummy(): pass
StringType = type("")
FuncType = type(dummy)
class Stream:
"""IDL Compiler output stream class
The output stream takes a template string containing keys enclosed in
'@' characters and replaces the keys with their associated values. It
also provides counted indentation levels.
eg. Given the template string:
template = \"\"\"\\
class @id@ {
public:
@id@(@type@ a) : a_(a) {}
private:
@type@ a_;
};\"\"\"
Calling s.out(template, id="foo", type="int") results in:
class foo {
public:
foo(int a) : a_(a) {}
private:
int a_;
};
Functions:
__init__(file, indent_size) -- Initialise the stream with the
given file and indent size.
inc_indent() -- Increment the indent level.
dec_indent() -- Decrement the indent level.
out(template, key=val, ...) -- Output the given template with
key/value substitution and
indenting.
niout(template, key=val, ...) -- As out(), but with no indenting."""
def __init__(self, file, indent_size = 2):
self.file = file
self.indent_size = indent_size
self.indent = 0
self.do_indent = 1
def inc_indent(self): self.indent = self.indent + self.indent_size
def dec_indent(self): self.indent = self.indent - self.indent_size
def out(self, text, ldict={}, **dict):
"""Output a multi-line string with indentation and @@ substitution."""
dict.update(ldict)
pos = 0
tlist = string.split(text, "@")
ltlist = len(tlist)
i = 0
while i < ltlist:
# Output plain text
pos = self.olines(pos, self.indent, tlist[i])
i = i + 1
if i == ltlist: break
# Evaluate @ expression
try:
expr = dict[tlist[i]]
except:
# If a straight look-up failed, try evaluating it
if tlist[i] == "":
expr = "@"
else:
expr = eval(tlist[i], globals(), dict)
if type(expr) is StringType:
pos = self.olines(pos, pos, expr)
elif type(expr) is FuncType:
oindent = self.indent
self.indent = pos
apply(expr)
self.indent = oindent
else:
pos = self.olines(pos, pos, str(expr))
i = i + 1
self.odone()
def niout(self, text, ldict={}, **dict):
"""Output a multi-line string without indentation."""
dict.update(ldict)
pos = 0
tlist = string.split(text, "@")
ltlist = len(tlist)
i = 0
while i < ltlist:
# Output plain text
pos = self.olines(pos, 0, tlist[i])
i = i + 1
if i == ltlist: break
# Evaluate @ expression
try:
expr = dict[tlist[i]]
except:
# If a straight look-up failed, try evaluating it
if tlist[i] == "":
expr = "@"
else:
expr = eval(tlist[i], globals(), dict)
if type(expr) is StringType:
pos = self.olines(pos, pos, expr)
elif type(expr) is FuncType:
oindent = self.indent
self.indent = pos
apply(expr)
self.indent = oindent
else:
pos = self.olines(pos, pos, str(expr))
i = i + 1
self.odone()
def olines(self, pos, indent, text):
istr = " " * indent
write = self.file.write
stext = string.split(text, "\n")
lines = len(stext)
line = stext[0]
if self.do_indent:
pos = indent
write(istr)
write(line)
for i in range(1, lines):
line = stext[i]
write("\n")
if line:
pos = indent
write(istr)
write(line)
if lines > 1 and not line: # Newline at end of text
self.do_indent = 1
return self.indent
self.do_indent = 0
return pos + len(line)
def odone(self):
self.file.write("\n")
self.do_indent = 1
class StringStream(Stream):
"""Writes to a string buffer rather than a file."""
def __init__(self, indent_size = 2):
Stream.__init__(self, self, indent_size)
self.buffer = []
def write(self, text):
self.buffer.append(text)
def __str__(self):
return string.join(self.buffer, "")
|