Created
December 20, 2011 08:24
-
-
Save BlinkyStitt/1500780 to your computer and use it in GitHub Desktop.
very basic cgminer-rpc.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
This works for me, but as always, YMMV | |
There are little things still @todo for the command line | |
but the class should be enough to do everything you need | |
basic localhost usage: ./cgminer-rpc <command> | |
""" | |
import socket | |
import sys | |
try: | |
import json | |
except ImportError: | |
import simplejson as json | |
class CgminerClient: | |
""" | |
With help from runeks and http://docs.python.org/howto/sockets.html | |
""" | |
def command(self, host, port, command): | |
# sockets are one time use. open one for each command | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
try: | |
# connect to the given host and port | |
sock.connect((host, port)) | |
# json encode and send the command | |
self._send(sock, json.dumps({"command": command})) | |
# receive any returned data | |
received = self._receive(sock) | |
finally: | |
# shutdown and close the socket properly | |
sock.shutdown(socket.SHUT_RDWR) | |
sock.close() | |
# the null byte makes json decoding unhappy | |
decoded = json.loads(received.replace('\x00', '')) | |
return decoded | |
def _send(self, sock, msg): | |
totalsent = 0 | |
while totalsent < len(msg): | |
sent = sock.send(msg[totalsent:]) | |
if sent == 0: | |
raise RuntimeError("socket connection broken") | |
totalsent = totalsent + sent | |
def _receive(self, sock, size=65500): | |
msg = '' | |
while True: | |
chunk = sock.recv(size) | |
if chunk == '': | |
# end of message | |
break | |
msg = msg + chunk | |
return msg | |
if __name__ == "__main__": | |
# @todo use argparse | |
# @todo take a hostname and port from command line | |
command = sys.argv[1] | |
# @todo use real logging | |
print command | |
client = CgminerClient() | |
# send command and print the response | |
print client.command('localhost', 4028, command) | |
not sure if you know about optparse lib? makes it very easy and convenient to parse arguments and includes help formatting automatically. you may know about it, but I figured i'd toss you some info anyway .. I've been using your class to pull info from cgminer. it helps very much! great work
I Need the same thing in C# immediate, if any body have than please help me.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cool script, I made cgminer-monitor using your code: https://github.com/shazbits/cgminer-monitor/