/usr/lib/omniidl/omniidl/idlutil.py is in omniidl 4.1.6-2.1+b1.
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 222 223 224 225 226 227 228 229 230 231 | # -*- python -*-
# Package : omniidl
# idlutil.py Created on: 1999/10/27
# Author : Duncan Grisby (dpg1)
#
# Copyright (C) 2003-2008 Apasphere Ltd
# 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:
#
# Utility functions
# $Id: idlutil.py 5867 2009-05-06 16:16:18Z dgrisby $
# $Log$
# Revision 1.9.2.6 2008/12/03 10:57:03 dgrisby
# Incorrect code generated for some float constants. Thanks Will Denissen.
#
# Revision 1.9.2.5 2008/12/03 10:53:58 dgrisby
# Tweaks leading to Python 3 support; other minor clean-ups.
#
# Revision 1.9.2.4 2006/01/10 12:24:03 dgrisby
# Merge from omni4_0_develop pre 4.0.7 release.
#
# Revision 1.9.2.3 2005/07/21 09:54:59 dgrisby
# Typo in docstring.
#
# Revision 1.9.2.2 2005/04/08 00:35:45 dgrisby
# Merging again.
#
# Revision 1.9.2.1 2003/03/23 21:01:38 dgrisby
# Start of omniORB 4.1.x development branch.
#
# Revision 1.5.2.6 2001/08/29 11:54:22 dpg1
# Clean up const handling in IDL compiler.
#
# Revision 1.5.2.5 2001/08/15 10:31:23 dpg1
# Minor tweaks and fixes.
#
# Revision 1.5.2.4 2001/06/13 11:28:22 dpg1
# Proper omniidl support for wchar/wstring constants.
#
# Revision 1.5.2.3 2001/03/13 10:34:01 dpg1
# Minor Python clean-ups
#
# Revision 1.5.2.2 2000/10/10 10:18:54 dpg1
# Update omniidl front-end from omni3_develop.
#
# Revision 1.3.2.1 2000/08/29 15:20:29 dpg1
# New relativeScope() function. New -i flag to enter interactive loop
# after parsing
#
# Revision 1.3 1999/11/15 15:49:23 dpg1
# Documentation strings.
#
# Revision 1.2 1999/11/01 20:18:30 dpg1
# Added string escaping
#
# Revision 1.1 1999/10/29 15:47:07 dpg1
# First revision.
#
"""Utility functions for IDL compilers
escapifyString() -- return a string with non-printing characters escaped.
escapifyWString() -- return a wstring with non-printing characters escaped.
reprFloat() -- return a string represenation of an IDL float type.
slashName() -- format a scoped name with '/' separating components.
dotName() -- format a scoped name with '.' separating components.
ccolonName() -- format a scoped name with '::' separating components.
pruneScope() -- remove common prefix from a scoped name.
relativeScope() -- give a minimal name for one scope relative to another."""
import idlstring
string = idlstring
def slashName(scopedName, our_scope=[]):
"""slashName(list, [list]) -> string
Return a scoped name given as a list of strings as a single string
with the components separated by '/' characters. If a second list is
given, remove a common prefix using pruneScope()."""
pscope = pruneScope(scopedName, our_scope)
return string.join(pscope, "/")
def dotName(scopedName, our_scope=[]):
"""dotName(list, [list]) -> string
Return a scoped name given as a list of strings as a single string
with the components separated by '.' characters. If a second list is
given, remove a common prefix using pruneScope()."""
pscope = pruneScope(scopedName, our_scope)
return string.join(pscope, ".")
def ccolonName(scopedName, our_scope=[]):
"""ccolonName(list, [list]) -> string
Return a scoped name given as a list of strings as a single string
with the components separated by '::' strings. If a second list is
given, remove a common prefix using pruneScope()."""
pscope = pruneScope(scopedName, our_scope)
return string.join(pscope, "::")
def pruneScope(target_scope, our_scope):
"""pruneScope(list A, list B) -> list
Given two lists of strings (scoped names), return a copy of list A
with any prefix it shares with B removed.
e.g. pruneScope(['A', 'B', 'C', 'D'], ['A', 'B', 'D']) -> ['C', 'D']"""
tscope = target_scope[:]
i = 0
while len(tscope) > 0 and \
i < len(our_scope) and \
tscope[0] == our_scope[i]:
del tscope[0]
i = i + 1
return tscope
_valid_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" \
" 0123456789_!$%^&*()-=+[]{};#:@~,./<>?|`"
_valid_unichars = map(ord, list(_valid_chars))
def escapifyString(s):
"""escapifyString(string) -> string
Return the given string with any non-printing characters escaped."""
global _valid_chars
l = list(s)
for i in range(len(l)):
if l[i] not in _valid_chars:
l[i] = "\\%03o" % ord(l[i])
return string.join(l, "")
def escapifyWString(l, escchar="u"):
"""escapifyWString(int list) -> string
Take a list of integers representing Unicode characters and return an
ASCII string with all characters outside that range replaced with \\u
escapes."""
global _valid_unichars
m = [None] * len(l)
for i in range(len(l)):
assert(l[i] <= 0xffff)
if l[i] in _valid_unichars:
m[i] = chr(l[i])
else:
m[i] = "\\%s%04x" % (escchar, l[i])
return string.join(m, "")
def reprFloat(f):
"""reprFloat(float) -> string
Return the string representation of an IDL float type (float, double,
long double), with enough precision to completely reconstruct the bit
pattern."""
# *** Deal with long double
s = "%.17g" % f
if string.find(s, ".") == -1 and string.find(s, "e") == -1:
s = s + ".0"
return s
def relativeScope(fromScope, destScope):
"""relativeScope(fromScope, destScope) -> list
Given two globally-scoped names, return a minimal scoped name list
which identifies the destination scope, without clashing with another
identifier. For example, given IDL:
module M {
typedef short A;
typedef long B;
module N {
typedef string B;
interface I {
void op(in ::M::A x, in ::M::B y);
};
};
};
relativeScope(["M", "N", "I"], ["M", "A"]) -> ["A"]
relativeScope(["M", "N", "I"], ["M", "B"]) -> ["M", "B"]
If the only valid result is a globally-scoped name, the result list is
prefixed with None:
module O {
typedef short C;
};
module P {
module O {
interface J {
void op(in ::O::C z);
};
};
};
relativeScope(["P", "O", "J"], ["O", "C"]) -> [None, "O", "C"]
If either scoped name does not exist, returns None."""
import _omniidl
return _omniidl.relativeScopedName(fromScope, destScope)
|