/usr/lib/python2.7/dist-packages/stringtemplate3/grouploaders.py is in python-stringtemplate3 3.1-4.
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 | # [The "BSD licence"]
# Copyright (c) 2003-2006 Terence Parr
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
import sys
import os
import traceback
import codecs
from stringtemplate3.utils import deprecated
from stringtemplate3.groups import StringTemplateGroup
from stringtemplate3.interfaces import StringTemplateGroupInterface
from stringtemplate3.language import AngleBracketTemplateLexer
class StringTemplateGroupLoader(object):
"""
When group files derive from another group, we have to know how to
load that group and its supergroups. This interface also knows how
to load interfaces
"""
def loadGroup(self, groupName, superGroup=None, lexer=None):
"""
Load the group called groupName from somewhere. Return null
if no group is found.
Groups with region definitions must know their supergroup to find
templates during parsing.
Specify the template lexer to use for parsing templates. If null,
it assumes angle brackets <...>.
"""
raise NotImplementedError
def loadInterface(self, interfaceName):
"""
Load the interface called interfaceName from somewhere. Return null
if no interface is found.
"""
raise NotImplementedError
class PathGroupLoader(StringTemplateGroupLoader):
"""
A brain dead loader that looks only in the directory(ies) you
specify in the ctor.
You may specify the char encoding.
"""
def __init__(self, dir=None, errors=None):
"""
Pass a single dir or multiple dirs separated by colons from which
to load groups/interfaces.
"""
StringTemplateGroupLoader.__init__(self)
## List of ':' separated dirs to pull groups from
self.dirs = dir.split(':')
self.errors = errors
## How are the files encoded (ascii, UTF8, ...)?
# You might want to read UTF8 for example on an ascii machine.
self.fileCharEncoding = sys.getdefaultencoding()
def loadGroup(self, groupName, superGroup=None, lexer=None):
if lexer is None:
lexer = AngleBracketTemplateLexer.Lexer
try:
fr = self.locate(groupName+".stg")
if fr is None:
self.error("no such group file "+groupName+".stg")
return None
try:
return StringTemplateGroup(
file=fr,
lexer=lexer,
errors=self.errors,
superGroup=superGroup
)
finally:
fr.close()
except IOError as ioe:
self.error("can't load group "+groupName, ioe)
return None
def loadInterface(self, interfaceName):
try:
fr = self.locate(interfaceName+".sti")
if fr is None:
self.error("no such interface file "+interfaceName+".sti")
return None
try:
return StringTemplateGroupInterface(fr, self.errors)
finally:
fr.close()
except (IOError, OSError) as ioe:
self.error("can't load interface "+interfaceName, ioe)
return None
def locate(self, name):
"""Look in each directory for the file called 'name'."""
for dir in self.dirs:
path = os.path.join(dir, name)
if os.path.isfile(path):
fr = open(path, 'r')
# FIXME: something breaks, when stream return unicode
if self.fileCharEncoding is not None:
fr = codecs.getreader(self.fileCharEncoding)(fr)
return fr
return None
@deprecated
def getFileCharEncoding(self):
return self.fileCharEncoding
@deprecated
def setFileCharEncoding(self, fileCharEncoding):
self.fileCharEncoding = fileCharEncoding
def error(self, msg, exc=None):
if self.errors is not None:
self.errors.error(msg, exc)
else:
sys.stderr.write("StringTemplate: "+msg+"\n")
if exc is not None:
traceback.print_exc()
class CommonGroupLoader(PathGroupLoader):
"""
Subclass o PathGroupLoader that also works, if the package is
packaged in a zip file.
FIXME: this is not yet implemented, behaviour is identical to
PathGroupLoader!
"""
# FIXME: this needs to be overridden!
def locate(self, name):
"""Look in each directory for the file called 'name'."""
return PathGroupLoader.locate(self, name)
|