const Logs = require('../libs/logs'); const { eventsCombination } = require('./trangleCalc'); const Request = { callbacks: {}, count: 0, } // const WIN_STEP = 15; // const SOL_FREEZ_TIME = 1000 * 30; const SETTING = { innerDefaultAmount: 10000, minProfitAmount: 0, innerRebateRatio: 0, obRebateRatio: 0, hgRebateRatio: 0, runWorkerEnabled: false } const GLOBAL_DATA = { relationLength: 0, loopStatus: -1, }; const getDataFromParent = (type, callback) => { const id = ++Request.count; Request.callbacks[id] = callback; process.send({ method: 'get', id, type }); } const postDataToParent = (type, data) => { process.send({ method: 'post', type, data }); } process.on('message', (message) => { const { callbacks } = Request; const { method, id, type, data } = message; if (method == 'get' && id) { let responseData = null; // if (data == 'getSolution') { // responseData = Solution.get(); // } process.send({ type: 'response', id, data: responseData }); } else if (type == 'response' && id && callbacks[id]) { callbacks[id](data); delete callbacks[id]; } }); /** * 精确浮点数字 * @param {number} number * @param {number} x * @returns {number} */ const fixFloat = (number, x=2) => { return parseFloat(number.toFixed(x)); } const getSetting = () => { return new Promise(resolve => { getDataFromParent('getSetting', (setting) => { resolve(setting); }); }); } const getGamesRelation = () => { const status = +SETTING.runWorkerEnabled; if (GLOBAL_DATA.loopStatus !== status) { GLOBAL_DATA.loopStatus = status; Logs.out('loop status changed to', status); } if (!SETTING.runWorkerEnabled) { return Promise.resolve([]); } return new Promise(resolve => { getDataFromParent('getGamesRelation', (relations) => { resolve(relations); }); }); } // const getSolutionHistory = () => { // return new Promise(resolve => { // getDataFromParent('getSolutionHistory', (solutions) => { // resolve(solutions); // }); // }); // } const updateSolutions = (solutions) => { postDataToParent('updateSolutions', solutions); } const extractOdds = ({ evtime, events, sptime, special }) => { const expireTime = Date.now() - 15000; let odds = {}; if (evtime > expireTime) { odds = { ...odds, ...events }; } if (sptime > expireTime) { odds = { ...odds, ...special }; } return odds; } // const getOptimalOdds = (oddsMap) => { // const oddsInfo = {}; // Object.keys(oddsMap).forEach(platform => { // const odds = oddsMap[platform]; // Object.keys(odds).forEach(ior => { // const oddsValue = odds[ior]; // if (!oddsInfo[ior] || oddsInfo[ior]?.v < oddsValue) { // oddsInfo[ior] = { // p: platform, // v: oddsValue // } // } // }); // }); // return oddsInfo; // } const eventMatch = () => { getGamesRelation() .then(relations => { // Logs.out('eventMatch', relations); // if (!relations?.length) { // return; // } // const nowTime = Date.now(); // relations = relations.filter(relaiton => { // const expire = Object.values(relaiton.rel).find(event => event.timestamp <= nowTime); // if (expire) { // return false; // } // return true; // }); // Logs.out('eventMatch relations', relations); const relationLength = relations?.length; if (!relationLength) { if (GLOBAL_DATA.relationLength) { GLOBAL_DATA.relationLength = 0; Logs.out('relation list is empty'); } return []; } GLOBAL_DATA.relationLength = relationLength; const passableEvents = relations.map(({ id, rel }) => { const eventsMap = {}; const oddsMap = {}; Object.keys(rel).forEach(platform => { const { leagueName, teamHomeName, teamAwayName, timestamp, evtime, events, sptime, special } = rel[platform]; if (!events && !special) { return; } if (platform == 'ps') { eventsMap.info = { leagueName, teamHomeName, teamAwayName, id, timestamp }; } const odds = extractOdds({ evtime, events, sptime, special }); Object.keys(odds).forEach(ior => { if (!oddsMap[ior]) { oddsMap[ior] = {}; } oddsMap[ior][platform] = odds[ior]; }); }); eventsMap.odds = oddsMap; return eventsMap; }) .filter(item => item.info); // Logs.out('eventMatch passableEvents', passableEvents); const solutions = eventsCombination(passableEvents, SETTING); // Logs.out('eventMatch solutions', solutions); if (solutions?.length) { updateSolutions(solutions); } }) .finally(() => { setTimeout(() => { eventMatch(); }, 2000); }); }; const syncSetting = () => { getSetting() .then(setting => { if (setting) { Object.keys(setting).forEach(key => { SETTING[key] = setting[key]; }); } }) .finally(() => { setTimeout(() => { syncSetting(); }, 10000); }); } syncSetting(); eventMatch();