mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-11-30 10:59:43 +08:00
94 lines
3.6 KiB
Python
94 lines
3.6 KiB
Python
# coding:utf-8
|
|
#
|
|
# The MIT License (MIT)
|
|
#
|
|
# Copyright (c) 2010-2017 fasiondog/hikyuu
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
import logging
|
|
import sqlite3
|
|
import mysql.connector
|
|
from pytdx.hq import TdxHq_API
|
|
from hikyuu.data.pytdx_to_h5 import import_trans as h5_import_trans
|
|
from hikyuu.data.pytdx_to_mysql import import_trans as mysql_import_trans
|
|
from hikyuu.util import *
|
|
|
|
|
|
class ProgressBar:
|
|
def __init__(self, src):
|
|
self.src = src
|
|
|
|
def __call__(self, cur, total):
|
|
progress = (cur + 1) * 100 // total
|
|
# hku_info(f"{self.src.market} 分笔数据: {progress}%")
|
|
self.src.queue.put([self.src.task_name, self.src.market, 'TRANS', progress, 0])
|
|
|
|
|
|
class ImportPytdxTransToH5:
|
|
def __init__(self, log_queue, queue, config, market, quotations, ip, port, dest_dir, max_days):
|
|
self.logger = logging.getLogger(self.__class__.__name__)
|
|
self.task_name = 'IMPORT_TRANS'
|
|
self.log_queue = log_queue
|
|
self.queue = queue
|
|
self.config = config
|
|
self.market = market
|
|
self.quotations = quotations
|
|
self.ip = ip
|
|
self.port = port
|
|
self.dest_dir = dest_dir
|
|
self.max_days = int(max_days)
|
|
self.status = "no run"
|
|
|
|
@hku_catch(trace=True)
|
|
def __call__(self):
|
|
self.status = "running"
|
|
capture_multiprocess_all_logger(self.log_queue)
|
|
if self.config.getboolean('hdf5', 'enable', fallback=True):
|
|
sqlite_file = "{}/stock.db".format(self.config['hdf5']['dir'])
|
|
connect = sqlite3.connect(sqlite_file, timeout=1800)
|
|
import_trans = h5_import_trans
|
|
else:
|
|
db_config = {
|
|
'user': self.config['mysql']['usr'],
|
|
'password': self.config['mysql']['pwd'],
|
|
'host': self.config['mysql']['host'],
|
|
'port': self.config['mysql']['port']
|
|
}
|
|
connect = mysql.connector.connect(**db_config)
|
|
import_trans = mysql_import_trans
|
|
|
|
count = 0
|
|
try:
|
|
progress = ProgressBar(self)
|
|
api = TdxHq_API()
|
|
hku_check(api.connect(self.ip, self.port), "failed connect pytdx {}:{}", self.ip, self.port)
|
|
count = import_trans(
|
|
connect, self.market, self.quotations, api, self.dest_dir, max_days=self.max_days, progress=progress
|
|
)
|
|
self.logger.info("导入 {} 分笔记录数: {}".format(self.market, count))
|
|
except Exception as e:
|
|
self.logger.error(e)
|
|
finally:
|
|
connect.commit()
|
|
connect.close()
|
|
|
|
self.queue.put([self.task_name, self.market, 'TRANS', None, count])
|
|
self.status = "finished"
|