219 lines
7.2 KiB
Python
219 lines
7.2 KiB
Python
# ------------------------------------------------------------------------------
|
|
# Copyright 2022 Upstream Data Inc -
|
|
# -
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); -
|
|
# you may not use this file except in compliance with the License. -
|
|
# You may obtain a copy of the License at -
|
|
# -
|
|
# http://www.apache.org/licenses/LICENSE-2.0 -
|
|
# -
|
|
# Unless required by applicable law or agreed to in writing, software -
|
|
# distributed under the License is distributed on an "AS IS" BASIS, -
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -
|
|
# See the License for the specific language governing permissions and -
|
|
# limitations under the License. -
|
|
# ------------------------------------------------------------------------------
|
|
|
|
from typing import Optional
|
|
|
|
from pyasic import MinerConfig
|
|
from pyasic.errors import APIError
|
|
from pyasic.miners.backends.bmminer import BMMiner
|
|
from pyasic.miners.base import (
|
|
DataFunction,
|
|
DataLocations,
|
|
DataOptions,
|
|
RPCAPICommand,
|
|
WebAPICommand,
|
|
)
|
|
from pyasic.web.vnish import VNishWebAPI
|
|
|
|
VNISH_DATA_LOC = DataLocations(
|
|
**{
|
|
str(DataOptions.MAC): DataFunction(
|
|
"_get_mac",
|
|
[WebAPICommand("web_summary", "summary")],
|
|
),
|
|
str(DataOptions.API_VERSION): DataFunction(
|
|
"_get_api_ver",
|
|
[RPCAPICommand("api_version", "version")],
|
|
),
|
|
str(DataOptions.FW_VERSION): DataFunction(
|
|
"_get_fw_ver",
|
|
[WebAPICommand("web_summary", "summary")],
|
|
),
|
|
str(DataOptions.HOSTNAME): DataFunction(
|
|
"_get_hostname",
|
|
[WebAPICommand("web_summary", "summary")],
|
|
),
|
|
str(DataOptions.HASHRATE): DataFunction(
|
|
"_get_hashrate",
|
|
[RPCAPICommand("api_summary", "summary")],
|
|
),
|
|
str(DataOptions.EXPECTED_HASHRATE): DataFunction(
|
|
"_get_expected_hashrate",
|
|
[RPCAPICommand("api_stats", "stats")],
|
|
),
|
|
str(DataOptions.HASHBOARDS): DataFunction(
|
|
"_get_hashboards",
|
|
[RPCAPICommand("api_stats", "stats")],
|
|
),
|
|
str(DataOptions.WATTAGE): DataFunction(
|
|
"_get_wattage",
|
|
[WebAPICommand("web_summary", "summary")],
|
|
),
|
|
str(DataOptions.WATTAGE_LIMIT): DataFunction(
|
|
"_get_wattage_limit",
|
|
[WebAPICommand("web_settings", "settings")],
|
|
),
|
|
str(DataOptions.FANS): DataFunction(
|
|
"_get_fans",
|
|
[RPCAPICommand("api_stats", "stats")],
|
|
),
|
|
}
|
|
)
|
|
|
|
|
|
class VNish(BMMiner):
|
|
"""Handler for VNish miners"""
|
|
|
|
_web_cls = VNishWebAPI
|
|
web: VNishWebAPI
|
|
|
|
firmware = "VNish"
|
|
|
|
data_locations = VNISH_DATA_LOC
|
|
|
|
async def restart_backend(self) -> bool:
|
|
data = await self.web.restart_vnish()
|
|
if data:
|
|
try:
|
|
return data["success"]
|
|
except KeyError:
|
|
pass
|
|
return False
|
|
|
|
async def stop_mining(self) -> bool:
|
|
data = await self.web.stop_mining()
|
|
if data:
|
|
try:
|
|
return data["success"]
|
|
except KeyError:
|
|
pass
|
|
return False
|
|
|
|
async def resume_mining(self) -> bool:
|
|
data = await self.web.resume_mining()
|
|
if data:
|
|
try:
|
|
return data["success"]
|
|
except KeyError:
|
|
pass
|
|
return False
|
|
|
|
async def reboot(self) -> bool:
|
|
data = await self.web.reboot()
|
|
if data:
|
|
try:
|
|
return data["success"]
|
|
except KeyError:
|
|
pass
|
|
return False
|
|
|
|
async def _get_mac(self, web_summary: dict = None) -> str:
|
|
if web_summary is None:
|
|
web_info = await self.web.info()
|
|
|
|
if web_info is not None:
|
|
try:
|
|
mac = web_info["system"]["network_status"]["mac"]
|
|
return mac
|
|
except KeyError:
|
|
pass
|
|
|
|
if web_summary is not None:
|
|
try:
|
|
mac = web_summary["system"]["network_status"]["mac"]
|
|
return mac
|
|
except KeyError:
|
|
pass
|
|
|
|
async def _get_hostname(self, web_summary: dict = None) -> str:
|
|
if web_summary is None:
|
|
web_info = await self.web.info()
|
|
|
|
if web_info is not None:
|
|
try:
|
|
hostname = web_info["system"]["network_status"]["hostname"]
|
|
return hostname
|
|
except KeyError:
|
|
pass
|
|
|
|
if web_summary is not None:
|
|
try:
|
|
hostname = web_summary["system"]["network_status"]["hostname"]
|
|
return hostname
|
|
except KeyError:
|
|
pass
|
|
|
|
async def _get_wattage(self, web_summary: dict = None) -> Optional[int]:
|
|
if web_summary is None:
|
|
web_summary = await self.web.summary()
|
|
|
|
if web_summary is not None:
|
|
try:
|
|
wattage = web_summary["miner"]["power_usage"]
|
|
wattage = round(wattage * 1000)
|
|
return wattage
|
|
except KeyError:
|
|
pass
|
|
|
|
async def _get_hashrate(self, api_summary: dict = None) -> Optional[float]:
|
|
# get hr from API
|
|
if api_summary is None:
|
|
try:
|
|
api_summary = await self.api.summary()
|
|
except APIError:
|
|
pass
|
|
|
|
if api_summary is not None:
|
|
try:
|
|
return round(
|
|
float(float(api_summary["SUMMARY"][0]["GHS 5s"]) / 1000), 2
|
|
)
|
|
except (LookupError, ValueError, TypeError):
|
|
pass
|
|
|
|
async def _get_wattage_limit(self, web_settings: dict = None) -> Optional[int]:
|
|
if web_settings is None:
|
|
web_settings = await self.web.summary()
|
|
|
|
if web_settings is not None:
|
|
try:
|
|
wattage_limit = web_settings["miner"]["overclock"]["preset"]
|
|
if wattage_limit == "disabled":
|
|
return None
|
|
return int(wattage_limit)
|
|
except (KeyError, TypeError):
|
|
pass
|
|
|
|
async def _get_fw_ver(self, web_summary: dict = None) -> Optional[str]:
|
|
if web_summary is None:
|
|
web_summary = await self.web.summary()
|
|
|
|
if web_summary is not None:
|
|
try:
|
|
fw_ver = web_summary["miner"]["miner_type"]
|
|
fw_ver = fw_ver.split("(Vnish ")[1].replace(")", "")
|
|
return fw_ver
|
|
except KeyError:
|
|
pass
|
|
|
|
async def get_config(self) -> MinerConfig:
|
|
try:
|
|
web_settings = await self.web.settings()
|
|
except APIError:
|
|
return self.config
|
|
self.config = MinerConfig.from_vnish(web_settings)
|
|
return self.config
|