mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:12:43 +00:00 
			
		
		
		
	 8639d8bc21
			
		
	
	
		8639d8bc21
		
	
	
	
	
		
			
			The two major changes noticeable on the SerenityOS codebase are: - Much improved support for const placement, clang-format-14 ignored our east-const configuration in various places - Different formatting for requires clauses, now breaking them onto their own line, which helps with readability a bit Current versions of CLion also ship LLVM 15, so the built-in formatting now matches CI formatting again :^)
		
			
				
	
	
		
			64 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
 | |
| cd "${script_path}/.." || exit 1
 | |
| 
 | |
| if [ "$#" -eq "1" ]; then
 | |
|     mapfile -t files < <(
 | |
|         git ls-files -- \
 | |
|             '*.cpp' \
 | |
|             '*.h' \
 | |
|             ':!:Base' \
 | |
|             ':!:Kernel/FileSystem/Ext2FS/Definitions.h' \
 | |
|             ':!:Userland/Libraries/LibCodeComprehension/Cpp/Tests/*' \
 | |
|             ':!:Userland/Libraries/LibCpp/Tests/parser/*' \
 | |
|             ':!:Userland/Libraries/LibCpp/Tests/preprocessor/*'
 | |
|     )
 | |
| else
 | |
|     files=()
 | |
|     for file in "${@:2}"; do
 | |
|         if [[ "${file}" == *".cpp" || "${file}" == *".h" ]]; then
 | |
|             files+=("${file}")
 | |
|         fi
 | |
|     done
 | |
| fi
 | |
| 
 | |
| if (( ${#files[@]} )); then
 | |
|     TOOLCHAIN_DIR=Toolchain/Local/clang/bin
 | |
|     CLANG_FORMAT=false
 | |
|     if command -v clang-format-15 >/dev/null 2>&1 ; then
 | |
|         CLANG_FORMAT=clang-format-15
 | |
|     elif command -v brew >/dev/null 2>&1 && command -v "$(brew --prefix llvm@15)"/bin/clang-format >/dev/null 2>&1 ; then
 | |
|         CLANG_FORMAT="$(brew --prefix llvm@15)"/bin/clang-format
 | |
|     elif command -v $TOOLCHAIN_DIR/clang-format >/dev/null 2>&1 && $TOOLCHAIN_DIR/clang-format --version | grep -qF ' 15.' ; then
 | |
|         CLANG_FORMAT=$TOOLCHAIN_DIR/clang-format
 | |
|     elif command -v clang-format >/dev/null 2>&1 ; then
 | |
|         CLANG_FORMAT=clang-format
 | |
|         if ! "${CLANG_FORMAT}" --version | awk '{ if (substr($NF, 1, index($NF, ".") - 1) < 15) exit 1; }'; then
 | |
|             echo "You are using '$("${CLANG_FORMAT}" --version)', which appears to not be clang-format 15 or later."
 | |
|             echo "It is very likely that the resulting changes are not what you wanted."
 | |
|         fi
 | |
|     else
 | |
|         echo "clang-format-15 is not available, but C or C++ files need linting! Either skip this script, or install clang-format-15."
 | |
|         echo "(If you install a package 'clang-format', please make sure it's version 15 or later.)"
 | |
|         exit 1
 | |
|     fi
 | |
| 
 | |
|     if [ "$#" -gt "0" ] && [ "--overwrite-inplace" = "$1" ] ; then
 | |
|         true # The only way to run this script.
 | |
|     else
 | |
|         # Note that this branch also covers --help, -h, -help, -?, etc.
 | |
|         echo "USAGE: $0 --overwrite-inplace"
 | |
|         echo "The argument is necessary to make you aware that this *will* overwrite your local files."
 | |
|         exit 1
 | |
|     fi
 | |
| 
 | |
|     echo "Using ${CLANG_FORMAT}"
 | |
| 
 | |
|     "${CLANG_FORMAT}" -style=file -i "${files[@]}"
 | |
|     echo "Maybe some files have changed. Sorry, but clang-format doesn't indicate what happened."
 | |
| else
 | |
|     echo "No .cpp or .h files to check."
 | |
| fi
 |