此代码复制自http://code.google.com/p/closure-library/source/browse/trunk/closure/bin/build/source.py
源类的__str__method reference self._path
是self的一个特殊属性吗?
因为我找不到在源类
中定义这个变量的地方import re
_BASE_REGEX_STRING = '^s*goog.%s(s*['"](.+)['"]s*)'
_PROVIDE_REGEX = re.compile(_BASE_REGEX_STRING % 'provide')
_REQUIRES_REGEX = re.compile(_BASE_REGEX_STRING % 'require')
# This line identifies base.js and should match the line in that file.
_GOOG_BASE_LINE = (
'var goog = goog || {}; // Identifies this file as the Closure base.')
class Source(object):
"""Scans a JavaScript source for its provided and required namespaces."""
def __init__(self, source):
"""Initialize a source.
Args:
source: str, The JavaScript source.
"""
self.provides = set()
self.requires = set()
self._source = source
self._ScanSource()
def __str__(self):
return 'Source %s' % self._path #!!!!!! what is self_path !!!!
def GetSource(self):
"""Get the source as a string."""
return self._source
def _ScanSource(self):
"""Fill in provides and requires by scanning the source."""
# TODO: Strip source comments first, as these might be in a comment
# block. RegExes can be borrowed from other projects.
source = self.GetSource()
source_lines = source.splitlines()
for line in source_lines:
match = _PROVIDE_REGEX.match(line)
if match:
self.provides.add(match.group(1))
match = _REQUIRES_REGEX.match(line)
if match:
self.requires.add(match.group(1))
# Closure's base file implicitly provides 'goog'.
for line in source_lines:
if line == _GOOG_BASE_LINE:
if len(self.provides) or len(self.requires):
raise Exception(
'Base files should not provide or require namespaces.')
self.provides.add('goog')
def GetFileContents(path):
"""Get a file's contents as a string.
Args:
path: str, Path to file.
Returns:
str, Contents of file.
Raises:
IOError: An error occurred opening or reading the file.
"""
fileobj = open(path)
try:
return fileobj.read()
finally:
fileobj.close()
不,_path
只是一个属性,它可能不像任何其他属性一样被设置在对象上。前面的下划线只是表示作者认为它是对象的内部细节,不希望它被视为公共接口的一部分。
在这种特殊情况下,除非从源文件外部设置属性,否则看起来只是一个错误。它不会造成任何伤害,除非有人试图在Source
对象上调用str()
,而且可能从来没有人这样做过。
顺便说一句,你似乎在想self
有什么特别的地方。名称self
在任何方面都不特殊:将此名称用于方法的第一个参数是一种惯例,但它只是一个与其他任何指向正在处理的对象的名称一样的名称。因此,如果你可以访问self._path
而不产生错误,那么你可以通过对象的任何其他名称访问它。