idlutil.py
来自「编译工具」· Python 代码 · 共 219 行
PY
219 行
# -*- python -*-# Package : omniidl# idlutil.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:# # Utility functions# $Id: idlutil.py,v 1.5.2.8 2005/12/07 14:30:50 dgrisby Exp $# $Log: idlutil.py,v $# Revision 1.5.2.8 2005/12/07 14:30:50 dgrisby# Numbers in string constants were unnecessarily escaped. Thanks Brian# Neal.## Revision 1.5.2.7 2005/04/03 13:35:31 dgrisby# Handle Unicode escapes properly.## 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 compilersescapifyString() -- 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 stringdef slashName(scopedName, our_scope=[]): """slashName(list, [list]) -> stringReturn a scoped name given as a list of strings as a single stringwith the components separated by '/' characters. If a second list isgiven, remove a common prefix using pruneScope().""" pscope = pruneScope(scopedName, our_scope) return string.join(pscope, "/")def dotName(scopedName, our_scope=[]): """dotName(list, [list]) -> stringReturn a scoped name given as a list of strings as a single stringwith the components separated by '.' characters. If a second list isgiven, remove a common prefix using pruneScope().""" pscope = pruneScope(scopedName, our_scope) return string.join(pscope, ".")def ccolonName(scopedName, our_scope=[]): """ccolonName(list, [list]) -> stringReturn a scoped name given as a list of strings as a single stringwith the components separated by '::' strings. If a second list isgiven, 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) -> listGiven two lists of strings (scoped names), return a copy of list Awith 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) -> stringReturn 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) -> stringTake a list of integers representing Unicode characters and return anASCII string with all characters outside that range replaced with \\uescapes.""" 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) -> stringReturn the string representation of an IDL float type (float, double,long double), with enough precision to completely reconstuct the bitpattern.""" # *** Deal with long double s = "%.17g" % f if string.find(s, ".") == -1: s = s + ".0" return sdef relativeScope(fromScope, destScope): """relativeScope(fromScope, destScope) -> listGiven two globally-scoped names, return a minimal scoped name listwhich identifies the destination scope, without clashing with anotheridentifier. 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 isprefixed 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)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?