onemillioncheckboxes/swarm/worker.py

138 lines
4.3 KiB
Python
Raw Normal View History

2024-07-09 16:26:19 +03:00
import functools
2024-07-09 18:09:55 +03:00
import json
2024-07-09 16:26:19 +03:00
from multiprocessing.shared_memory import SharedMemory
import asyncio
import random
from typing import NamedTuple, Optional
from aiohttp_socks import ProxyConnector
import socketio
import aiohttp
2024-07-09 17:09:12 +03:00
import time
2024-07-09 16:26:19 +03:00
OFFSET_STATE = 0
OFFSET_AVOID = 125000
OFFSET_CANVAS = 250000
OFFSET_MASK = 375000
class PixelState(NamedTuple):
state: bool
avoid: bool
canvas: bool
mask: bool
class WorkerManager:
def __init__(self, shmem_name: str = "omcb-bot"):
self.shmem_name = shmem_name
self.base = "https://onemillioncheckboxes.com"
self.delay = 0.25
2024-07-09 17:09:12 +03:00
self.queue: asyncio.Queue[int] = asyncio.Queue(64)
self.n_toggles = 0
2024-07-09 16:26:19 +03:00
async def queue_manager(self):
2024-07-09 18:09:55 +03:00
offset = random.randint(0, 999999)
2024-07-09 16:26:19 +03:00
while True:
2024-07-09 18:09:55 +03:00
for oy in [0, 4, 2, 6, 1, 3, 5, 7]:
for y in range(oy, 1000, 8):
for x in range(1000):
index = (x + y * 1000 + offset) % 1000000
byte, bit = divmod(index, 8)
mask = 0x80 >> bit
2024-07-09 17:09:12 +03:00
2024-07-09 18:09:55 +03:00
if self.shmem.buf[OFFSET_AVOID + byte] & mask:
continue
2024-07-09 17:09:12 +03:00
2024-07-09 18:09:55 +03:00
if (self.shmem.buf[OFFSET_MASK + byte] & mask) == 0:
continue
2024-07-09 17:09:12 +03:00
2024-07-09 18:09:55 +03:00
if (self.shmem.buf[OFFSET_CANVAS + byte] & mask) != (
self.shmem.buf[OFFSET_STATE + byte] & mask
):
await self.queue.put(index)
2024-07-09 16:26:19 +03:00
async def writer(self, bot_index: int, proxy: Optional[str] = None):
connector = ProxyConnector.from_url(proxy) if proxy else None
async with aiohttp.ClientSession(connector=connector) as http:
sio = socketio.AsyncClient(http_session=http)
async def writer_itself():
print("Writer running")
while not sio.connected:
await asyncio.sleep(0.1)
print("Connected and running")
while sio.connected:
index = await self.queue.get()
2024-07-09 17:09:12 +03:00
byte, bit = divmod(index, 8)
mask = 0x80 >> bit
if self.shmem.buf[OFFSET_AVOID + byte] & mask:
continue
if (self.shmem.buf[OFFSET_MASK + byte] & mask) == 0:
continue
if (self.shmem.buf[OFFSET_CANVAS + byte] & mask) != (
self.shmem.buf[OFFSET_STATE + byte] & mask
2024-07-09 16:26:19 +03:00
):
byte, bit = divmod(index, 8)
2024-07-09 17:09:12 +03:00
self.n_toggles += 1
2024-07-09 16:26:19 +03:00
self.shmem.buf[OFFSET_STATE + byte] ^= 0x80 >> bit
await sio.emit("toggle_bit", {"index": index})
await asyncio.sleep(self.delay)
print("Writer closed")
sio.on("connect", writer_itself)
await sio.connect(self.base.replace("http", "ws"))
await sio.wait()
2024-07-09 17:09:12 +03:00
async def status_display(self):
last_printout = time.time()
while True:
await asyncio.sleep(1)
diff = time.time() - last_printout
print()
print(f"Queue size: {self.queue.qsize()}/{self.queue.maxsize}")
print(f"Toggles: {self.n_toggles / diff:.2f}/s")
self.n_toggles = 0
last_printout = time.time()
2024-07-09 16:26:19 +03:00
async def __aenter__(self):
self.shmem = SharedMemory(self.shmem_name)
return self
async def __aexit__(self, a, b, c):
self.shmem.close()
2024-07-09 18:09:55 +03:00
async def main(config_path: str = "worker.json", *_):
with open(config_path, "r") as fp:
config = json.load(fp)
n_bots = config.get("n_bots", 1)
async with WorkerManager(config.get("shmem", "omcb-bot")) as mgr:
mgr.delay = config.get("delay", mgr.delay)
workers = []
if proxies := config.get("proxy", []):
workers.extend([mgr.writer(i, proxies[i % len(proxies)]) for i in range(n_bots)])
else:
workers.extend([mgr.writer(i) for i in range(n_bots)])
2024-07-09 16:26:19 +03:00
await asyncio.gather(
2024-07-09 17:09:12 +03:00
mgr.queue_manager(),
mgr.status_display(),
2024-07-09 18:09:55 +03:00
*workers
2024-07-09 16:26:19 +03:00
)
if __name__ == "__main__":
2024-07-09 18:09:55 +03:00
from sys import argv
asyncio.run(main(*argv[1:]))