See More

import six import sys import time import json import struct import logging import threading import base64 import zlib from datetime import datetime from twisted.internet import reactor, ssl from twisted.python import log as twisted_log from twisted.internet.protocol import ReconnectingClientFactory from autobahn.twisted.websocket import WebSocketClientProtocol, \ WebSocketClientFactory, connectWS log = logging.getLogger(__name__) class SmartSocketClientProtocol(WebSocketClientProtocol): def __init__(self, *args, **kwargs): super(SmartSocketClientProtocol,self).__init__(*args,**kwargs) def onConnect(self, response): # noqa """Called when WebSocket server connection was established""" self.factory.ws = self if self.factory.on_connect: self.factory.on_connect(self, response) def onOpen(self): if self.factory.on_open: self.factory.on_open(self) def onMessage(self, payload, is_binary): # noqa """Called when text or binary message is received.""" if self.factory.on_message: self.factory.on_message(self, payload, is_binary) def onClose(self, was_clean, code, reason): # noqa """Called when connection is closed.""" if not was_clean: if self.factory.on_error: self.factory.on_error(self, code, reason) if self.factory.on_close: self.factory.on_close(self, code, reason) class SmartSocketClientFactory(WebSocketClientFactory,ReconnectingClientFactory): protocol = SmartSocketClientProtocol maxDelay = 5 maxRetries = 10 _last_connection_time = None def __init__(self, *args, **kwargs): """Initialize with default callback method values.""" self.debug = False self.ws = None self.on_open = None self.on_error = None self.on_close = None self.on_message = None self.on_connect = None self.on_reconnect = None self.on_noreconnect = None super(SmartSocketClientFactory, self).__init__(*args, **kwargs) def startedConnecting(self, connector): # noqa """On connecting start or reconnection.""" if not self._last_connection_time and self.debug: log.debug("Start WebSocket connection.") self._last_connection_time = time.time() def clientConnectionFailed(self, connector, reason): # noqa """On connection failure (When connect request fails)""" if self.retries > 0: print("Retrying connection. Retry attempt count: {}. Next retry in around: {} seconds".format(self.retries, int(round(self.delay)))) # on reconnect callback if self.on_reconnect: self.on_reconnect(self.retries) # Retry the connection self.retry(connector) self.send_noreconnect() def clientConnectionLost(self, connector, reason): # noqa """On connection lost (When ongoing connection got disconnected).""" if self.retries > 0: # on reconnect callback if self.on_reconnect: self.on_reconnect(self.retries) # Retry the connection self.retry(connector) self.send_noreconnect() def send_noreconnect(self): """Callback `no_reconnect` if max retries are exhausted.""" if self.maxRetries is not None and (self.retries > self.maxRetries): if self.debug: log.debug("Maximum retries ({}) exhausted.".format(self.maxRetries)) if self.on_noreconnect: self.on_noreconnect() class SimpleWebSocket(object): EXCHANGE_MAP = { "nse": 1, "nfo": 2, "cds": 3, "bse": 4, "bfo": 5, "bsecds": 6, "mcx": 7, "mcxsx": 8, "indices": 9 } # Default connection timeout CONNECT_TIMEOUT = 30 # Default Reconnect max delay. RECONNECT_MAX_DELAY = 60 # Default reconnect attempts RECONNECT_MAX_TRIES = 50 # ROOT_URI='wss://omnefeeds.angelbroking.com/NestHtml5Mobile/socket/stream' ROOT_URI='wss://smartapisocket.angelbroking.com/websocket' # Flag to set if its first connect _is_first_connect = True # Minimum delay which should be set between retries. User can't set less than this _minimum_reconnect_max_delay = 5 # Maximum number or retries user can set _maximum_reconnect_max_tries = 300 feed_token=None client_code=None def __init__(self, JWT_TOKEN, CLIENT_CODE,API_KEY,debug=False, root=None,reconnect=True,reconnect_max_tries=RECONNECT_MAX_TRIES, reconnect_max_delay=RECONNECT_MAX_DELAY,connect_timeout=CONNECT_TIMEOUT): self.root = root or self.ROOT_URI+"?jwttoken="+JWT_TOKEN+"&&clientcode="+CLIENT_CODE+"&&apikey="+API_KEY self.jwt_token= JWT_TOKEN self.client_code= CLIENT_CODE self.api_key=API_KEY # Set max reconnect tries if reconnect_max_tries > self._maximum_reconnect_max_tries: log.warning("`reconnect_max_tries` can not be more than {val}. Setting to highest possible value - {val}.".format( val=self._maximum_reconnect_max_tries)) self.reconnect_max_tries = self._maximum_reconnect_max_tries else: self.reconnect_max_tries = reconnect_max_tries # Set max reconnect delay if reconnect_max_delay < self._minimum_reconnect_max_delay: log.warning("`reconnect_max_delay` can not be less than {val}. Setting to lowest possible value - {val}.".format( val=self._minimum_reconnect_max_delay)) self.reconnect_max_delay = self._minimum_reconnect_max_delay else: self.reconnect_max_delay = reconnect_max_delay self.connect_timeout = connect_timeout # Debug enables logs self.debug = debug # Placeholders for callbacks. self.on_ticks = None self.on_open = None self.on_close = None self.on_error = None self.on_connect = None self.on_message = None self.on_reconnect = None self.on_noreconnect = None def _create_connection(self, url, **kwargs): """Create a WebSocket client connection.""" self.factory = SmartSocketClientFactory(url, **kwargs) # Alias for current websocket connection self.ws = self.factory.ws self.factory.debug = self.debug # Register private callbacks self.factory.on_open = self._on_open self.factory.on_error = self._on_error self.factory.on_close = self._on_close self.factory.on_message = self._on_message self.factory.on_connect = self._on_connect self.factory.on_reconnect = self._on_reconnect self.factory.on_noreconnect = self._on_noreconnect self.factory.maxDelay = self.reconnect_max_delay self.factory.maxRetries = self.reconnect_max_tries def connect(self, threaded=False, disable_ssl_verification=False, proxy=None): #print("Connect") self._create_connection(self.ROOT_URI) context_factory = None #print(self.factory.isSecure,disable_ssl_verification) if self.factory.isSecure and not disable_ssl_verification: context_factory = ssl.ClientContextFactory() #print("context_factory",context_factory) connectWS(self.factory, contextFactory=context_factory, timeout=30) # Run in seperate thread of blocking opts = {} # Run when reactor is not running if not reactor.running: if threaded: #print("inside threaded") # Signals are not allowed in non main thread by twisted so suppress it. opts["installSignalHandlers"] = False self.websocket_thread = threading.Thread(target=reactor.run, kwargs=opts) self.websocket_thread.daemon = True self.websocket_thread.start() else: reactor.run(**opts) def is_connected(self): #print("Check if WebSocket connection is established.") if self.ws and self.ws.state == self.ws.STATE_OPEN: return True else: return False def _close(self, code=None, reason=None): #print("Close the WebSocket connection.") if self.ws: self.ws.sendClose(code, reason) def close(self, code=None, reason=None): """Close the WebSocket connection.""" self.stop_retry() self._close(code, reason) def stop(self): """Stop the event loop. Should be used if main thread has to be closed in `on_close` method.""" #print("stop") reactor.stop() def stop_retry(self): """Stop auto retry when it is in progress.""" if self.factory: self.factory.stopTrying() def _on_reconnect(self, attempts_count): if self.on_reconnect: return self.on_reconnect(self, attempts_count) def _on_noreconnect(self): if self.on_noreconnect: return self.on_noreconnect(self) def websocket_connection(self): # if self.client_code == None or self.feed_token == None: # return "client_code or feed_token or task is missing" # request={"task":"cn","channel":"","token":self.feed_token,"user":self.client_code,"acctid":self.client_code} # self.ws.sendMessage( # six.b(json.dumps(request)) # ) # print(request) threading.Thread(target=self.heartBeat,daemon=True).start() def send_request(self,actiontype,feedtype): if actiontype in ("subscribe","unsubscribe "): try: request={"actiontype":actiontype,"feedtype":feedtype,"jwttoken":self.jwt_token,"clientcode":self.client_code,"apikey":self.api_key} self.ws.sendMessage( six.b(json.dumps(request)) ) return True # threading.Thread(target=self.heartBeat,daemon=True).start() except Exception as e: self._close(reason="Error while request sending: {}".format(str(e))) raise else: print("The actiontype entered is invalid, Please enter correct task(subscribe,unsubscribe) ") def _on_connect(self, ws, response): #print("-----_on_connect-------") self.ws = ws if self.on_connect: print(self.on_connect) self.on_connect(self, response) #self.websocket_connection def _on_close(self, ws, code, reason): """Call `on_close` callback when connection is closed.""" log.debug("Connection closed: {} - {}".format(code, str(reason))) if self.on_close: self.on_close(self, code, reason) def _on_error(self, ws, code, reason): """Call `on_error` callback when connection throws an error.""" log.debug("Connection error: {} - {}".format(code, str(reason))) if self.on_error: self.on_error(self, code, reason) def _on_message(self, ws, payload, is_binary): """Call `on_message` callback when text message is received.""" if self.on_message: self.on_message(self, payload, is_binary) # If the message is binary, parse it and send it to the callback. if self.on_ticks and is_binary and len(payload) > 4: self.on_ticks(self, self._parse_binary(payload)) # Parse text messages if not is_binary: self._parse_text_message(payload) def _on_open(self, ws): if not self._is_first_connect: self.connect() self._is_first_connect = False if self.on_open: return self.on_open(self) def heartBeat(self): while True: try: request={ "actiontype":"heartbeat", "feedtype":feedtype, "jwttoken":self.jwt_token, "clientcode":self.client_code, "apikey":self.api_key } self.ws.sendMessage( six.b(json.dumps(request)) ) except: print("HeartBeats Failed") time.sleep(60) def _parse_text_message(self, payload): """Parse text message.""" # Decode unicode data if not six.PY2 and type(payload) == bytes: payload = payload.decode("utf-8") data =base64.b64decode(payload) try: data = bytes((zlib.decompress(data)).decode("utf-8"), 'utf-8') data = json.loads(data.decode('utf8').replace("'", '"')) data = json.loads(json.dumps(data, indent=4, sort_keys=True)) except ValueError: return self.on_ticks(self, data) def _parse_binary(self, bin): """Parse binary data to a (list of) ticks structure.""" packets = self._split_packets(bin) # split data to individual ticks packet data = [] for packet in packets: instrument_token = self._unpack_int(packet, 0, 4) segment = instrument_token & 0xff # Retrive segment constant from instrument_token divisor = 10000000.0 if segment == self.EXCHANGE_MAP["cds"] else 100.0 # All indices are not tradable tradable = False if segment == self.EXCHANGE_MAP["indices"] else True try: last_trade_time = datetime.fromtimestamp(self._unpack_int(packet, 44, 48)) except Exception: last_trade_time = None try: timestamp = datetime.fromtimestamp(self._unpack_int(packet, 60, 64)) except Exception: timestamp = None d["last_trade_time"] = last_trade_time d["oi"] = self._unpack_int(packet, 48, 52) d["oi_day_high"] = self._unpack_int(packet, 52, 56) d["oi_day_low"] = self._unpack_int(packet, 56, 60) d["timestamp"] = timestamp # Market depth entries. depth = { "buy": [], "sell": [] } # Compile the market depth lists. for i, p in enumerate(range(64, len(packet), 12)): depth["sell" if i >= 5 else "buy"].append({ "quantity": self._unpack_int(packet, p, p + 4), "price": self._unpack_int(packet, p + 4, p + 8) / divisor, "orders": self._unpack_int(packet, p + 8, p + 10, byte_format="H") }) d["depth"] = depth data.append(d) return data def _unpack_int(self, bin, start, end, byte_format="I"): """Unpack binary data as unsgined interger.""" return struct.unpack(">" + byte_format, bin[start:end])[0] def _split_packets(self, bin): """Split the data to individual packets of ticks.""" # Ignore heartbeat data. if len(bin) < 2: return [] number_of_packets = self._unpack_int(bin, 0, 2, byte_format="H") packets = [] j = 2 for i in range(number_of_packets): packet_length = self._unpack_int(bin, j, j + 2, byte_format="H") packets.append(bin[j + 2: j + 2 + packet_length]) j = j + 2 + packet_length return packets