forked from ArchipelagoMW/Archipelago
- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathUtils.py
More file actions
Latest commit
1376 lines (1130 loc) · 53.8 KB
/
Copy pathUtils.py
File metadata and controls
1376 lines (1130 loc) · 53.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ importannotations
importasyncio
importconcurrent.futures
importjson
importtyping
importbuiltins
importos
importitertools
importsubprocess
importsys
importpickle
importfunctools
importio
importcollections
importimportlib
importlogging
importwarnings
fromargparseimportNamespace
fromdatetimeimportdatetime, timezone
fromsettingsimportSettings, get_settings
fromtimeimportsleep
fromtypingimportBinaryIO, Coroutine, Mapping, Optional, Set, Dict, Any, Union, TypeGuard
fromyamlimportload, load_all, dump
frompathspecimportPathSpec, GitIgnoreSpec
fromtyping_extensionsimportdeprecated
try:
fromyamlimportCLoaderasUnsafeLoader, CSafeLoaderasSafeLoader, CDumperasDumper
exceptImportError:
fromyamlimportLoaderasUnsafeLoader, SafeLoader, Dumper
iftyping.TYPE_CHECKING:
importtkinter
importpathlib
fromBaseClassesimportRegion
importmultiprocessing
deftuplize_version(version: str) ->Version:
returnVersion(*(int(piece) forpieceinversion.split(".")))
classVersion(typing.NamedTuple):
major: int
minor: int
build: int
defas_simple_string(self) ->str:
return".".join(str(item) foriteminself)
__version__="0.6.7"
version_tuple=tuplize_version(__version__)
is_linux=sys.platform.startswith("linux")
is_macos=sys.platform=="darwin"
is_windows=sys.platformin ("win32", "cygwin", "msys")
defint16_as_bytes(value: int) ->typing.List[int]:
value=value&0xFFFF
return [value&0xFF, (value>>8) &0xFF]
defint32_as_bytes(value: int) ->typing.List[int]:
value=value&0xFFFFFFFF
return [value&0xFF, (value>>8) &0xFF, (value>>16) &0xFF, (value>>24) &0xFF]
defpc_to_snes(value: int) ->int:
return ((value<<1) &0x7F0000) | (value&0x7FFF) |0x8000
defsnes_to_pc(value: int) ->int:
return ((value&0x7F0000) >>1) | (value&0x7FFF)
RetType=typing.TypeVar("RetType")
S=typing.TypeVar("S")
T=typing.TypeVar("T")
defcache_argsless(function: typing.Callable[[], RetType]) ->typing.Callable[[], RetType]:
assertnotfunction.__code__.co_argcount, "Can only cache 0 argument functions with this cache."
sentinel=object()
result: typing.Union[object, RetType] =sentinel
def_wrap() ->RetType:
nonlocalresult
ifresultissentinel:
result=function()
returntyping.cast(RetType, result)
return_wrap
defcache_self1(function: typing.Callable[[S, T], RetType]) ->typing.Callable[[S, T], RetType]:
"""Specialized cache for self + 1 arg. Does not keep global ref to self and skips building a dict key tuple."""
assertfunction.__code__.co_argcount==2, "Can only cache 2 argument functions with this cache."
cache_name=f"__cache_{function.__name__}__"
@functools.wraps(function)
defwrap(self: S, arg: T) ->RetType:
cache: Optional[Dict[T, RetType]] =getattr(self, cache_name, None)
ifcacheisNone:
res=function(self, arg)
setattr(self, cache_name, {arg: res})
returnres
try:
returncache[arg]
exceptKeyError:
res=function(self, arg)
cache[arg] =res
returnres
wrap.__defaults__=function.__defaults__
returnwrap
defis_frozen() ->bool:
returntyping.cast(bool, getattr(sys, 'frozen', False))
deflocal_path(*path: str) ->str:
"""
Returns path to a file in the local Archipelago installation or source.
This might be read-only and user_path should be used instead for ROMs, configuration, etc.
"""
ifhasattr(local_path, 'cached_path'):
pass
elifis_frozen():
ifhasattr(sys, "_MEIPASS"):
# we are running in a PyInstaller bundle
local_path.cached_path=sys._MEIPASS# pylint: disable=protected-access,no-member
else:
# cx_Freeze
local_path.cached_path=os.path.dirname(os.path.abspath(sys.argv[0]))
else:
import__main__
ifglobals().get("__file__") andos.path.isfile(__file__):
# we are running in a normal Python environment
local_path.cached_path=os.path.dirname(os.path.abspath(__file__))
elifhasattr(__main__, "__file__") andos.path.isfile(__main__.__file__):
# we are running in a normal Python environment, but AP was imported weirdly
local_path.cached_path=os.path.dirname(os.path.abspath(__main__.__file__))
else:
# pray
local_path.cached_path=os.path.abspath(".")
returnos.path.join(local_path.cached_path, *path)
defhome_path(*path: str) ->str:
"""Returns path to a file in the user home's Archipelago directory."""
ifhasattr(home_path, 'cached_path'):
pass
elifsys.platform.startswith('linux'):
xdg_data_home=os.getenv('XDG_DATA_HOME', os.path.expanduser('~/.local/share'))
home_path.cached_path=xdg_data_home+'/Archipelago'
ifnotos.path.isdir(home_path.cached_path):
legacy_home_path=os.path.expanduser('~/Archipelago')
ifos.path.isdir(legacy_home_path):
os.renames(legacy_home_path, home_path.cached_path)
os.symlink(home_path.cached_path, legacy_home_path)
else:
os.makedirs(home_path.cached_path, 0o700, exist_ok=True)
elifsys.platform=='darwin':
importplatformdirs
home_path.cached_path=platformdirs.user_data_dir("Archipelago", False)
os.makedirs(home_path.cached_path, 0o700, exist_ok=True)
else:
# not implemented
home_path.cached_path=local_path() # this will generate the same exceptions we got previously
returnos.path.join(home_path.cached_path, *path)
defuser_path(*path: str) ->str:
"""Returns either local_path or home_path based on write permissions."""
ifhasattr(user_path, "cached_path"):
pass
elifos.access(local_path(), os.W_OK) andnot (is_macosandis_frozen()):
user_path.cached_path=local_path()
else:
user_path.cached_path=home_path()
# populate home from local
ifuser_path.cached_path!=local_path():
importfilecmp
ifnotos.path.exists(user_path("manifest.json")) or \
notos.path.exists(local_path("manifest.json")) or \
notfilecmp.cmp(local_path("manifest.json"), user_path("manifest.json"), shallow=True):
importshutil
fordnin ("Players", "data/sprites", "data/lua"):
shutil.copytree(local_path(dn), user_path(dn), dirs_exist_ok=True)
ifnotos.path.exists(local_path("manifest.json")):
warnings.warn(f"Upgrading {user_path()} from something that is not a proper install")
else:
shutil.copy2(local_path("manifest.json"), user_path("manifest.json"))
os.makedirs(user_path("worlds"), exist_ok=True)
returnos.path.join(user_path.cached_path, *path)
defcache_path(*path: str) ->str:
"""Returns path to a file in the user's Archipelago cache directory."""
ifhasattr(cache_path, "cached_path"):
pass
else:
importplatformdirs
cache_path.cached_path=platformdirs.user_cache_dir("Archipelago", False)
returnos.path.join(cache_path.cached_path, *path)
defoutput_path(*path: str) ->str:
ifhasattr(output_path, 'cached_path'):
returnos.path.join(output_path.cached_path, *path)
output_path.cached_path=user_path(get_settings()["general_options"]["output_path"])
path=os.path.join(output_path.cached_path, *path)
os.makedirs(os.path.dirname(path), exist_ok=True)
returnpath
defopen_file(filename: typing.Union[str, "pathlib.Path"]) ->None:
ifis_windows:
os.startfile(filename) # type: ignore
else:
fromshutilimportwhich
open_command=which("open") ifis_macoselse (which("xdg-open") orwhich("gnome-open") orwhich("kde-open"))
assertopen_command, "Didn't find program for open_file! Please report this together with system details."
env=env_cleared_lib_path()
subprocess.call([open_command, filename], env=env)
# from https://gist.github.com/pypt/94d747fe5180851196eb#gistcomment-4015118 with some changes
classUniqueKeyLoader(SafeLoader):
defconstruct_mapping(self, node, deep=False):
mapping=set()
forkey_node, value_nodeinnode.value:
key=self.construct_object(key_node, deep=deep)
ifkeyinmapping:
logging.error(f"YAML duplicates sanity check failed{key_node.start_mark}")
raiseKeyError(f"Duplicate key {key} found in YAML. Already found keys: {mapping}.")
if (str(key).startswith("+") and (str(key)[1:] inmapping)) or (f"+{key}"inmapping):
logging.error(f"YAML merge duplicates sanity check failed{key_node.start_mark}")
raiseKeyError(f"Equivalent key {key} found in YAML. Already found keys: {mapping}.")
mapping.add(key)
returnsuper().construct_mapping(node, deep)
parse_yaml=functools.partial(load, Loader=UniqueKeyLoader)
parse_yamls=functools.partial(load_all, Loader=UniqueKeyLoader)
unsafe_parse_yaml=functools.partial(load, Loader=UnsafeLoader)
delload, load_all# should not be used. don't leak their names
defget_cert_none_ssl_context():
importssl
ctx=ssl.create_default_context()
ctx.check_hostname=False
ctx.verify_mode=ssl.CERT_NONE
returnctx
@cache_argsless
defget_public_ipv4() ->str:
importsocket
importurllib.request
try:
ip=socket.gethostbyname(socket.gethostname())
exceptsocket.gaierror:
# if hostname or resolvconf is not set up properly, this may fail
warnings.warn("Could not resolve own hostname, falling back to 127.0.0.1")
ip="127.0.0.1"
ctx=get_cert_none_ssl_context()
try:
ip=urllib.request.urlopen("https://checkip.amazonaws.com/", context=ctx, timeout=10).read().decode("utf8").strip()
exceptExceptionase:
# noinspection PyBroadException
try:
ip=urllib.request.urlopen("https://v4.ident.me", context=ctx, timeout=10).read().decode("utf8").strip()
exceptException:
logging.exception(e)
pass# we could be offline, in a local game, so no point in erroring out
returnip
@cache_argsless
defget_public_ipv6() ->str:
importsocket
importurllib.request
try:
ip=socket.gethostbyname(socket.gethostname())
exceptsocket.gaierror:
# if hostname or resolvconf is not set up properly, this may fail
warnings.warn("Could not resolve own hostname, falling back to ::1")
ip="::1"
ctx=get_cert_none_ssl_context()
try:
ip=urllib.request.urlopen("https://v6.ident.me", context=ctx, timeout=10).read().decode("utf8").strip()
exceptExceptionase:
logging.exception(e)
pass# we could be offline, in a local game, or ipv6 may not be available
returnip
@deprecated("Utils.get_options() is deprecated. Use the settings API instead.")
defget_options() ->Settings:
deprecate("Utils.get_options() is deprecated. Use the settings API instead.")
returnget_settings()
defpersistent_store(category: str, key: str, value: typing.Any, force_store: bool=False):
storage=persistent_load()
ifnotforce_storeandcategoryinstorageandkeyinstorage[category] andstorage[category][key] ==value:
return# no changes necessary
category_dict=storage.setdefault(category, {})
category_dict[key] =value
path=user_path("_persistent_storage.yaml")
withopen(path, "wt") asf:
f.write(dump(storage, Dumper=Dumper))
defpersistent_load() ->Dict[str, Dict[str, Any]]:
storage: Union[Dict[str, Dict[str, Any]], None] =getattr(persistent_load, "storage", None)
ifstorage:
returnstorage
path=user_path("_persistent_storage.yaml")
storage= {}
ifos.path.exists(path):
try:
withopen(path, "r") asf:
storage=unsafe_parse_yaml(f.read())
if"datapackage"instorage:
delstorage["datapackage"]
logging.debug("Removed old datapackage from persistent storage")
exceptExceptionase:
logging.debug(f"Could not read store: {e}")
ifstorageisNone:
storage= {}
setattr(persistent_load, "storage", storage)
returnstorage
defget_file_safe_name(name: str) ->str:
return"".join(cforcinnameifcnotin'<>:"/\\|?*')
defload_data_package_for_checksum(game: str, checksum: typing.Optional[str]) ->Dict[str, Any]:
ifchecksumandgame:
ifchecksum!=get_file_safe_name(checksum):
raiseValueError(f"Bad symbols in checksum: {checksum}")
path=cache_path("datapackage", get_file_safe_name(game), f"{checksum}.json")
ifos.path.exists(path):
try:
withopen(path, "r", encoding="utf-8-sig") asf:
returnjson.load(f)
exceptExceptionase:
logging.debug(f"Could not load data package: {e}")
# cache does not match
return {}
defstore_data_package_for_checksum(game: str, data: typing.Dict[str, Any]) ->None:
checksum=data.get("checksum")
ifchecksumandgame:
ifchecksum!=get_file_safe_name(checksum):
raiseValueError(f"Bad symbols in checksum: {checksum}")
game_folder=cache_path("datapackage", get_file_safe_name(game))
os.makedirs(game_folder, exist_ok=True)
try:
withopen(os.path.join(game_folder, f"{checksum}.json"), "w", encoding="utf-8-sig") asf:
json.dump(data, f, ensure_ascii=False, separators=(",", ":"))
exceptExceptionase:
logging.debug(f"Could not store data package: {e}")
defread_apignore(filename: str|pathlib.Path) ->PathSpec|None:
try:
withopen(filename) asignore_file:
returnGitIgnoreSpec.from_lines(ignore_file)
exceptFileNotFoundError:
returnNone
defget_default_adjuster_settings(game_name: str) ->Namespace:
importLttPAdjuster
adjuster_settings=Namespace()
ifgame_name==LttPAdjuster.GAME_ALTTP:
returnLttPAdjuster.get_argparser().parse_known_args(args=[])[0]
returnadjuster_settings
defget_adjuster_settings_no_defaults(game_name: str) ->Namespace:
returnpersistent_load().get("adjuster", {}).get(game_name, Namespace())
defget_adjuster_settings(game_name: str) ->Namespace:
adjuster_settings=get_adjuster_settings_no_defaults(game_name)
default_settings=get_default_adjuster_settings(game_name)
# Fill in any arguments from the argparser that we haven't seen before
returnNamespace(**vars(adjuster_settings), **{
k: vfork, vinvars(default_settings).items() ifknotinvars(adjuster_settings)
})
@cache_argsless
defget_unique_identifier():
common_path=cache_path("common.json")
try:
withopen(common_path) asf:
common_file=json.load(f)
uuid=common_file.get("uuid", None)
exceptFileNotFoundError:
common_file= {}
uuid=None
ifuuid:
returnuuid
fromuuidimportuuid4
uuid=str(uuid4())
common_file["uuid"] =uuid
cache_folder=os.path.dirname(common_path)
os.makedirs(cache_folder, exist_ok=True)
withopen(common_path, "w") asf:
json.dump(common_file, f, separators=(",", ":"))
returnuuid
safe_builtins=frozenset((
'set',
'frozenset',
))
classRestrictedUnpickler(pickle.Unpickler):
generic_properties_module: Optional[object]
def__init__(self, *args: Any, **kwargs: Any) ->None:
super(RestrictedUnpickler, self).__init__(*args, **kwargs)
self.options_module=importlib.import_module("Options")
self.net_utils_module=importlib.import_module("NetUtils")
self.generic_properties_module=None
deffind_class(self, module: str, name: str) ->type:
ifmodule=="builtins"andnameinsafe_builtins:
returngetattr(builtins, name)
# used by OptionCounter
# necessary because the actual Options class instances are pickled when transfered to WebHost generation pool
ifmodule=="collections"andname=="Counter":
returncollections.Counter
# used by MultiServer -> savegame/multidata
ifmodule=="NetUtils"andnamein {"NetworkItem", "ClientStatus", "Hint",
"SlotType", "NetworkSlot", "HintStatus"}:
returngetattr(self.net_utils_module, name)
# Options and Plando are unpickled by WebHost -> Generate
ifmodule=="worlds.generic"andname=="PlandoItem":
ifnotself.generic_properties_module:
self.generic_properties_module=importlib.import_module("worlds.generic")
returngetattr(self.generic_properties_module, name)
# pep 8 specifies that modules should have "all-lowercase names" (options, not Options)
ifmodule.lower().endswith("options"):
ifmodule=="Options":
mod=self.options_module
else:
mod=importlib.import_module(module)
obj=getattr(mod, name)
ifissubclass(obj, (self.options_module.Option, self.options_module.PlandoConnection,
self.options_module.PlandoItem, self.options_module.PlandoText)):
returnobj
# Forbid everything else.
raisepickle.UnpicklingError(f"global '{module}.{name}' is forbidden")
defrestricted_loads(s: bytes) ->Any:
"""Helper function analogous to pickle.loads()."""
returnRestrictedUnpickler(io.BytesIO(s)).load()
defrestricted_dumps(obj: Any) ->bytes:
"""Helper function analogous to pickle.dumps()."""
s=pickle.dumps(obj)
# Assert that the string can be successfully loaded by restricted_loads
try:
restricted_loads(s)
exceptpickle.UnpicklingErrorase:
raisepickle.PicklingError(e) frome
returns
classByValue:
"""
Mixin for enums to pickle value instead of name (restores pre-3.11 behavior). Use as left-most parent.
See https://github.com/python/cpython/pull/26658 for why this exists.
"""
def__reduce_ex__(self, prot):
returnself.__class__, (self._value_, )
classKeyedDefaultDict(collections.defaultdict):
"""defaultdict variant that uses the missing key as argument to default_factory"""
default_factory: typing.Callable[[typing.Any], typing.Any]
def__init__(self,
default_factory: typing.Callable[[Any], Any] =None,
seq: typing.Union[typing.Mapping, typing.Iterable, None] =None,
**kwargs):
ifseqisnotNone:
super().__init__(default_factory, seq, **kwargs)
else:
super().__init__(default_factory, **kwargs)
def__missing__(self, key):
self[key] =value=self.default_factory(key)
returnvalue
defget_text_between(text: str, start: str, end: str) ->str:
returntext[text.index(start) +len(start): text.rindex(end)]
defget_text_after(text: str, start: str) ->str:
returntext[text.index(start) +len(start):]
loglevel_mapping= {'error': logging.ERROR, 'info': logging.INFO, 'warning': logging.WARNING, 'debug': logging.DEBUG}
definit_logging(name: str, loglevel: typing.Union[str, int] =logging.INFO,
write_mode: str="w", log_format: str="[%(name)s at %(asctime)s]: %(message)s",
add_timestamp: bool=False, exception_logger: typing.Optional[str] =None):
importdatetime
loglevel: int=loglevel_mapping.get(loglevel, loglevel)
log_folder=user_path("logs")
os.makedirs(log_folder, exist_ok=True)
root_logger=logging.getLogger()
forhandlerinroot_logger.handlers[:]:
root_logger.removeHandler(handler)
handler.close()
root_logger.setLevel(loglevel)
logging.getLogger("websockets").setLevel(loglevel) # make sure level is applied for websockets
if"a"notinwrite_mode:
name+=f"_{datetime.datetime.now().strftime('%Y_%m_%d_%H_%M_%S')}"
file_handler=logging.FileHandler(
os.path.join(log_folder, f"{name}.txt"),
write_mode,
encoding="utf-8-sig")
file_handler.setFormatter(logging.Formatter(log_format))
classFilter(logging.Filter):
def__init__(self, filter_name: str, condition: typing.Callable[[logging.LogRecord], bool]) ->None:
super().__init__(filter_name)
self.condition=condition
deffilter(self, record: logging.LogRecord) ->bool:
returnself.condition(record)
file_handler.addFilter(Filter("NoStream", lambdarecord: notgetattr(record, "NoFile", False)))
file_handler.addFilter(Filter("NoCarriageReturn", lambdarecord: '\r'notinrecord.getMessage()))
root_logger.addHandler(file_handler)
ifsys.stdout:
formatter=logging.Formatter(fmt='[%(asctime)s] %(message)s', datefmt='%Y-%m-%d %H:%M:%S')
stream_handler=logging.StreamHandler(sys.stdout)
stream_handler.addFilter(Filter("NoFile", lambdarecord: notgetattr(record, "NoStream", False)))
ifadd_timestamp:
stream_handler.setFormatter(formatter)
root_logger.addHandler(stream_handler)
ifhasattr(sys.stdout, "reconfigure"):
sys.stdout.reconfigure(encoding="utf-8", errors="replace")
# Relay unhandled exceptions to logger.
ifnotgetattr(sys.excepthook, "_wrapped", False): # skip if already modified
orig_hook=sys.excepthook
defhandle_exception(exc_type, exc_value, exc_traceback):
ifissubclass(exc_type, KeyboardInterrupt):
sys.__excepthook__(exc_type, exc_value, exc_traceback)
return
logging.getLogger(exception_logger).exception("Uncaught exception",
exc_info=(exc_type, exc_value, exc_traceback),
extra={"NoStream": exception_loggerisNone})
returnorig_hook(exc_type, exc_value, exc_traceback)
handle_exception._wrapped=True
sys.excepthook=handle_exception
def_cleanup():
forfileinos.scandir(log_folder):
iffile.name.endswith(".txt"):
last_change=datetime.datetime.fromtimestamp(file.stat().st_mtime)
ifdatetime.datetime.now() -last_change>datetime.timedelta(days=7):
try:
os.unlink(file.path)
exceptExceptionase:
logging.exception(e)
else:
logging.debug(f"Deleted old logfile {file.path}")
importthreading
threading.Thread(target=_cleanup, name="LogCleaner").start()
importplatform
logging.info(
f"Archipelago ({__version__}) logging initialized"
f" on {platform.platform()} process {os.getpid()}"
f" running Python {sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}"
f"{' (frozen)'ifis_frozen() else''}"
)
defstream_input(stream: typing.TextIO, queue: "asyncio.Queue[str]"):
defqueuer():
while1:
try:
text=stream.readline().strip()
exceptUnicodeDecodeErrorase:
logging.exception(e)
else:
iftext:
queue.put_nowait(text)
else:
sleep(0.01) # non-blocking stream
fromthreadingimportThread
thread=Thread(target=queuer, name=f"Stream handler for {stream.name}", daemon=True)
thread.start()
returnthread
deftkinter_center_window(window: "tkinter.Tk") ->None:
window.update()
x=int(window.winfo_screenwidth() /2-window.winfo_reqwidth() /2)
y=int(window.winfo_screenheight() /2-window.winfo_reqheight() /2)
window.geometry(f"+{x}+{y}")
classVersionException(Exception):
pass
defchaining_prefix(index: int, labels: typing.Sequence[str]) ->str:
text=""
max_label=len(labels) -1
whileindex>max_label:
text+=labels[-1]
index-=max_label
returnlabels[index] +text
# noinspection PyPep8Naming
defformat_SI_prefix(value, power=1000, power_labels=("", "k", "M", "G", "T", "P", "E", "Z", "Y")) ->str:
"""Formats a value into a value + metric/si prefix. More info at https://en.wikipedia.org/wiki/Metric_prefix"""
importdecimal
n=0
value=decimal.Decimal(value)
limit=power-decimal.Decimal("0.005")
whilevalue>=limit:
value/=power
n+=1
returnf"{value.quantize(decimal.Decimal('1.00'))}{chaining_prefix(n, power_labels)}"
defget_fuzzy_results(input_word: str, word_list: typing.Collection[str], limit: typing.Optional[int] =None) \
->typing.List[typing.Tuple[str, int]]:
importjellyfish
defget_fuzzy_ratio(word1: str, word2: str) ->float:
ifword1==word2:
return1.01
return (1-jellyfish.damerau_levenshtein_distance(word1.lower(), word2.lower())
/max(len(word1), len(word2)))
limit=limitiflimitelselen(word_list)
returnlist(
map(
lambdacontainer: (container[0], int(container[1]*100)), # convert up to limit to int %
sorted(
map(lambdacandidate: (candidate, get_fuzzy_ratio(input_word, candidate)), word_list),
key=lambdaelement: element[1],
reverse=True
)[0:limit]
)
)
defget_intended_text(input_text: str, possible_answers) ->typing.Tuple[str, bool, str]:
picks=get_fuzzy_results(input_text, possible_answers, limit=2)
iflen(picks) >1:
dif=picks[0][1] -picks[1][1]
ifpicks[0][1] ==101:
returnpicks[0][0], True, "Perfect Match"
elifpicks[0][1] ==100:
returnpicks[0][0], True, "Case Insensitive Perfect Match"
elifpicks[0][1] <75:
returnpicks[0][0], False, f"Didn't find something that closely matches '{input_text}', " \
f"did you mean '{picks[0][0]}'? ({picks[0][1]}% sure)"
elifdif>5:
returnpicks[0][0], True, "Close Match"
else:
returnpicks[0][0], False, f"Too many close matches for '{input_text}', " \
f"did you mean '{picks[0][0]}'? ({picks[0][1]}% sure)"
else:
ifpicks[0][1] >90:
returnpicks[0][0], True, "Only Option Match"
else:
returnpicks[0][0], False, f"Didn't find something that closely matches '{input_text}', " \
f"did you mean '{picks[0][0]}'? ({picks[0][1]}% sure)"
defget_input_text_from_response(text: str, command: str) ->typing.Optional[str]:
"""
Parses the response text from `get_intended_text` to find the suggested input and autocomplete the command in
arguments with it.
:param text: The response text from `get_intended_text`.
:param command: The command to which the input text should be added. Must contain the prefix used by the command
(`!` or `/`).
:return: The command with the suggested input text appended, or None if no suggestion was found.
"""
if"did you mean "intext:
forquestionin ("Didn't find something that closely matches",
"Too many close matches"):
iftext.startswith(question):
name=get_text_between(text, "did you mean '",
"'? (")
returnf"{command}{name}"
eliftext.startswith("Missing: "):
returntext.replace("Missing: ", "!hint_location ")
returnNone
defis_kivy_running() ->bool:
if"kivy"insys.modules:
fromkivy.appimportApp
returnApp.get_running_app() isnotNone
returnFalse
defenv_cleared_lib_path() ->Mapping[str, str]:
"""
Creates a copy of the current environment vars with the LD_LIBRARY_PATH removed if set, as this can interfere when
launching something in a subprocess.
"""
env=os.environ
if"LD_LIBRARY_PATH"inenv:
env=env.copy()
delenv["LD_LIBRARY_PATH"]
returnenv
def_mp_open_filename(res: "multiprocessing.Queue[typing.Optional[str]]", *args: Any) ->None:
ifis_kivy_running():
raiseRuntimeError("kivy should not be running in multiprocess")
res.put(open_filename(*args))
def_mp_save_filename(res: "multiprocessing.Queue[typing.Optional[str]]", *args: Any) ->None:
ifis_kivy_running():
raiseRuntimeError("kivy should not be running in multiprocess")
res.put(save_filename(*args))
def_run_for_stdout(*args: str):
env=env_cleared_lib_path()
returnsubprocess.run(args, capture_output=True, text=True, env=env).stdout.split("\n", 1)[0] orNone
defopen_filename(title: str, filetypes: typing.Iterable[typing.Tuple[str, typing.Iterable[str]]], suggest: str="") \
->typing.Optional[str]:
logging.info(f"Opening file input dialog for {title}.")
ifis_linux:
# prefer native dialog
fromshutilimportwhich
kdialog=which("kdialog")
ifkdialog:
k_filters='|'.join((f'{text} (*{" *".join(ext)})'for (text, ext) infiletypes))
return_run_for_stdout(kdialog, f"--title={title}", "--getopenfilename", suggestor".", k_filters)
zenity=which("zenity")
ifzenity:
z_filters= (f'--file-filter={text} ({", ".join(ext)}) | *{" *".join(ext)}'for (text, ext) infiletypes)
selection= (f"--filename={suggest}",) ifsuggestelse ()
return_run_for_stdout(zenity, f"--title={title}", "--file-selection", *z_filters, *selection)
# fall back to tk
try:
importtkinter
importtkinter.filedialog
exceptExceptionase:
logging.error('Could not load tkinter, which is likely not installed. '
f'This attempt was made because open_filename was used for "{title}".')
raisee
else:
ifis_macosandis_kivy_running():
# on macOS, mixing kivy and tk does not work, so spawn a new process
# FIXME: performance of this is pretty bad, and we should (also) look into alternatives
frommultiprocessingimportProcess, Queue
res: "Queue[typing.Optional[str]]"=Queue()
Process(target=_mp_open_filename, args=(res, title, filetypes, suggest)).start()
returnres.get()
try:
root=tkinter.Tk()
excepttkinter.TclError:
returnNone# GUI not available. None is the same as a user clicking "cancel"
root.withdraw()
try:
returntkinter.filedialog.askopenfilename(
title=title,
filetypes=((t[0], ' '.join(t[1])) fortinfiletypes),
initialfile=suggestorNone,
)
finally:
root.destroy()
defsave_filename(title: str, filetypes: typing.Iterable[typing.Tuple[str, typing.Iterable[str]]], suggest: str="") \
->typing.Optional[str]:
logging.info(f"Opening file save dialog for {title}.")
ifis_linux:
# prefer native dialog
fromshutilimportwhich
kdialog=which("kdialog")
ifkdialog:
k_filters='|'.join((f'{text} (*{" *".join(ext)})'for (text, ext) infiletypes))
return_run_for_stdout(kdialog, f"--title={title}", "--getsavefilename", suggestor".", k_filters)
zenity=which("zenity")
ifzenity:
z_filters= (f'--file-filter={text} ({", ".join(ext)}) | *{" *".join(ext)}'for (text, ext) infiletypes)
selection= (f"--filename={suggest}",) ifsuggestelse ()
return_run_for_stdout(zenity, f"--title={title}", "--file-selection", "--save", *z_filters, *selection)
# fall back to tk
try:
importtkinter
importtkinter.filedialog
exceptExceptionase:
logging.error('Could not load tkinter, which is likely not installed. '
f'This attempt was made because save_filename was used for "{title}".')
raisee
else:
ifis_macosandis_kivy_running():
# on macOS, mixing kivy and tk does not work, so spawn a new process
# FIXME: performance of this is pretty bad, and we should (also) look into alternatives
frommultiprocessingimportProcess, Queue
res: "Queue[typing.Optional[str]]"=Queue()
Process(target=_mp_save_filename, args=(res, title, filetypes, suggest)).start()
returnres.get()
try:
root=tkinter.Tk()
excepttkinter.TclError:
returnNone# GUI not available. None is the same as a user clicking "cancel"
root.withdraw()
try:
returntkinter.filedialog.asksaveasfilename(
title=title,
filetypes=((t[0], ' '.join(t[1])) fortinfiletypes),
initialfile=suggestorNone,
)
finally:
root.destroy()
def_mp_open_directory(res: "multiprocessing.Queue[typing.Optional[str]]", *args: Any) ->None:
ifis_kivy_running():
raiseRuntimeError("kivy should not be running in multiprocess")
res.put(open_directory(*args))
defopen_directory(title: str, suggest: str="") ->typing.Optional[str]:
ifis_linux:
# prefer native dialog
fromshutilimportwhich
kdialog=which("kdialog")
ifkdialog:
return_run_for_stdout(kdialog, f"--title={title}", "--getexistingdirectory",
os.path.abspath(suggest) ifsuggestelse".")
zenity=which("zenity")
ifzenity:
z_filters= ("--directory",)
selection= (f"--filename={os.path.abspath(suggest)}/",) ifsuggestelse ()
return_run_for_stdout(zenity, f"--title={title}", "--file-selection", *z_filters, *selection)
# fall back to tk
try:
importtkinter
importtkinter.filedialog
exceptExceptionase:
logging.error('Could not load tkinter, which is likely not installed. '
f'This attempt was made because open_directory was used for "{title}".')
raisee
else:
ifis_macosandis_kivy_running():
# on macOS, mixing kivy and tk does not work, so spawn a new process
# FIXME: performance of this is pretty bad, and we should (also) look into alternatives
frommultiprocessingimportProcess, Queue
res: "Queue[typing.Optional[str]]"=Queue()
Process(target=_mp_open_directory, args=(res, title, suggest)).start()
returnres.get()
try:
root=tkinter.Tk()
excepttkinter.TclError:
returnNone# GUI not available. None is the same as a user clicking "cancel"
root.withdraw()
returntkinter.filedialog.askdirectory(title=title, mustexist=True, initialdir=suggestorNone)
defmessagebox(title: str, text: str, error: bool=False) ->None:
ifnotgui_enabled:
iferror:
logging.error(f"{title}: {text}")
else:
logging.info(f"{title}: {text}")
return
ifis_kivy_running():
fromkvuiimportMessageBox
MessageBox(title, text, error).open()
return
ifis_linuxand"tkinter"notinsys.modules:
# prefer native dialog
fromshutilimportwhich
kdialog=which("kdialog")
ifkdialog:
return_run_for_stdout(kdialog, f"--title={title}", "--error"iferrorelse"--msgbox", text)
zenity=which("zenity")
ifzenity:
return_run_for_stdout(zenity, f"--title={title}", f"--text={text}", "--error"iferrorelse"--info")
elifis_windows:
importctypes
style=0x10iferrorelse0x0
returnctypes.windll.user32.MessageBoxW(0, text, title, style)
# fall back to tk
try:
importtkinter
fromtkinter.messageboximportshowerror, showinfo
exceptExceptionase:
logging.error('Could not load tkinter, which is likely not installed. '
f'This attempt was made because messagebox was used for "{title}".')
raisee
else:
root=tkinter.Tk()
root.withdraw()
showerror(title, text) iferrorelseshowinfo(title, text)
root.update()
gui_enabled=notsys.stdoutor"--nogui"notinsys.argv
"""Checks if the user wanted no GUI mode and has a terminal to use it with."""
deftitle_sorted(data: typing.Iterable, key=None, ignore: typing.AbstractSet[str] =frozenset(("a", "the"))):
"""Sorts a sequence of text ignoring typical articles like "a" or "the" in the beginning."""
defsorter(element: Union[str, Dict[str, Any]]) ->str:
if (notisinstance(element, str)):
element=element["title"]
parts=element.split(maxsplit=1)
ifparts[0].lower() inignore:
returnparts[1].lower()
else:
returnelement.lower()
returnsorted(data, key=lambdai: sorter(key(i)) ifkeyelsesorter(i))
defread_snes_rom(stream: BinaryIO, strip_header: bool=True) ->bytearray:
"""Reads rom into bytearray and optionally strips off any smc header"""
buffer=bytearray(stream.read())
ifstrip_headerandlen(buffer) %0x400==0x200:
returnbuffer[0x200:]
returnbuffer
_faf_tasks: "Set[asyncio.Task[typing.Any]]"=set()
defasync_start(co: Coroutine[None, None, typing.Any], name: Optional[str] =None) ->None:
"""
Use this to start a task when you don't keep a reference to it or immediately await it,
to prevent early garbage collection. "fire-and-forget"
"""