Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lib_base
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sikang
lib_base
Commits
ec7e9c0f
Commit
ec7e9c0f
authored
Mar 28, 2019
by
sikang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
ssh://47.100.14.92:2289/sikang/lib_base
script
parents
5cf447ff
7a03d389
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
0 deletions
+64
-0
script/garble/insert.py
+64
-0
No files found.
script/garble/insert.py
0 → 100755
View file @
ec7e9c0f
#!/usr/bin/env python3
import
json
import
string
import
random
import
glob
,
os
used_names
=
[]
activity_mangle_setting
=
{}
# rand string for class names
def
gen_rand_str
():
rand_str
=
''
.
join
(
random
.
choices
(
string
.
ascii_uppercase
+
string
.
ascii_lowercase
,
k
=
8
))
while
rand_str
in
used_names
:
rand_str
=
''
.
join
(
random
.
choices
(
string
.
ascii_uppercase
+
string
.
ascii_lowercase
,
k
=
8
))
used_names
.
append
(
rand_str
)
return
rand_str
def
get_rand_code
(
index
):
code
=
""
if
index
==
0
:
code
+=
";
\n
String "
+
gen_rand_str
()
+
"=
\"
"
+
gen_rand_str
()
+
"
\"
;
\n
"
return
code
def
process_file_content
(
path
,
file_name
):
print
(
"processing content:
%
s..."
%
path
)
with
open
(
path
,
"r"
,
encoding
=
"utf-8"
)
as
f
:
# readlines以列表的形式将文件读出
lines
=
f
.
readlines
()
with
open
(
path
,
"w"
,
encoding
=
"utf-8"
)
as
f_w
:
for
line
in
lines
:
if
";
\n
"
in
line
and
"return"
not
in
line
and
"break"
not
in
line
and
"continue"
not
in
line
and
"import"
not
in
line
and
"package"
not
in
line
:
line
=
line
.
replace
(
";
\n
"
,
get_rand_code
(
0
))
f_w
.
write
(
line
)
print
(
"done
\n
"
)
return
# read configs
with
open
(
'obact.json'
,
"rt"
)
as
f
:
json_root
=
json
.
load
(
f
)
activities
=
json_root
[
"activities"
]
source_root
=
json_root
[
"root"
]
manifest
=
json_root
[
"manifest"
]
# mangle activity names
for
act_name
in
activities
:
activity_mangle_setting
[
act_name
]
=
gen_rand_str
()
root_path
=
os
.
path
.
join
(
os
.
getcwd
(),
source_root
)
# perform content replace for the files
print
(
"processing file content..."
)
for
root
,
dirs
,
files
in
os
.
walk
(
source_root
):
directory
=
os
.
path
.
join
(
os
.
getcwd
(),
root
)
for
file
in
files
:
if
file
.
endswith
(
".java"
):
# get the path of the java file
path
=
os
.
path
.
join
(
directory
,
file
)
process_file_content
(
path
,
file
)
print
(
"processing file content done"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment