mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-10-06 02:09:32 +00:00

* Add API layout for snapshot
* Update api
* Add support for export/import docker images
* Move restore into addon
* Add restore to addon
* Fix lint
* fix lint
* cleanup
* init object
* fix executor
* cleanup
* Change flow of init
* Revert "Change flow of init"
This reverts commit 6b3215e44c
.
* allow restore from none
* forward working
* add size
* add context for snapshot
* add init function to set meta data
* update local addon on load
* add more validate and optimaze code
* Optimaze code for restore data
* add validate layer
* Add more function to snapshot / cleanup others
* finish snapshot function
* Cleanup config / optimaze code
* Finish snapshot on core
* Some improvments first object for api
* finish
* fix lint p1
* fix lint p2
* fix lint p3
* fix async with
* fix lint p4
* fix lint p5
* fix p6
* make staticmethod
* fix schema
* fix parse system data
* fix bugs
* fix get function
* extend snapshot/restore
* add type
* fix lint
* move to gz / xz is to slow
* move to gz / xz is to slow p2
* Fix config folder
* small compresslevel for more speed
* fix lint
* fix load
* fix tar stream
* fix tar stream p2
* fix parse
* fix partial
* fix start hass
* fix rep
* fix set
* fix real
* fix generator
* Cleanup old image
* add log
* fix lint
* fix lint p2
* fix load from tar
46 lines
1.1 KiB
Python
46 lines
1.1 KiB
Python
"""Main file for HassIO."""
|
|
import asyncio
|
|
from concurrent.futures import ThreadPoolExecutor
|
|
import logging
|
|
import sys
|
|
|
|
import hassio.bootstrap as bootstrap
|
|
import hassio.core as core
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
# pylint: disable=invalid-name
|
|
if __name__ == "__main__":
|
|
bootstrap.initialize_logging()
|
|
|
|
if not bootstrap.check_environment():
|
|
exit(1)
|
|
|
|
loop = asyncio.get_event_loop()
|
|
executor = ThreadPoolExecutor(thread_name_prefix="SyncWorker")
|
|
loop.set_default_executor(executor)
|
|
|
|
_LOGGER.info("Initialize Hassio setup")
|
|
config = bootstrap.initialize_system_data()
|
|
hassio = core.HassIO(loop, config)
|
|
|
|
bootstrap.migrate_system_env(config)
|
|
|
|
_LOGGER.info("Run Hassio setup")
|
|
loop.run_until_complete(hassio.setup())
|
|
|
|
_LOGGER.info("Start Hassio")
|
|
loop.call_soon_threadsafe(loop.create_task, hassio.start())
|
|
loop.call_soon_threadsafe(bootstrap.reg_signal, loop, hassio)
|
|
|
|
_LOGGER.info("Run Hassio loop")
|
|
loop.run_forever()
|
|
|
|
_LOGGER.info("Cleanup system")
|
|
executor.shutdown(wait=False)
|
|
loop.close()
|
|
|
|
_LOGGER.info("Close Hassio")
|
|
sys.exit(hassio.exit_code)
|