بنقرة واحدة
clang-tidy-check
Run clang-tidy on newly added/modified BE C++ code
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run clang-tidy on newly added/modified BE C++ code
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Review code with Doris-specific checklists
Fix BE (C++) code formatting issues using clang-format
Fix FE (Java) code style issues using Checkstyle
Run Doris docker-based regression tests from a clean package
| name | clang-tidy-check |
| description | Run clang-tidy on newly added/modified BE C++ code |
| compatibility | opencode |
Run clang-tidy static analysis on newly added or modified C++ files in the BE and Cloud modules, using the project's .clang-tidy configuration. The script parses git diff to identify changed line ranges and filters clang-tidy output to diagnostics on those lines where possible, reducing noise from pre-existing code. Diagnostics from included headers that were not part of the diff are filtered out, though some edge cases may still appear.
compile_commands.json generated during the CMake build. For BE files, build BE; for Cloud files, build Cloud.For BE files:
./build.sh --be -j${DORIS_PARALLELISM}
This generates compile_commands.json in be/build_Release/ or be/build_ASAN/.
For Cloud files:
./build.sh --cloud -j${DORIS_PARALLELISM}
This generates compile_commands.json in cloud/build_Release/ or cloud/build_ASAN/.
Note: A single compilation database typically covers only one module (BE or Cloud). If your changes span both modules, you may need to run clang-tidy twice with different --build-dir values.
build-support/run-clang-tidy.sh
By default, this script:
git diff (uncommitted changes + staged changes)compile_commands.json from the latest BE build.clang-tidy configOptions:
# Compare against a specific branch (e.g., for PR review)
build-support/run-clang-tidy.sh --base origin/master
# Check specific files (all lines, no line-level filtering)
build-support/run-clang-tidy.sh --files be/src/vec/functions/my_new_func.cpp
# Report ALL warnings in changed files (no line filtering)
build-support/run-clang-tidy.sh --full
# Specify build directory explicitly (required for Cloud if BE build dir was auto-detected)
build-support/run-clang-tidy.sh --build-dir be/build_ASAN
# Check Cloud files with Cloud compilation database
build-support/run-clang-tidy.sh --build-dir cloud/build_ASAN
# Apply auto-fixes where possible (note: fixes may apply beyond changed lines)
build-support/run-clang-tidy.sh --fix
Important: By default, only warnings on changed lines are reported (diagnostics from headers not in the diff are filtered out). This prevents the agent from "fixing" unrelated pre-existing warnings in large files. Use --full to see all warnings if needed.
clang-tidy output looks like:
be/src/vec/functions/foo.cpp:42:5: warning: use auto when initializing with a cast [modernize-use-auto]
be/src/vec/functions/foo.cpp:55:1: warning: function 'process' exceeds recommended size [readability-function-size]
Fix approach:
// NOLINT(check-name) with a brief justificationRe-run the script to confirm all warnings are resolved:
build-support/run-clang-tidy.sh
.clang-tidy)| Category | Examples |
|---|---|
clang-diagnostic-* | Compiler diagnostics |
clang-analyzer-* | Static analysis (null deref, use-after-free, etc.) |
bugprone-* | Use-after-move, redundant branch condition, unused RAII |
modernize-* | Auto, range-for, nullptr (excludes trailing return, nodiscard) |
readability-* | Function size (≤80 lines), cognitive complexity (≤50) |
performance-* | String find, inefficient algorithm, move-const-arg |
misc-redundant-expression | Redundant expressions |
Files in these paths are automatically skipped:
be/src/apache-orc/, be/src/clucene/, be/src/gutil/be/src/glibc-compatibility/contrib/ (all third-party code)When a clang-tidy warning cannot be fixed, suppress it with a comment:
// Good: specific check name + reason
int x = (int)y; // NOLINT(modernize-use-auto): explicit cast for clarity
// Bad: blanket suppression without reason
int x = (int)y; // NOLINT
| Problem | Solution |
|---|---|
compile_commands.json not found | Build BE first: ./build.sh --be -j${DORIS_PARALLELISM} |
clang-tidy not found | Install via LDB toolchain or apt install clang-tidy-16 |
| Too many warnings on old code | Use --base to diff against a branch, ensuring only your changes are checked |
| Warning in header included by your file | Only fix if the header is also in your changeset; otherwise note it in your report |