folder_paths.py 9.91 KB
Newer Older
1
import os
2
import time
3
import logging
4

5
supported_pt_extensions: set[str] = set(['.ckpt', '.pt', '.bin', '.pth', '.safetensors', '.pkl'])
6

7
8
9
SupportedFileExtensionsType = set[str]
ScanPathType = list[str]
folder_names_and_paths: dict[str, tuple[ScanPathType, SupportedFileExtensionsType]] = {}
10

11
12
base_path = os.path.dirname(os.path.realpath(__file__))
models_dir = os.path.join(base_path, "models")
13
folder_names_and_paths["checkpoints"] = ([os.path.join(models_dir, "checkpoints")], supported_pt_extensions)
14
15
16
17
18
folder_names_and_paths["configs"] = ([os.path.join(models_dir, "configs")], [".yaml"])

folder_names_and_paths["loras"] = ([os.path.join(models_dir, "loras")], supported_pt_extensions)
folder_names_and_paths["vae"] = ([os.path.join(models_dir, "vae")], supported_pt_extensions)
folder_names_and_paths["clip"] = ([os.path.join(models_dir, "clip")], supported_pt_extensions)
19
folder_names_and_paths["unet"] = ([os.path.join(models_dir, "unet")], supported_pt_extensions)
20
21
folder_names_and_paths["clip_vision"] = ([os.path.join(models_dir, "clip_vision")], supported_pt_extensions)
folder_names_and_paths["style_models"] = ([os.path.join(models_dir, "style_models")], supported_pt_extensions)
22
folder_names_and_paths["embeddings"] = ([os.path.join(models_dir, "embeddings")], supported_pt_extensions)
23
folder_names_and_paths["diffusers"] = ([os.path.join(models_dir, "diffusers")], ["folder"])
24
folder_names_and_paths["vae_approx"] = ([os.path.join(models_dir, "vae_approx")], supported_pt_extensions)
25
26

folder_names_and_paths["controlnet"] = ([os.path.join(models_dir, "controlnet"), os.path.join(models_dir, "t2i_adapter")], supported_pt_extensions)
27
28
folder_names_and_paths["gligen"] = ([os.path.join(models_dir, "gligen")], supported_pt_extensions)

29
30
folder_names_and_paths["upscale_models"] = ([os.path.join(models_dir, "upscale_models")], supported_pt_extensions)

31
folder_names_and_paths["custom_nodes"] = ([os.path.join(base_path, "custom_nodes")], set())
32

33
folder_names_and_paths["hypernetworks"] = ([os.path.join(models_dir, "hypernetworks")], supported_pt_extensions)
34

35
36
folder_names_and_paths["photomaker"] = ([os.path.join(models_dir, "photomaker")], supported_pt_extensions)

37
38
folder_names_and_paths["classifiers"] = ([os.path.join(models_dir, "classifiers")], {""})

39
40
41
output_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "output")
temp_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "temp")
input_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "input")
42
user_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "user")
43

44
45
filename_list_cache = {}

46
if not os.path.exists(input_directory):
Enrico Fasoli's avatar
Enrico Fasoli committed
47
48
49
    try:
        os.makedirs(input_directory)
    except:
50
        logging.error("Failed to create input directory")
51
52
53
54
55

def set_output_directory(output_dir):
    global output_directory
    output_directory = output_dir

56
57
58
59
def set_temp_directory(temp_dir):
    global temp_directory
    temp_directory = temp_dir

Jairo Correa's avatar
Jairo Correa committed
60
61
62
63
def set_input_directory(input_dir):
    global input_directory
    input_directory = input_dir

64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
def get_output_directory():
    global output_directory
    return output_directory

def get_temp_directory():
    global temp_directory
    return temp_directory

def get_input_directory():
    global input_directory
    return input_directory


#NOTE: used in http server so don't put folders that should not be accessed remotely
def get_directory_by_type(type_name):
    if type_name == "output":
        return get_output_directory()
    if type_name == "temp":
        return get_temp_directory()
    if type_name == "input":
        return get_input_directory()
    return None

87

ltdrdata's avatar
ltdrdata committed
88
89
# determine base_dir rely on annotation if name is 'filename.ext [annotation]' format
# otherwise use default_path as base_dir
90
def annotated_filepath(name):
ltdrdata's avatar
ltdrdata committed
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
    if name.endswith("[output]"):
        base_dir = get_output_directory()
        name = name[:-9]
    elif name.endswith("[input]"):
        base_dir = get_input_directory()
        name = name[:-8]
    elif name.endswith("[temp]"):
        base_dir = get_temp_directory()
        name = name[:-7]
    else:
        return name, None

    return name, base_dir


def get_annotated_filepath(name, default_dir=None):
107
    name, base_dir = annotated_filepath(name)
ltdrdata's avatar
ltdrdata committed
108
109
110
111
112
113
114
115
116
117
118

    if base_dir is None:
        if default_dir is not None:
            base_dir = default_dir
        else:
            base_dir = get_input_directory()  # fallback path

    return os.path.join(base_dir, name)


def exists_annotated_filepath(name):
119
    name, base_dir = annotated_filepath(name)
ltdrdata's avatar
ltdrdata committed
120
121
122
123
124
125
126
127

    if base_dir is None:
        base_dir = get_input_directory()  # fallback path

    filepath = os.path.join(base_dir, name)
    return os.path.exists(filepath)


128
def add_model_folder_path(folder_name, full_folder_path):
129
    global folder_names_and_paths
