fastled 1.1.6__py2.py3-none-any.whl → 1.1.7__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastled/app.py +25 -67
- fastled/compile_server.py +7 -20
- fastled/sketch.py +37 -0
- {fastled-1.1.6.dist-info → fastled-1.1.7.dist-info}/METADATA +3 -1
- {fastled-1.1.6.dist-info → fastled-1.1.7.dist-info}/RECORD +9 -9
- {fastled-1.1.6.dist-info → fastled-1.1.7.dist-info}/LICENSE +0 -0
- {fastled-1.1.6.dist-info → fastled-1.1.7.dist-info}/WHEEL +0 -0
- {fastled-1.1.6.dist-info → fastled-1.1.7.dist-info}/entry_points.txt +0 -0
- {fastled-1.1.6.dist-info → fastled-1.1.7.dist-info}/top_level.txt +0 -0
fastled/app.py
CHANGED
@@ -20,7 +20,7 @@ from fastled.compile_server import CompileServer, looks_like_fastled_repo
|
|
20
20
|
from fastled.docker_manager import DockerManager
|
21
21
|
from fastled.filewatcher import FileChangedNotifier
|
22
22
|
from fastled.open_browser import open_browser_thread
|
23
|
-
from fastled.sketch import
|
23
|
+
from fastled.sketch import looks_like_sketch_directory
|
24
24
|
from fastled.web_compile import web_compile
|
25
25
|
|
26
26
|
machine = platform.machine().lower()
|
@@ -49,7 +49,7 @@ def parse_args() -> argparse.Namespace:
|
|
49
49
|
"directory",
|
50
50
|
type=str,
|
51
51
|
nargs="?",
|
52
|
-
default=
|
52
|
+
default=None,
|
53
53
|
help="Directory containing the FastLED sketch to compile",
|
54
54
|
)
|
55
55
|
parser.add_argument(
|
@@ -57,11 +57,6 @@ def parse_args() -> argparse.Namespace:
|
|
57
57
|
action="store_true",
|
58
58
|
help="Just compile, skip opening the browser and watching for changes.",
|
59
59
|
)
|
60
|
-
parser.add_argument(
|
61
|
-
"--no-auto-clean",
|
62
|
-
action="store_true",
|
63
|
-
help="Big performance gains for compilation, but it's flaky at this time",
|
64
|
-
)
|
65
60
|
parser.add_argument(
|
66
61
|
"--web",
|
67
62
|
"-w",
|
@@ -71,17 +66,6 @@ def parse_args() -> argparse.Namespace:
|
|
71
66
|
const=DEFAULT_URL, # Default value when --web is specified without value
|
72
67
|
help="Use web compiler. Optional URL can be provided (default: https://fastled.onrender.com)",
|
73
68
|
)
|
74
|
-
parser.add_argument(
|
75
|
-
"--reuse",
|
76
|
-
action="store_true",
|
77
|
-
help="Reuse the existing container if it exists. (Not available with --web)",
|
78
|
-
)
|
79
|
-
parser.add_argument(
|
80
|
-
"--exclude",
|
81
|
-
type=str,
|
82
|
-
nargs="+",
|
83
|
-
help="Additional patterns to exclude from file watching (Not available with --web)",
|
84
|
-
)
|
85
69
|
parser.add_argument(
|
86
70
|
"-i",
|
87
71
|
"--interactive",
|
@@ -117,14 +101,18 @@ def parse_args() -> argparse.Namespace:
|
|
117
101
|
)
|
118
102
|
|
119
103
|
args = parser.parse_args()
|
120
|
-
|
121
|
-
|
122
|
-
if args.
|
123
|
-
|
124
|
-
|
125
|
-
if
|
126
|
-
|
127
|
-
|
104
|
+
if args.server and args.web:
|
105
|
+
parser.error("--server and --web are mutually exclusive")
|
106
|
+
if args.directory is None and not args.server:
|
107
|
+
# does current directory look like a sketch?
|
108
|
+
maybe_sketch_dir = Path(os.getcwd())
|
109
|
+
if looks_like_sketch_directory(maybe_sketch_dir):
|
110
|
+
args.directory = str(maybe_sketch_dir)
|
111
|
+
else:
|
112
|
+
print(
|
113
|
+
"\nYou either need to specify a sketch directory or run in --server mode."
|
114
|
+
)
|
115
|
+
sys.exit(1)
|
128
116
|
return args
|
129
117
|
|
130
118
|
|
@@ -195,9 +183,8 @@ def _try_start_server_or_get_url(args: argparse.Namespace) -> str | CompileServe
|
|
195
183
|
return DEFAULT_URL
|
196
184
|
return args.web
|
197
185
|
else:
|
198
|
-
disable_auto_clean = args.no_auto_clean
|
199
186
|
try:
|
200
|
-
compile_server = CompileServer(
|
187
|
+
compile_server = CompileServer()
|
201
188
|
print("Waiting for the local compiler to start...")
|
202
189
|
if not compile_server.wait_for_startup():
|
203
190
|
print("Failed to start local compiler.")
|
@@ -210,42 +197,11 @@ def _try_start_server_or_get_url(args: argparse.Namespace) -> str | CompileServe
|
|
210
197
|
return DEFAULT_URL
|
211
198
|
|
212
199
|
|
213
|
-
def _lots_and_lots_of_files(directory: Path) -> bool:
|
214
|
-
return len(get_sketch_files(directory)) > 100
|
215
|
-
|
216
|
-
|
217
|
-
def _looks_like_sketch_directory(directory: Path) -> bool:
|
218
|
-
if looks_like_fastled_repo(directory):
|
219
|
-
print("Directory looks like the FastLED repo")
|
220
|
-
return False
|
221
|
-
|
222
|
-
if _lots_and_lots_of_files(directory):
|
223
|
-
print("Too many files in the directory, bailing out")
|
224
|
-
return False
|
225
|
-
|
226
|
-
# walk the path and if there are over 30 files, return False
|
227
|
-
# at the root of the directory there should either be an ino file or a src directory
|
228
|
-
# or some cpp files
|
229
|
-
# if there is a platformio.ini file, return True
|
230
|
-
ino_file_at_root = list(directory.glob("*.ino"))
|
231
|
-
if ino_file_at_root:
|
232
|
-
return True
|
233
|
-
cpp_file_at_root = list(directory.glob("*.cpp"))
|
234
|
-
if cpp_file_at_root:
|
235
|
-
return True
|
236
|
-
platformini_file = list(directory.glob("platformio.ini"))
|
237
|
-
if platformini_file:
|
238
|
-
return True
|
239
|
-
return False
|
240
|
-
|
241
|
-
|
242
200
|
def run_client(args: argparse.Namespace) -> int:
|
243
201
|
compile_server: CompileServer | None = None
|
244
202
|
open_web_browser = not args.just_compile
|
245
203
|
profile = args.profile
|
246
|
-
if not args.force_compile and not
|
247
|
-
Path(args.directory)
|
248
|
-
):
|
204
|
+
if not args.force_compile and not looks_like_sketch_directory(Path(args.directory)):
|
249
205
|
print(
|
250
206
|
"Error: Not a valid FastLED sketch directory, if you are sure it is, use --force-compile"
|
251
207
|
)
|
@@ -366,11 +322,9 @@ def run_client(args: argparse.Namespace) -> int:
|
|
366
322
|
|
367
323
|
def run_server(args: argparse.Namespace) -> int:
|
368
324
|
interactive = args.interactive
|
369
|
-
compile_server = CompileServer(
|
370
|
-
|
371
|
-
|
372
|
-
print(f"Server started at {compile_server.url()}")
|
373
|
-
compile_server.start()
|
325
|
+
compile_server = CompileServer(interactive=interactive)
|
326
|
+
if not interactive:
|
327
|
+
print(f"Server started at {compile_server.url()}")
|
374
328
|
compile_server.wait_for_startup()
|
375
329
|
try:
|
376
330
|
while True:
|
@@ -404,9 +358,13 @@ def main() -> int:
|
|
404
358
|
|
405
359
|
if __name__ == "__main__":
|
406
360
|
try:
|
361
|
+
project_root = Path(__file__).resolve().parent.parent.parent
|
362
|
+
print(f"Project root: {project_root}")
|
363
|
+
os.chdir(project_root)
|
364
|
+
os.chdir("../fastled")
|
407
365
|
sys.argv.append("examples/wasm")
|
408
|
-
sys.argv.append("
|
409
|
-
sys.argv.append("
|
366
|
+
sys.argv.append("--server")
|
367
|
+
sys.argv.append("--interactive")
|
410
368
|
sys.exit(main())
|
411
369
|
except KeyboardInterrupt:
|
412
370
|
print("\nExiting from main...")
|
fastled/compile_server.py
CHANGED
@@ -8,6 +8,7 @@ from typing import Optional
|
|
8
8
|
import httpx
|
9
9
|
|
10
10
|
from fastled.docker_manager import DockerManager
|
11
|
+
from fastled.sketch import looks_like_fastled_repo
|
11
12
|
|
12
13
|
_DEFAULT_CONTAINER_NAME = "fastled-wasm-compiler"
|
13
14
|
|
@@ -27,19 +28,10 @@ def find_available_port(start_port: int = SERVER_PORT) -> int:
|
|
27
28
|
raise RuntimeError("No available ports found")
|
28
29
|
|
29
30
|
|
30
|
-
def looks_like_fastled_repo(directory: Path) -> bool:
|
31
|
-
libprops = directory / "library.properties"
|
32
|
-
if not libprops.exists():
|
33
|
-
return False
|
34
|
-
txt = libprops.read_text()
|
35
|
-
return "FastLED" in txt
|
36
|
-
|
37
|
-
|
38
31
|
class CompileServer:
|
39
32
|
def __init__(
|
40
33
|
self,
|
41
34
|
container_name=_DEFAULT_CONTAINER_NAME,
|
42
|
-
disable_auto_clean: bool = False,
|
43
35
|
interactive: bool = False,
|
44
36
|
) -> None:
|
45
37
|
|
@@ -52,14 +44,13 @@ class CompileServer:
|
|
52
44
|
fastled_src_dir = cwd / "src"
|
53
45
|
|
54
46
|
self.container_name = container_name
|
55
|
-
self.disable_auto_clean = disable_auto_clean
|
56
47
|
self.docker = DockerManager(container_name=container_name)
|
57
48
|
self.running = False
|
58
49
|
self.thread: Optional[threading.Thread] = None
|
59
50
|
self.running_process: subprocess.Popen | None = None
|
60
51
|
self.fastled_src_dir: Path | None = fastled_src_dir
|
61
52
|
self.interactive = interactive
|
62
|
-
self._port = self.
|
53
|
+
self._port = self._start()
|
63
54
|
|
64
55
|
def port(self) -> int:
|
65
56
|
return self._port
|
@@ -91,7 +82,7 @@ class CompileServer:
|
|
91
82
|
return False
|
92
83
|
return False
|
93
84
|
|
94
|
-
def
|
85
|
+
def _start(self) -> int:
|
95
86
|
print("Compiling server starting")
|
96
87
|
self.running = True
|
97
88
|
# Ensure Docker is running
|
@@ -141,24 +132,20 @@ class CompileServer:
|
|
141
132
|
server_command = ["/bin/bash"]
|
142
133
|
else:
|
143
134
|
server_command = ["python", "/js/run.py", "server"]
|
144
|
-
if self.disable_auto_clean:
|
145
|
-
server_command.append("--disable-auto-clean")
|
146
135
|
print(f"Started Docker container with command: {server_command}")
|
147
136
|
ports = {port: 80}
|
148
137
|
volumes = None
|
149
138
|
if self.fastled_src_dir:
|
150
139
|
print(
|
151
|
-
f"Mounting FastLED source directory {self.fastled_src_dir} into container /
|
140
|
+
f"Mounting FastLED source directory {self.fastled_src_dir} into container /host/fastled/src"
|
152
141
|
)
|
153
142
|
volumes = {
|
154
143
|
str(self.fastled_src_dir): {"bind": "/host/fastled/src", "mode": "ro"}
|
155
144
|
}
|
156
|
-
# no auto-update because the source directory is mapped in.
|
157
|
-
server_command.append("--no-auto-update") # stop git repo updates.
|
158
145
|
if not self.interactive:
|
159
|
-
|
160
|
-
|
161
|
-
) #
|
146
|
+
# no auto-update because the source directory is mapped in.
|
147
|
+
# This should be automatic now.
|
148
|
+
server_command.append("--no-auto-update") # stop git repo updates.
|
162
149
|
self.running_process = self.docker.run_container(
|
163
150
|
server_command, ports=ports, volumes=volumes
|
164
151
|
)
|
fastled/sketch.py
CHANGED
@@ -16,3 +16,40 @@ def get_sketch_files(directory: Path) -> list[Path]:
|
|
16
16
|
continue
|
17
17
|
files.append(Path(root) / filename)
|
18
18
|
return files
|
19
|
+
|
20
|
+
|
21
|
+
def looks_like_fastled_repo(directory: Path) -> bool:
|
22
|
+
libprops = directory / "library.properties"
|
23
|
+
if not libprops.exists():
|
24
|
+
return False
|
25
|
+
txt = libprops.read_text(encoding="utf-8", errors="ignore")
|
26
|
+
return "FastLED" in txt
|
27
|
+
|
28
|
+
|
29
|
+
def _lots_and_lots_of_files(directory: Path) -> bool:
|
30
|
+
return len(get_sketch_files(directory)) > 100
|
31
|
+
|
32
|
+
|
33
|
+
def looks_like_sketch_directory(directory: Path) -> bool:
|
34
|
+
if looks_like_fastled_repo(directory):
|
35
|
+
print("Directory looks like the FastLED repo")
|
36
|
+
return False
|
37
|
+
|
38
|
+
if _lots_and_lots_of_files(directory):
|
39
|
+
print("Too many files in the directory, bailing out")
|
40
|
+
return False
|
41
|
+
|
42
|
+
# walk the path and if there are over 30 files, return False
|
43
|
+
# at the root of the directory there should either be an ino file or a src directory
|
44
|
+
# or some cpp files
|
45
|
+
# if there is a platformio.ini file, return True
|
46
|
+
ino_file_at_root = list(directory.glob("*.ino"))
|
47
|
+
if ino_file_at_root:
|
48
|
+
return True
|
49
|
+
cpp_file_at_root = list(directory.glob("*.cpp"))
|
50
|
+
if cpp_file_at_root:
|
51
|
+
return True
|
52
|
+
platformini_file = list(directory.glob("platformio.ini"))
|
53
|
+
if platformini_file:
|
54
|
+
return True
|
55
|
+
return False
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: fastled
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.7
|
4
4
|
Summary: FastLED Wasm Compiler
|
5
5
|
Home-page: https://github.com/zackees/fastled-wasm
|
6
6
|
Maintainer: Zachary Vorhies
|
@@ -89,8 +89,10 @@ Pre-processing is done to your source files. A fake Arduino.h will be inserted i
|
|
89
89
|
provide shims for most of the common api points.
|
90
90
|
|
91
91
|
|
92
|
+
|
92
93
|
# Revisions
|
93
94
|
|
95
|
+
* 1.1.7 - Sketch cache re-enabled, but selectively invalidated on cpp/h updates. Cleaned up deprecated args. Fixed double thread running for containers that was causing slowdown.
|
94
96
|
* 1.1.6 - Use the fast src volume map allow quick updates to fastled when developing on the source code.
|
95
97
|
* 1.1.5 - Filter out hidden files and directories from being included in the sketch archive sent to the compiler.
|
96
98
|
* 1.1.4 - Fix regression introduced by testing out ipv4/ipv6 connections from a thread pool.
|
@@ -1,19 +1,19 @@
|
|
1
1
|
fastled/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
fastled/app.py,sha256=
|
2
|
+
fastled/app.py,sha256=UT8FD9GtXhSlSl9NGWnqa3Ncx-BP__2ItihingGAlHE,12350
|
3
3
|
fastled/build_mode.py,sha256=joMwsV4K1y_LijT4gEAcjx69RZBoe_KmFmHZdPYbL_4,631
|
4
4
|
fastled/check_cpp_syntax.py,sha256=YxRJm7cFPv4bdhL1v_KOkBz8RL86ihayoJYvclr69ms,1024
|
5
5
|
fastled/cli.py,sha256=CNR_pQR0sNVPNuv8e_nmm-0PI8sU-eUBUgnWgWkzW9c,237
|
6
|
-
fastled/compile_server.py,sha256=
|
6
|
+
fastled/compile_server.py,sha256=8avG0mAjdjU0w1ej4LiKVGLgkHi8dZxT48TLuGecj7A,9451
|
7
7
|
fastled/docker_manager.py,sha256=WcOKa3EpIPAjICPfTL87CUYuAmX9KYT6L_Hcqbj95eE,9028
|
8
8
|
fastled/filewatcher.py,sha256=SHKx9Dnt4EJiT-iPYakdPZBRIL1gsJGN9tY8FJW2myU,5079
|
9
9
|
fastled/open_browser.py,sha256=-VhpGmydwLCcXmrDD2esMEdJPZYcoX2Mt73eb88Nna0,1392
|
10
10
|
fastled/paths.py,sha256=VsPmgu0lNSCFOoEC0BsTYzDygXqy15AHUfN-tTuzDZA,99
|
11
|
-
fastled/sketch.py,sha256=
|
11
|
+
fastled/sketch.py,sha256=KhhPFqlFVlBk8YrzFy7-ioe7zEzecgrVLhyFbLpBp7k,1845
|
12
12
|
fastled/web_compile.py,sha256=vVQ68lldGo3CaQcYGf3lh9yU6K_A3zP1gNJ29pi5J-E,7857
|
13
13
|
fastled/assets/example.txt,sha256=lTBovRjiz0_TgtAtbA1C5hNi2ffbqnNPqkKg6UiKCT8,54
|
14
|
-
fastled-1.1.
|
15
|
-
fastled-1.1.
|
16
|
-
fastled-1.1.
|
17
|
-
fastled-1.1.
|
18
|
-
fastled-1.1.
|
19
|
-
fastled-1.1.
|
14
|
+
fastled-1.1.7.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
15
|
+
fastled-1.1.7.dist-info/METADATA,sha256=Ow53B9iSxPA-Pm91xqPMu7muCptTNqup3N4UR4qTDCg,6192
|
16
|
+
fastled-1.1.7.dist-info/WHEEL,sha256=0VNUDWQJzfRahYI3neAhz2UVbRCtztpN5dPHAGvmGXc,109
|
17
|
+
fastled-1.1.7.dist-info/entry_points.txt,sha256=RCwmzCSOS4-C2i9EziANq7Z2Zb4KFnEMR1FQC0bBwAw,101
|
18
|
+
fastled-1.1.7.dist-info/top_level.txt,sha256=xfG6Z_ol9V5YmBROkZq2QTRwjbS2ouCUxaTJsOwfkOo,14
|
19
|
+
fastled-1.1.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|