hikyuu2/hikyuu/stockhouse.py

250 lines
9.7 KiB
C++
Raw Normal View History

2020-08-16 18:32:16 +08:00
#!/usr/bin/env python
# -*- coding: utf8 -*-
# cp936
#
#===============================================================================
# History
# 1. 20200816, Added by fasiondog
#===============================================================================
import os
2020-08-17 00:35:01 +08:00
import sys
2020-08-18 00:45:17 +08:00
import shutil
import logging
import importlib
2020-08-16 18:32:16 +08:00
import git
from configparser import ConfigParser
2020-08-17 00:35:01 +08:00
from sqlalchemy import (create_engine, Sequence, Column, Integer, String, and_, UniqueConstraint)
2020-08-16 18:32:16 +08:00
from sqlalchemy.orm import sessionmaker
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
2020-08-17 00:35:01 +08:00
class ConfigModel(Base):
__tablename__ = 'house_config'
id = Column(Integer, Sequence('config_id_seq'), primary_key=True)
key = Column(String, index=True) #
value = Column(String) #
2020-08-16 18:32:16 +08:00
2020-08-17 00:35:01 +08:00
__table_args__ = (UniqueConstraint('key'), )
def __str__(self):
return "ConfigModel(id={}, key={}, value={})".format(self.id, self.key, self.value)
def __repr__(self):
return "<{}>".format(self.__str__())
class HouseModel(Base):
__tablename__ = 'house_repo'
2020-08-16 18:32:16 +08:00
id = Column(Integer, Sequence('remote_id_seq'), primary_key=True)
name = Column(String, index=True) #
2020-08-19 00:50:10 +08:00
house_type = Column(String) # 'remote' () | 'local'
2020-08-17 00:35:01 +08:00
local = Column(String) #
2020-08-16 18:32:16 +08:00
url = Column(String) # git
branch = Column(String) #
2020-08-18 00:45:17 +08:00
status = Column(String) # 'success' | 'failed'
2020-08-17 00:35:01 +08:00
__table_args__ = (UniqueConstraint('name'), )
2020-08-16 18:32:16 +08:00
def __str__(self):
2020-08-19 00:50:10 +08:00
return "HouseModel(id={}, name={}, house_type={}, local={}, url={}, branch={})".format(
self.id, self.name, self.house_type, self.local, self.url, self.branch
)
2020-08-16 18:32:16 +08:00
def __repr__(self):
return "<{}>".format(self.__str__())
2020-08-17 00:35:01 +08:00
class PartModel(Base):
__tablename__ = 'house_part'
id = Column(Integer, Sequence('part_id_seq'), primary_key=True)
house_id = Column(Integer) #
part = Column(String) #
2020-08-19 00:50:10 +08:00
module_name = Column(String, index=True) # (.part.sg.ama)
real_module_name = Column(String) #
2020-08-17 00:35:01 +08:00
name = Column(String) #
2020-08-18 00:45:17 +08:00
author = Column(String) #
brief = Column(String) #
params = Column(String) #
2020-08-17 00:35:01 +08:00
2020-08-19 00:50:10 +08:00
def __str__(self):
return 'PartModel(id={}, house_id={}, part={}, name={}, author={}, module_name={})'.format(
self.id, self.house_id, self.part, self.name, self.author, self.module_name
)
def __repr__(self):
return '<{}>'.format(self.__str__())
2020-08-17 00:35:01 +08:00
2020-08-16 18:32:16 +08:00
class StockHouse(object):
"""策略库管理"""
def __init__(self):
2020-08-18 00:45:17 +08:00
self.logger = logging.getLogger(self.__class__.__name__)
2020-08-16 18:32:16 +08:00
usr_dir = os.path.expanduser('~')
# 创建仓库数据库
engine = create_engine("sqlite:///{}/.hikyuu/stockhouse.db".format(usr_dir))
Base.metadata.create_all(engine)
Session = sessionmaker(bind=engine)
self._session = Session()
2020-08-17 00:35:01 +08:00
# 检查并建立远端仓库的本地缓存目录
self.remote_cache_dir = self._session.query(ConfigModel.value
).filter(ConfigModel.key == 'remote_cache_dir'
).first()
if self.remote_cache_dir is None:
self.remote_cache_dir = "{}/.hikyuu/stockhouse".format(usr_dir)
record = ConfigModel(key='remote_cache_dir', value=self.remote_cache_dir)
self._session.add(record)
self._session.commit()
2020-08-16 18:32:16 +08:00
else:
2020-08-17 00:35:01 +08:00
self.remote_cache_dir = self.remote_cache_dir[0]
if not os.path.lexists(self.remote_cache_dir):
os.makedirs(self.remote_cache_dir)
2020-08-18 00:45:17 +08:00
# 将远程仓库本地缓存地址加入系统路径
sys.path.append(self.remote_cache_dir)
2020-08-19 00:50:10 +08:00
# 将所有本地仓库的上层路径加入系统路径
house_models = self._session.query(HouseModel).filter_by(house_type='local').all()
for model in house_models:
base_dir = os.path.basename(model.local)
sys.path.append(base_dir)
# 检查并下载 hikyuu 默认策略仓库, hikyuu_house 避免导入时模块和 hikyuu 重名
2020-08-17 00:35:01 +08:00
hikyuu_house_path = self._session.query(HouseModel.local
).filter(HouseModel.name == 'hikyuu_house').first()
if hikyuu_house_path is None:
self.add_remote_house(
'hikyuu_house', 'https://gitee.com/fasiondog/stockhouse.git', 'master'
)
def add_remote_house(self, name, url, branch='master'):
"""增加远程策略仓库
:param str name:
:param str url: git
:param str branch: git
"""
record = self._session.query(HouseModel).filter(HouseModel.name == name).first()
2020-08-16 18:32:16 +08:00
assert record is None, ''
2020-08-17 00:35:01 +08:00
record = self._session.query(HouseModel).filter(
and_(HouseModel.url == url, HouseModel.branch == branch)
2020-08-16 18:32:16 +08:00
).first()
assert record is None, ''
2020-08-17 00:35:01 +08:00
# 如果存在同名缓存目录,则强制删除
local_dir = "{}/{}".format(self.remote_cache_dir, name)
if os.path.lexists(local_dir):
2020-08-18 00:45:17 +08:00
shutil.rmtree(local_dir)
2020-08-17 00:35:01 +08:00
print(' "stockhouse/{}"'.format(name))
try:
clone = git.Repo.clone_from(url, local_dir, branch=branch)
except:
raise RuntimeError("请检查网络是否正常或链接地址({})是否正确!".format(url))
# 更新仓库记录
record = HouseModel(name=name, house_type='remote', url=url, branch=branch, local=local_dir)
2020-08-16 18:32:16 +08:00
self._session.add(record)
self._session.commit()
2020-08-18 00:45:17 +08:00
# 导入仓库各部件策略信息
self.import_part_to_db(record)
def import_part_to_db(self, house_model):
part_dict = {
'af': 'part/af',
'cn': 'part/cn',
'ev': 'part/ev',
'mm': 'part/mm',
'pg': 'part/pg',
'se': 'part/se',
'sg': 'part/sg',
'sp': 'part/sp',
'st_tp': 'part/st_tp',
'portfolio': 'portfolio',
'system': 'system',
}
# 检查仓库本地目录是否存在,不存在则给出告警信息并直接返回
local_dir = house_model.local
if not os.path.lexists(local_dir):
self.logger.warning(
'The {} house path ("{}") is not exists! Ignored this house!'.format(
house_model.name, house_model.local
)
)
return
base_local = os.path.basename(local_dir)
2020-08-19 00:50:10 +08:00
# 遍历仓库导入部件信息
2020-08-18 00:45:17 +08:00
for part, part_dir in part_dict.items():
path = "{}/{}".format(house_model.local, part_dir)
try:
with os.scandir(path) as it:
for entry in it:
if not entry.name.startswith('.') and entry.is_dir():
2020-08-19 00:50:10 +08:00
# 计算实际的导入模块名
real_module_name = '{}.part.{}.{}.part'.format(
2020-08-18 00:45:17 +08:00
base_local, part, entry.name
2020-08-19 00:50:10 +08:00
) if part not in (
'portfolio', 'system'
) else '{}.{}.{}.part'.format(base_local, part, entry.name)
# 导入模块
try:
part_module = importlib.import_module(real_module_name)
except ModuleNotFoundError:
self.logger.error(' part.py , "{}"'.format(entry.path))
continue
module_vars = vars(part_module)
module_name = '{}.{}.{}'.format(
house_model.name, part, entry.name
) if part not in (
'portfolio', 'system'
) else '{}.{}.{}'.format(house_model.name, part, entry.name)
2020-08-18 00:45:17 +08:00
part_model = PartModel(
house_id=house_model.id,
part=part,
module_name=module_name,
2020-08-19 00:50:10 +08:00
real_module_name=real_module_name,
name=part_module.name if 'name' in module_vars else 'None',
author=part_module.author if 'author' in module_vars else 'None',
brief=part_module.brief if 'brief' in module_vars else 'None',
2020-08-18 00:45:17 +08:00
params=str(part_module.params)
2020-08-19 00:50:10 +08:00
if 'params' in module_vars else 'None'
2020-08-18 00:45:17 +08:00
)
2020-08-19 00:50:10 +08:00
self._session.add(part_model)
print(part_model)
2020-08-18 00:45:17 +08:00
except FileNotFoundError:
continue
2020-08-19 00:50:10 +08:00
self._session.commit()
def get_part(self, name):
part_list = self._session.query(PartModel.real_module_name).filter_by(module_name=name
).first()
assert not part_list and len(part_list) == 1, 'Not found this part "%s"' % name
part_module = importlib.import_module(part_list[0])
part = part_module.sg.clone()
return part
2020-08-17 00:35:01 +08:00
2020-08-16 18:32:16 +08:00
if __name__ == "__main__":
2020-08-19 00:50:10 +08:00
house = StockHouse()
sg = house.get_part('hikyuu_house.sg.ama')
print(sg)
house.get_part('hikyuu_house.sg.tt')