complete pkg_system basic design and impl

This commit is contained in:
Liu Zhicong
2023-08-16 20:06:09 -07:00
parent 3d8f6fd5c8
commit 6b39379d7c
10 changed files with 554 additions and 76 deletions
+105 -37
View File
@@ -3,13 +3,13 @@ import logging
import asyncio
import aiohttp
import aiofiles
import os
from threading import RLock
from ndn_client import content_id
from .pkg import pkg_info
from ndn_client import content_id,ndn_client
from .pkg import pkg_info,pkg_media_info
from .env import pkg_env
logger = logging.getLogger(__name__)
INSTALL_TASK_STATE_DONE = 0
@@ -23,73 +23,141 @@ class install_task:
def __init__(self,owner:pkg_env) -> None:
self.owner = owner
self.state = INSTALL_TASK_STATE_CHECK_DEPENDENCY
self.pkg_media_info = None
self.working_task = None
self.dependency_tasks = None
self.error_str = None
class pkg_installer:
def __init__(self,owner_env:pkg_env) -> None:
self.all_tasks = {}
self.owner_env = owner_env
def install(self,pkg_name:str,
install_from_dependency = False, can_upgrade = True,options = None)->Tuple[install_task,str]:
media_info = self.owner_env.get_media_info(pkg_name)
is_upgrade = False
if media_info is not None:
is_upgrade = True
if can_upgrade is False:
error_str = f"pkg:{pkg_name} already installed and can't upgrade"
logger.error(error_str)
return None,error_str
pkg_id,version_str,content_id = pkg_info.parse_pkg_name(pkg_name)
install_from_dependency = False, can_upgrade = True,skip_depends = False,options = None)->Tuple[install_task,str]:
the_pkg_info : pkg_info = None
is_upgrade : bool = False
need_backup : bool = False
pkg_id,version_str,cid = pkg_info.parse_pkg_name(pkg_name)
media_info : pkg_media_info = self.owner_env.get_media_info(pkg_name) # must use index-db?
if media_info is not None:
if cid is not None:
if can_upgrade:
is_upgrade = True
else:
error_str = f"{pkg_name},{cid} already installed!"
logger.error(error_str)
return None,error_str
else:
the_pkg_info = self.owner_env.lookup(pkg_id,version_str,None)
if the_pkg_info is None:
error_str = f"{pkg_name} old version exist in local but not found in index db!"
logger.error(error_str)
return None,error_str
else:
is_upgrade = True
need_backup = True
the_pkg_info = self.owner_env.lookup(pkg_id,version_str,content_id)
if the_pkg_info is None:
error_str = f"pkg:{pkg_name} ,content_id:{content_id} not found in index db"
the_pkg_info = self.owner_env.lookup(pkg_id,version_str,cid)
if the_pkg_info is None:
error_str = f"{pkg_name} ,cid:{cid} not found in index db"
logger.error(error_str)
return None,error_str
result_task = self.all_tasks.get(the_pkg_info.cid)
if result_task is not None:
return result_task,None
return result_task,"already installing"
logger.info(f"start download&install {pkg_name},install_from_dependency={install_from_dependency},upgrade={is_upgrade},backup={need_backup},target_pkg_info={the_pkg_info}")
result_task = install_task()
self.all_tasks[the_pkg_info.cid] = result_task
async def install_pkg():
async def download_and_install_pkg()->int:
# check dependency
if await self.check_dependency(the_pkg_info) is False:
error_str = f"pkg:{pkg_name} check dependency failed"
logger.error(error_str)
result_task.error_str = error_str
result_task.state = INSTALL_TAKS_STATE_ERROR
return
if skip_depends is False:
result_task.dependency_tasks = {}
self.get_dependency_tasks(the_pkg_info,result_task.dependency_tasks)
result_task.state = INSTALL_TASK_STATE_INSTALL_DEPENDENCY
for depend_pkg_name in result_task.dependency_tasks:
# check pkg in local?
# install miss pkg
pass
# install dependency
result_task.state = INSTALL_TASK_STATE_INSTALL_DEPENDENCY
for depend_pkg_name in the_pkg_info.depends:
# TODO:这里可能需要用安装队列,直接等待安装完成可能会太慢,也可能会导致循环等待
sub_task,err_str = self.install(depend_pkg_name,True,can_upgrade,options)
result_task.state = INSTALL_TASK_STATE_DOWNLOADING
install_full_path = ""
target_full_path = ""
old_package_full_path = ""
is_download_directy = False
if the_pkg_info.target_media_type == the_pkg_info.source_media_type:
is_download_directy = True
if is_upgrade:
target_full_path = ""
else:
target_full_path = ""
else:
pass
urls = self.owner_env.get_pkg_urls(the_pkg_info)
#download
client = ndn_client() # set watch
download_result = await client.get_file(the_pkg_info.cid,urls,target_full_path,options)
if download_result !=0:
result_task.state = INSTALL_TAKS_STATE_ERROR
return result_task.state
result_task.state = INSTALL_TASK_STATE_INSTALLING
if is_download_directy is False:
install_media_result = False
install_media_result = await self.owner_env.do_pkg_media_trans(the_pkg_info,target_full_path,install_full_path)
if install_media_result is False:
result_task.state = INSTALL_TAKS_STATE_ERROR
result_task.error_str = "install media error,from {target_full_path} to {install_full_path}"
return result_task.state
# last step,save install flag : install by manual or install by dependency
## save cid dir
if is_upgrade:
os.rename(old_package_full_path, old_package_full_path + ".old" )
os.rename(target_full_path,install_full_path)
## update/create version link
## update pkg state
## remove old version
result_task.state = INSTALL_TASK_STATE_DONE
return result_task.state
result_task.working_task = asyncio.create_task(install_pkg())
result_task.working_task = asyncio.create_task(download_and_install_pkg())
return result_task,None
def uninstall(self):
pass
def get_dependency_tasks(self,pkg:pkg_info,dependency_tasks):
pass
async def check_dependency(self,pkg:pkg_info) -> bool:
#TODO:这里可能会有循环依赖导致的递归无法退出的问题,需要记录已经检查过的pkg
async def check_dependency(self,pkg:pkg_info,task_list:{}) -> bool:
for depend_pkg_name in pkg.depends:
depend_task = task_list.get(depend_pkg_name)
if depend_task is not None:
logger.debug(f"{pkg.name}'s depend pkg {depend_pkg_name} already in task list")
continue
depend_task = install_task()
task_list[depend_pkg_name] = depend_task
depend_pkg_info = self.owner_env.lookup(depend_pkg_name)
if depend_pkg_info is None:
logger.warn(f"{pkg.name}'s depend pkg {depend_pkg_name} not found in index db")
return False
if await self.check_dependency(depend_pkg_info) is False:
if await self.check_dependency(depend_pkg_info,task_list) is False:
return False
return True