onemillioncheckboxes/swarm/worker.py

119 lines
3.5 KiB
Python
Raw Normal View History

2024-07-09 16:26:19 +03:00
import functools
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 17:09:12 +03:00
index = random.randint(0, 999999)
2024-07-09 16:26:19 +03:00
while True:
2024-07-09 17:09:12 +03:00
index = (index + 1) % 1000000
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
):
await self.queue.put(index)
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()
async def main():
async with WorkerManager() as mgr:
await asyncio.gather(
2024-07-09 17:09:12 +03:00
mgr.queue_manager(),
mgr.status_display(),
*[mgr.writer(i) for i in range(4)]
2024-07-09 16:26:19 +03:00
)
if __name__ == "__main__":
asyncio.run(main())