Listing the "Blender Foundation" as copyright holder implied the Blender Foundation holds copyright to files which may include work from many developers. While keeping copyright on headers makes sense for isolated libraries, Blender's own code may be refactored or moved between files in a way that makes the per file copyright holders less meaningful. Copyright references to the "Blender Foundation" have been replaced with "Blender Authors", with the exception of `./extern/` since these this contains libraries which are more isolated, any changed to license headers there can be handled on a case-by-case basis. Some directories in `./intern/` have also been excluded: - `./intern/cycles/` it's own `AUTHORS` file is planned. - `./intern/opensubdiv/`. An "AUTHORS" file has been added, using the chromium projects authors file as a template. Design task: #110784 Ref !110783.
76 lines
1.7 KiB
Python
76 lines
1.7 KiB
Python
#!/usr/bin/env python3
|
|
# SPDX-FileCopyrightText: 2011-2022 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
import project_source_info
|
|
import subprocess
|
|
import sys
|
|
import os
|
|
|
|
from typing import (
|
|
Any,
|
|
Callable,
|
|
List,
|
|
Tuple,
|
|
)
|
|
|
|
|
|
USE_QUIET = (os.environ.get("QUIET", None) is not None)
|
|
|
|
CHECKER_IGNORE_PREFIX = [
|
|
"extern",
|
|
"intern/moto",
|
|
]
|
|
|
|
CHECKER_BIN = "python3"
|
|
|
|
CHECKER_ARGS = [
|
|
os.path.join(os.path.dirname(__file__), "clang_array_check.py"),
|
|
# not sure why this is needed, but it is.
|
|
"-I" + os.path.join(project_source_info.SOURCE_DIR, "extern", "glew", "include"),
|
|
# stupid but needed
|
|
"-Dbool=char"
|
|
]
|
|
|
|
|
|
def main() -> None:
|
|
source_info = project_source_info.build_info(ignore_prefix_list=CHECKER_IGNORE_PREFIX)
|
|
|
|
check_commands = []
|
|
for c, inc_dirs, defs in source_info:
|
|
|
|
# ~if "source/blender" not in c:
|
|
# ~ continue
|
|
|
|
cmd = (
|
|
[CHECKER_BIN] +
|
|
CHECKER_ARGS +
|
|
[c] +
|
|
[("-I%s" % i) for i in inc_dirs] +
|
|
[("-D%s" % d) for d in defs]
|
|
)
|
|
|
|
check_commands.append((c, cmd))
|
|
|
|
process_functions = []
|
|
|
|
def my_process(i: int, c: str, cmd: str) -> subprocess.Popen[Any]:
|
|
if not USE_QUIET:
|
|
percent = 100.0 * (i / (len(check_commands) - 1))
|
|
percent_str = "[" + ("%.2f]" % percent).rjust(7) + " %:"
|
|
|
|
sys.stdout.flush()
|
|
sys.stdout.write("%s %s\n" % (percent_str, c))
|
|
|
|
return subprocess.Popen(cmd)
|
|
|
|
for i, (c, cmd) in enumerate(check_commands):
|
|
process_functions.append((my_process, (i, c, cmd)))
|
|
|
|
project_source_info.queue_processes(process_functions)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|