130
131
    if folder_name in folder_names_and_paths:
        folder_names_and_paths[folder_name][0].append(full_folder_path)
132
133
    else:
        folder_names_and_paths[folder_name] = ([full_folder_path], set())
134

135
136
def get_folder_paths(folder_name):
    return folder_names_and_paths[folder_name][0][:]
137

138
def recursive_search(directory, excluded_dir_names=None):
139
140
    if not os.path.isdir(directory):
        return [], {}
141
142
143
144

    if excluded_dir_names is None:
        excluded_dir_names = []

145
    result = []
146
    dirs = {}
147
148
149
150
151

    # Attempt to add the initial directory to dirs with error handling
    try:
        dirs[directory] = os.path.getmtime(directory)
    except FileNotFoundError:
152
153
154
        logging.warning(f"Warning: Unable to access {directory}. Skipping this path.")

    logging.debug("recursive file list on directory {}".format(directory))
155
156
157
158
159
    for dirpath, subdirs, filenames in os.walk(directory, followlinks=True, topdown=True):
        subdirs[:] = [d for d in subdirs if d not in excluded_dir_names]
        for file_name in filenames:
            relative_path = os.path.relpath(os.path.join(dirpath, file_name), directory)
            result.append(relative_path)
160

161
162
        for d in subdirs:
            path = os.path.join(dirpath, d)
163
164
165
            try:
                dirs[path] = os.path.getmtime(path)
            except FileNotFoundError:
166
                logging.warning(f"Warning: Unable to access {path}. Skipping this path.")
167
                continue
168
    logging.debug("found {} files".format(len(result)))
169
    return result, dirs
170
171

def filter_files_extensions(files, extensions):
172
    return sorted(list(filter(lambda a: os.path.splitext(a)[-1].lower() in extensions or len(extensions) == 0, files)))
173
174
175
176
177



def get_full_path(folder_name, filename):
    global folder_names_and_paths
178
179
    if folder_name not in folder_names_and_paths:
        return None
180
    folders = folder_names_and_paths[folder_name]
181
    filename = os.path.relpath(os.path.join("/", filename), "/")
182
183
184
185
    for x in folders[0]:
        full_path = os.path.join(x, filename)
        if os.path.isfile(full_path):
            return full_path
186
187
        elif os.path.islink(full_path):
            logging.warning("WARNING path {} exists but doesn't link anywhere, skipping.".format(full_path))
188

189
    return None
190

191
def get_filename_list_(folder_name):
192
    global folder_names_and_paths
193
    output_list = set()
194
195
196
    folders = folder_names_and_paths[folder_name]
    output_folders = {}
    for x in folders[0]:
197
        files, folders_all = recursive_search(x, excluded_dir_names=[".git"])
198
199
200
        output_list.update(filter_files_extensions(files, folders[1]))
        output_folders = {**output_folders, **folders_all}

201
    return (sorted(list(output_list)), output_folders, time.perf_counter())
202
203
204
205
206
207
208

def cached_filename_list_(folder_name):
    global filename_list_cache
    global folder_names_and_paths
    if folder_name not in filename_list_cache:
        return None
    out = filename_list_cache[folder_name]
209

210
211
212
213
214
215
    for x in out[1]:
        time_modified = out[1][x]
        folder = x
        if os.path.getmtime(folder) != time_modified:
            return None

216
217
    folders = folder_names_and_paths[folder_name]
    for x in folders[0]:
218
219
220
        if os.path.isdir(x):
            if x not in out[1]:
                return None
221
222
223
224
225
226
227
228
229

    return out

def get_filename_list(folder_name):
    out = cached_filename_list_(folder_name)
    if out is None:
        out = get_filename_list_(folder_name)
        global filename_list_cache
        filename_list_cache[folder_name] = out
230
    return list(out[0])
231

232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
def get_save_image_path(filename_prefix, output_dir, image_width=0, image_height=0):
    def map_filename(filename):
        prefix_len = len(os.path.basename(filename_prefix))
        prefix = filename[:prefix_len + 1]
        try:
            digits = int(filename[prefix_len + 1:].split('_')[0])
        except:
            digits = 0
        return (digits, prefix)

    def compute_vars(input, image_width, image_height):
        input = input.replace("%width%", str(image_width))
        input = input.replace("%height%", str(image_height))
        return input

    filename_prefix = compute_vars(filename_prefix, image_width, image_height)

    subfolder = os.path.dirname(os.path.normpath(filename_prefix))
    filename = os.path.basename(os.path.normpath(filename_prefix))

    full_output_folder = os.path.join(output_dir, subfolder)

    if os.path.commonpath((output_dir, os.path.abspath(full_output_folder))) != output_dir:
255
256
257
        err = "**** ERROR: Saving image outside the output folder is not allowed." + \
              "\n full_output_folder: " + os.path.abspath(full_output_folder) + \
              "\n         output_dir: " + output_dir + \
258
259
              "\n         commonpath: " + os.path.commonpath((output_dir, os.path.abspath(full_output_folder)))
        logging.error(err)
260
        raise Exception(err)
261
262

    try:
comfyanonymous's avatar
comfyanonymous committed
263
        counter = max(filter(lambda a: os.path.normcase(a[1][:-1]) == os.path.normcase(filename) and a[1][-1] == "_", map(map_filename, os.listdir(full_output_folder))))[0] + 1
264
265
266
267
268
269
    except ValueError:
        counter = 1
    except FileNotFoundError:
        os.makedirs(full_output_folder, exist_ok=True)
        counter = 1
    return full_output_folder, filename, counter, subfolder, filename_prefix