Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AFLplusplus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ulf Kargén
AFLplusplus
Commits
1149b131
Commit
1149b131
authored
2 years ago
by
Maciej Domanski
Browse files
Options
Downloads
Patches
Plain Diff
undo custom-format
parent
fd27b2c9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.custom-format.py
+24
-25
24 additions, 25 deletions
.custom-format.py
with
24 additions
and
25 deletions
.custom-format.py
+
24
−
25
View file @
1149b131
...
...
@@ -26,16 +26,15 @@ import shutil
with
open
(
"
.clang-format
"
)
as
f
:
fmt
=
f
.
read
()
#
CURRENT_LLVM = os.getenv('LLVM_VERSION', 14)
#
CLANG_FORMAT_BIN = os.getenv("CLANG_FORMAT_BIN", "")
CURRENT_LLVM
=
os
.
getenv
(
'
LLVM_VERSION
'
,
14
)
CLANG_FORMAT_BIN
=
os
.
getenv
(
"
CLANG_FORMAT_BIN
"
,
""
)
#
if shutil.which(CLANG_FORMAT_BIN) is None:
#
CLANG_FORMAT_BIN = f"clang-format-{CURRENT_LLVM}"
if
shutil
.
which
(
CLANG_FORMAT_BIN
)
is
None
:
CLANG_FORMAT_BIN
=
f
"
clang-format-
{
CURRENT_LLVM
}
"
#if shutil.which(CLANG_FORMAT_BIN) is None:
# print(f"[!] clang-format-{CURRENT_LLVM} is needed. Aborted.")
# exit(1)
CLANG_FORMAT_BIN
=
"
clang-format
"
if
shutil
.
which
(
CLANG_FORMAT_BIN
)
is
None
:
print
(
f
"
[!] clang-format-
{
CURRENT_LLVM
}
is needed. Aborted.
"
)
exit
(
1
)
COLUMN_LIMIT
=
80
for
line
in
fmt
.
split
(
"
\n
"
):
...
...
@@ -59,16 +58,16 @@ def custom_format(filename):
in_define
=
True
if
(
"
/*
"
in
line
and
not
line
.
strip
().
startswith
(
"
/*
"
)
and
line
.
endswith
(
"
*/
"
)
and
len
(
line
)
<
(
COLUMN_LIMIT
-
2
)
"
/*
"
in
line
and
not
line
.
strip
().
startswith
(
"
/*
"
)
and
line
.
endswith
(
"
*/
"
)
and
len
(
line
)
<
(
COLUMN_LIMIT
-
2
)
):
cmt_start
=
line
.
rfind
(
"
/*
"
)
line
=
(
line
[:
cmt_start
]
+
"
"
*
(
COLUMN_LIMIT
-
2
-
len
(
line
))
+
line
[
cmt_start
:]
line
[:
cmt_start
]
+
"
"
*
(
COLUMN_LIMIT
-
2
-
len
(
line
))
+
line
[
cmt_start
:]
)
define_padding
=
0
...
...
@@ -77,21 +76,21 @@ def custom_format(filename):
define_padding
=
max
(
0
,
len
(
last_line
[
last_line
.
rfind
(
"
\n
"
)
+
1
:]))
if
(
last_line
is
not
None
and
last_line
.
strip
().
endswith
(
"
{
"
)
and
line
.
strip
()
!=
""
last_line
is
not
None
and
last_line
.
strip
().
endswith
(
"
{
"
)
and
line
.
strip
()
!=
""
):
line
=
(
"
"
*
define_padding
+
"
\\
"
if
in_define
else
""
)
+
"
\n
"
+
line
elif
(
last_line
is
not
None
and
last_line
.
strip
().
startswith
(
"
}
"
)
and
line
.
strip
()
!=
""
last_line
is
not
None
and
last_line
.
strip
().
startswith
(
"
}
"
)
and
line
.
strip
()
!=
""
):
line
=
(
"
"
*
define_padding
+
"
\\
"
if
in_define
else
""
)
+
"
\n
"
+
line
elif
(
line
.
strip
().
startswith
(
"
}
"
)
and
last_line
is
not
None
and
last_line
.
strip
()
!=
""
line
.
strip
().
startswith
(
"
}
"
)
and
last_line
is
not
None
and
last_line
.
strip
()
!=
""
):
line
=
(
"
"
*
define_padding
+
"
\\
"
if
in_define
else
""
)
+
"
\n
"
+
line
...
...
@@ -124,4 +123,4 @@ for filename in args:
with
open
(
filename
,
"
w
"
)
as
f
:
f
.
write
(
code
)
else
:
print
(
code
)
print
(
code
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment