⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 presubmit.py.svn-base

📁 Google浏览器V8内核代码
💻 SVN-BASE
字号:
#!/usr/bin/env python## Copyright 2008 the V8 project authors. All rights reserved.# Redistribution and use in source and binary forms, with or without# modification, are permitted provided that the following conditions are# met:##     * Redistributions of source code must retain the above copyright#       notice, this list of conditions and the following disclaimer.#     * 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.#     * Neither the name of Google Inc. nor the names of its#       contributors may be used to endorse or promote products derived#       from this software without specific prior written permission.## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS# "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 COPYRIGHT# OWNER OR CONTRIBUTORS 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 optparseimport osfrom os.path import abspath, join, dirname, basenameimport reimport sysimport subprocessENABLED_LINT_RULES = """build/classbuild/deprecatedbuild/endif_commentbuild/forward_declbuild/include_orderbuild/include_what_you_usebuild/printf_formatbuild/storage_classlegal/copyrightreadability/boostreadability/bracesreadability/castingreadability/checkreadability/constructorsreadability/fn_sizereadability/functionreadability/multiline_commentreadability/multiline_stringreadability/streamsreadability/todoreadability/utf8runtime/arraysruntime/castingruntime/deprecated_fnruntime/explicitruntime/intruntime/memsetruntime/mutexruntime/nonconfruntime/printfruntime/printf_formatruntime/referencesruntime/rttiruntime/sizeofruntime/stringruntime/virtualruntime/vlogwhitespace/blank_linewhitespace/braceswhitespace/commawhitespace/commentswhitespace/end_of_linewhitespace/ending_newlinewhitespace/indentwhitespace/labelswhitespace/line_lengthwhitespace/newlinewhitespace/operatorswhitespace/parenswhitespace/tabwhitespace/todo""".split()class SourceFileProcessor(object):  """  Utility class that can run through a directory structure, find all relevant  files and invoke a custom check on the files.  """  def Run(self, path):    all_files = []    for file in self.GetPathsToSearch():      all_files += self.FindFilesIn(join(path, file))    if not self.ProcessFiles(all_files):      return False    return True  def IgnoreDir(self, name):    return name.startswith('.') or name == 'data'  def IgnoreFile(self, name):    return name.startswith('.')  def FindFilesIn(self, path):    result = []    for (root, dirs, files) in os.walk(path):      for ignored in [x for x in dirs if self.IgnoreDir(x)]:        dirs.remove(ignored)      for file in files:        if not self.IgnoreFile(file) and self.IsRelevant(file):          result.append(join(root, file))    return resultclass CppLintProcessor(SourceFileProcessor):  """  Lint files to check that they follow the google code style.  """  def IsRelevant(self, name):    return name.endswith('.cc') or name.endswith('.h')  def IgnoreDir(self, name):    return (super(CppLintProcessor, self).IgnoreDir(name)              or (name == 'third_party'))  IGNORE_LINT = ['flag-definitions.h']    def IgnoreFile(self, name):    return (super(CppLintProcessor, self).IgnoreFile(name)              or (name in CppLintProcessor.IGNORE_LINT))  def GetPathsToSearch(self):    return ['src', 'public', 'samples', join('test', 'cctest')]  def ProcessFiles(self, files):    filt = '-,' + ",".join(['+' + n for n in ENABLED_LINT_RULES])    command = ['cpplint.py', '--filter', filt] + join(files)    process = subprocess.Popen(command)    return process.wait() == 0COPYRIGHT_HEADER_PATTERN = re.compile(    r'Copyright [\d-]*2008 the V8 project authors. All rights reserved.')class SourceProcessor(SourceFileProcessor):  """  Check that all files include a copyright notice.  """  RELEVANT_EXTENSIONS = ['.js', '.cc', '.h', '.py', '.c', 'SConscript',      'SConstruct', '.status']  def IsRelevant(self, name):    for ext in SourceProcessor.RELEVANT_EXTENSIONS:      if name.endswith(ext):        return True    return False  def GetPathsToSearch(self):    return ['.']  def IgnoreDir(self, name):    return (super(SourceProcessor, self).IgnoreDir(name)              or (name == 'third_party')              or (name == 'obj'))  IGNORE_COPYRIGHTS = ['earley-boyer.js', 'raytrace.js', 'crypto.js',      'libraries.cc', 'libraries-empty.cc']  IGNORE_TABS = IGNORE_COPYRIGHTS + ['unicode-test.js',      'html-comments.js']  def ProcessContents(self, name, contents):    result = True    base = basename(name)    if not base in SourceProcessor.IGNORE_TABS:      if '\t' in contents:        print "%s contains tabs" % name        result = False    if not base in SourceProcessor.IGNORE_COPYRIGHTS:      if not COPYRIGHT_HEADER_PATTERN.search(contents):        print "%s is missing a correct copyright header." % name        result = False    return result  def ProcessFiles(self, files):    success = True    for file in files:      try:        handle = open(file)        contents = handle.read()        success = self.ProcessContents(file, contents) and success      finally:        handle.close()    return successdef GetOptions():  result = optparse.OptionParser()  result.add_option('--no-lint', help="Do not run cpplint", default=False,                    action="store_true")  return resultdef Main():  workspace = abspath(join(dirname(sys.argv[0]), '..'))  parser = GetOptions()  (options, args) = parser.parse_args()  success = True  if not options.no_lint:    success = CppLintProcessor().Run(workspace) and success  success = SourceProcessor().Run(workspace) and success  if success:    return 0  else:    return 1if __name__ == '__main__':  sys.exit(Main())

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -