eb4ff3c0fd
* github: bundling debug folder with scripts; docs: fixes & updates; fbt: added FAP_EXAMPLES variable to enable building example apps. Disabled by default. fbt: added TERM to list of proxied environment variables * fbt: better help output; disabled implicit_deps_unchanged; added color to import validator reports * fbt: moved debug configuration to separate tool * fbt: proper dependency tracker for SDK source file; renamed linker script for external apps * fbt: fixed debug elf path * fbt: packaging sdk archive * scripts: fixed sconsdist.py * fbt: reworked sdk packing; docs: updates * docs: info on cli target; linter fixes * fbt: moved main code to scripts folder * scripts: packing update into .tgz * fbt, scripts: reworked copro_dist to build .tgz * scripts: fixed naming for archived updater package * Scripts: fix ぐるぐる回る Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
47 lines
1.2 KiB
Python
Executable File
47 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import asyncio
|
|
import os
|
|
|
|
from flipper.app import App
|
|
|
|
|
|
class Main(App):
|
|
def init(self):
|
|
self.parser.add_argument("watch_list", nargs="+", help="Directories to watch")
|
|
self.is_building = False
|
|
|
|
def clearConsole(self):
|
|
os.system("cls" if os.name in ("nt", "dos") else "clear")
|
|
|
|
async def rebuild(self, line):
|
|
self.clearConsole()
|
|
self.logger.info(f"Triggered by: {line}")
|
|
proc = await asyncio.create_subprocess_exec("./fbt")
|
|
await proc.wait()
|
|
await asyncio.sleep(1)
|
|
self.is_building = False
|
|
|
|
async def run(self):
|
|
proc = await asyncio.create_subprocess_exec(
|
|
"fswatch", *self.args.watch_list, stdout=asyncio.subprocess.PIPE
|
|
)
|
|
|
|
while True:
|
|
data = await proc.stdout.readline()
|
|
line = data.decode().strip()
|
|
if not self.is_building:
|
|
self.is_building = True
|
|
asyncio.create_task(self.rebuild(line))
|
|
|
|
def call(self):
|
|
try:
|
|
asyncio.run(self.run())
|
|
except KeyboardInterrupt:
|
|
pass
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
Main()()
|