Skip to content

Commit d9d2001

Browse files
committed
improve abs_path of file dependency
1 parent ffa4123 commit d9d2001

File tree

3 files changed

+35
-8
lines changed

3 files changed

+35
-8
lines changed

dependency_checker.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,10 @@ def collect_unknown_models(filename):
293293

294294
# step 3: handle local files
295295
process_local_file_path_async(file_mapping_dict, max_workers=20)
296-
files_dict = {v[0]: {"filename": windows_to_linux_path(os.path.relpath(v[2], BASE_PATH)), "urls": [v[1]]} for v in file_mapping_dict.values()}
296+
files_dict = {
297+
v[0]: {
298+
"filename": windows_to_linux_path(os.path.relpath(v[2], BASE_PATH)) if not v[3] else v[2],
299+
"urls": [v[1]]} for v in file_mapping_dict.values()}
297300

298301
depencencies = {
299302
"comfyui_version": comfyui_version,

file_upload.py

+15-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from concurrent.futures import ThreadPoolExecutor, as_completed
66
import folder_paths
77

8-
from .utils.utils import compute_sha256
8+
from .utils.utils import compute_sha256, get_alphanumeric_hash
99

1010
ext_to_type = {
1111
# image
@@ -27,7 +27,7 @@
2727
'.m4a': 'audio/mp4',
2828
}
2929

30-
def upload_file_to_myshell(local_file: str) -> str:
30+
def upload_file_to_myshell(local_file: str, target_path: str, is_abs) -> str:
3131
''' Now we only support upload file one-by-one
3232
'''
3333
MYSHELL_KEY = os.environ.get('MYSHELL_KEY', "OPENSOURCE_FIXED")
@@ -51,8 +51,8 @@ def upload_file_to_myshell(local_file: str) -> str:
5151
response = requests.request("POST", server_url, headers=headers, files=files)
5252
if response.status_code == 200:
5353
end_time = time.time()
54-
logging.info(f"{local_file} uploaded, time elapsed: {end_time - start_time}")
55-
return [sha256sum, response.json()['url'], local_file]
54+
logging.info(f"{local_file} uploaded, time elapsed: {end_time - start_time}, will be saved to {target_path}")
55+
return [sha256sum, response.json()['url'], target_path, is_abs]
5656
else:
5757
raise Exception(
5858
f"[HTTP ERROR] {response.status_code} - {response.text} \n"
@@ -66,16 +66,25 @@ def collect_local_file(item, mapping_dict={}):
6666
abspath = os.path.abspath(item)
6767
input_abspath = os.path.join(input_dir, item)
6868
# required file type
69+
is_abs = False
6970
if os.path.isfile(abspath):
7071
fpath = abspath
72+
is_abs = True
73+
7174
elif os.path.isfile(input_abspath):
7275
fpath = input_abspath
7376
else:
7477
fpath = None
7578
if fpath is not None:
7679
ext = os.path.splitext(fpath)[1]
7780
if ext.lower() in ext_to_type.keys():
78-
mapping_dict[item] = fpath
81+
if is_abs: # if use abs path, replace it
82+
filename_hash = get_alphanumeric_hash(abspath)[:16]
83+
count = len(mapping_dict)
84+
target_path = f"/ShellAgentDeploy/ComfyUI/input/{filename_hash}_{count:06d}{ext}"
85+
mapping_dict[item] = (fpath, target_path, is_abs)
86+
else:
87+
mapping_dict[item] = (fpath, fpath, is_abs)
7988
return
8089
else:
8190
return
@@ -86,7 +95,7 @@ def process_local_file_path_async(mapping_dict, max_workers=10):
8695
start_time = time.time()
8796
with ThreadPoolExecutor(max_workers=max_workers) as executor:
8897
# Submit tasks to the executor
89-
futures = {executor.submit(upload_file_to_myshell, full_path): filename for filename, full_path in mapping_dict.items()}
98+
futures = {executor.submit(upload_file_to_myshell, source_path, target_path, is_abs): filename for filename, (source_path, target_path, is_abs) in mapping_dict.items()}
9099
logging.info("submit done")
91100
# Collect the results as they complete
92101
for future in as_completed(futures):

utils/utils.py

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import hashlib
22
import time
33
from pathlib import PurePosixPath, Path, PureWindowsPath
4+
import base64
5+
import re
46

57
def windows_to_linux_path(windows_path):
68
return PureWindowsPath(windows_path).as_posix()
@@ -17,4 +19,17 @@ def compute_sha256(file_path, chunk_size=1024 ** 2):
1719
sha256.update(chunk)
1820
print("finish compute sha256 for", file_path, f"time: {time.time() - start}")
1921
# Return the hexadecimal digest of the hash
20-
return sha256.hexdigest()
22+
return sha256.hexdigest()
23+
24+
25+
def get_alphanumeric_hash(input_string: str) -> str:
26+
# Generate a SHA-256 hash of the input string
27+
sha256_hash = hashlib.sha256(input_string.encode()).digest()
28+
29+
# Encode the hash in base64 to get a string with [A-Za-z0-9+/=]
30+
base64_hash = base64.b64encode(sha256_hash).decode('ascii')
31+
32+
# Remove any non-alphanumeric characters (+, /, =)
33+
alphanumeric_hash = re.sub(r'[^a-zA-Z0-9]', '', base64_hash)
34+
35+
return alphanumeric_hash

0 commit comments

Comments
 (0)