add multithreading support
This commit is contained in:
parent
dbbdc56e17
commit
3d8600e863
3
.github/workflows/gen-i386-whitelist.yml
vendored
3
.github/workflows/gen-i386-whitelist.yml
vendored
@ -15,6 +15,9 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Get script depends
|
||||
run: apt-get install -y python3-numpy
|
||||
|
||||
- name: Generate whitelist json files
|
||||
run: ./gen-i386-whitelist.py
|
||||
|
||||
|
@ -4,6 +4,8 @@ import os, errno
|
||||
import json
|
||||
import subprocess
|
||||
import apt
|
||||
import numpy as np
|
||||
import threading
|
||||
|
||||
def silentremove(filename):
|
||||
try:
|
||||
@ -12,24 +14,43 @@ def silentremove(filename):
|
||||
if e.errno != errno.ENOENT: # errno.ENOENT = no such file or directory
|
||||
raise # re-raise exception if a different error occurred
|
||||
|
||||
current_path = os.path.dirname(os.path.realpath(__file__))
|
||||
|
||||
pkgname_lines = []
|
||||
srcname_lines = []
|
||||
srcnames_clean = []
|
||||
file = open(current_path + "/i386_whitelist_bins", "r")
|
||||
for line in file.readlines():
|
||||
pkgname = line.strip()
|
||||
if pkgname != "" and not pkgname.endswith("-udeb"):
|
||||
pkgname_lines.append(pkgname)
|
||||
def pharse_build_tree(pkg_arr, current_path, pkgname_lines):
|
||||
for pkgname in pkg_arr:
|
||||
print("Parsing dep tree for: " + pkgname)
|
||||
result = subprocess.run([current_path + '/get_depend_tree.sh', pkgname], stdout=subprocess.PIPE)
|
||||
stdout = result.stdout.decode('utf-8')
|
||||
for line in stdout.splitlines():
|
||||
if line != "":
|
||||
pkgname_lines.append(line)
|
||||
|
||||
current_path = os.path.dirname(os.path.realpath(__file__))
|
||||
|
||||
whitelist_arr = np.array([])
|
||||
thread_arr = []
|
||||
pkgname_lines = []
|
||||
srcname_lines = []
|
||||
srcnames_clean = []
|
||||
file = open(current_path + "/i386_whitelist_bins", "r")
|
||||
|
||||
for line in file.readlines():
|
||||
pkgname = line.strip()
|
||||
if pkgname != "" and not pkgname.endswith("-udeb"):
|
||||
pkgname_lines.append(pkgname)
|
||||
np.append(whitelist_arr, pkgname)
|
||||
file.close()
|
||||
|
||||
newarr = np.array_split(whitelist_arr, 8)
|
||||
|
||||
for array in newarr:
|
||||
t0 = threading.Thread(target=pharse_build_tree, args=(array, current_path, pkgname_lines,))
|
||||
thread_arr.append(t0)
|
||||
|
||||
for thread_proc in thread_arr:
|
||||
thread_proc.start()
|
||||
|
||||
for thread_proc in thread_arr:
|
||||
thread_proc.join()
|
||||
|
||||
c = apt.Cache()
|
||||
|
||||
for pkgname in pkgname_lines:
|
||||
@ -41,7 +62,7 @@ for pkgname in pkgname_lines:
|
||||
pass
|
||||
|
||||
for i in srcname_lines:
|
||||
if i not in srcnames_clean:
|
||||
if i not in srcnames_clean and i + "-dmo" not in srcnames_clean:
|
||||
srcnames_clean.append(i)
|
||||
|
||||
src_data = {
|
||||
@ -54,4 +75,3 @@ with open("i386_src_whitelist.json", "w") as twitterDataFile:
|
||||
twitterDataFile.write(
|
||||
json.dumps(src_data, indent=4)
|
||||
)
|
||||
|
||||
|
9
get_source_name.py
Executable file
9
get_source_name.py
Executable file
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/python3
|
||||
import sys
|
||||
|
||||
import apt
|
||||
|
||||
pkgname = sys.argv[1]
|
||||
c = apt.Cache()
|
||||
print(c[pkgname].candidate.source_name)
|
||||
|
1012
i386_src_whitelist.json
Executable file → Normal file
1012
i386_src_whitelist.json
Executable file → Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user