check_namespace_qualification.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 
3 # Copyright 2022 gRPC authors.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 
17 import argparse
18 import os
19 import os.path
20 import re
21 import subprocess
22 import sys
23 
24 # TODO(hork): dedupe args/load/validate/save code with other check scripts.
25 
26 
27 def load(fpath):
28  with open(fpath, 'r') as f:
29  return f.readlines()
30 
31 
32 def save(fpath, contents):
33  with open(fpath, 'w') as f:
34  f.write(contents)
35 
36 
37 class QualificationValidator(object):
38 
39  def __init__(self):
40  self.fully_qualified_re = re.compile(r'([ (<])::(grpc[A-Za-z_:])')
41  self.using_re = re.compile(
42  r'(using +|using +[A-Za-z_]+ *= *|namespace [A-Za-z_]+ *= *)::')
43  self.define_re = re.compile(r'^#define')
44 
45  def check(self, fpath, fix):
46  fcontents = load(fpath)
47  failed = False
48  for (i, line) in enumerate(fcontents):
49  if not self.fully_qualified_re.search(line):
50  continue
51  # skip `using` statements
52  if self.using_re.search(line):
53  continue
54  # skip `#define` statements
55  if self.define_re.search(line):
56  continue
57  # fully-qualified namespace found, which may be unnecessary
58  if fix:
59  fcontents[i] = self.fully_qualified_re.sub(r'\1\2', line)
60  else:
61  print("Found in %s:%d - %s" % (fpath, i, line.strip()))
62  failed = True
63  if fix:
64  save(fpath, ''.join(fcontents))
65  return not failed
66 
67 
68 IGNORED_FILES = [
69  # TODO(hork): rename symbols to avoid the need for fully-qualified names
70  "src/cpp/common/core_codegen.cc",
71  # TODO(hork): This could be a breaking change for users that define their
72  # own (possibly nested) `grpc.*` namespaces that contain conflicting
73  # symbols. It may be worth trying to land this change at some point, as
74  # users would be better off using unique namespaces.
75  "src/compiler/cpp_generator.cc",
76  # multi-line #define statements are not handled
77  "src/core/lib/gprpp/global_config_env.h",
78  "src/core/lib/profiling/timers.h",
79 ]
80 
81 # find our home
82 ROOT = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '../..'))
83 os.chdir(ROOT)
84 
85 # parse command line
86 argp = argparse.ArgumentParser(
87  description='c++ namespace full qualification checker')
88 argp.add_argument('-f', '--fix', default=False, action='store_true')
89 argp.add_argument('--precommit', default=False, action='store_true')
90 args = argp.parse_args()
91 
92 grep_filter = r"grep -E '^(include|src|test).*\.(h|cc)$'"
93 if args.precommit:
94  git_command = 'git diff --name-only HEAD'
95 else:
96  git_command = 'git ls-tree -r --name-only -r HEAD'
97 
98 FILE_LIST_COMMAND = ' | '.join((git_command, grep_filter))
99 
100 # scan files
101 ok = True
102 filename_list = []
103 try:
104  filename_list = subprocess.check_output(FILE_LIST_COMMAND,
105  shell=True).decode().splitlines()
106  # Filter out non-existent files (ie, file removed or renamed)
107  filename_list = (f for f in filename_list if os.path.isfile(f))
108 except subprocess.CalledProcessError:
109  sys.exit(0)
110 
112 
113 for filename in filename_list:
114  # Skip check for upb generated code and ignored files.
115  if (filename.endswith('.upb.h') or filename.endswith('.upb.c') or
116  filename.endswith('.upbdefs.h') or
117  filename.endswith('.upbdefs.c') or filename in IGNORED_FILES):
118  continue
119  ok = validator.check(filename, args.fix) and ok
120 
121 sys.exit(0 if ok else 1)
check_namespace_qualification.QualificationValidator.using_re
using_re
Definition: check_namespace_qualification.py:41
check_namespace_qualification.load
def load(fpath)
Definition: check_namespace_qualification.py:27
check_namespace_qualification.QualificationValidator.define_re
define_re
Definition: check_namespace_qualification.py:43
search
Definition: search.py:1
check_namespace_qualification.save
def save(fpath, contents)
Definition: check_namespace_qualification.py:32
check_namespace_qualification.QualificationValidator.__init__
def __init__(self)
Definition: check_namespace_qualification.py:39
grpc._common.decode
def decode(b)
Definition: grpc/_common.py:75
open
#define open
Definition: test-fs.c:46
check_namespace_qualification.QualificationValidator.fully_qualified_re
fully_qualified_re
Definition: check_namespace_qualification.py:40
check_namespace_qualification.QualificationValidator.check
def check(self, fpath, fix)
Definition: check_namespace_qualification.py:45
check_namespace_qualification.QualificationValidator
Definition: check_namespace_qualification.py:37


grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:58:45