Threading TCP Server as proxy between connected user and unix socket. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:13:28Z http://stackoverflow.com/feeds/question/833962 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/833962/threading-tcp-server-as-proxy-between-connected-user-and-unix-socket 0 Threading TCP Server as proxy between connected user and unix socket. Vladimir Prudnikov 2009-05-07T10:46:21Z 2009-07-14T15:00:03Z <p>I'm writing web application where I need to push data from server to the connected clients. This data can be send from any other script from web application. For example one user make some changes on the server and other users should be notified about that. </p> <p>So my idea is to use unix socket (path to socket based on user #ID) to send data for corresponding user (web app scripts will connect to this socket and write data). The second part is ThreadingTCPServer which will accept user connections and push data from unix socket to user over TCP socket connection.</p> <p>Here is the workflow:</p> <ol> <li>Used connect to the TCP Server</li> <li>Django script open unixsocket and write data to it.</li> <li>TCP Server read data from unix socket and send it to open connection with user.</li> </ol> <p>I hope you understand my idea :)</p> <p>So, I have 2 questions:</p> <p>1.What do you think about my idea in general? Is it good or bad solution? Any recommendations are welcome.</p> <p>2.Here is my code.</p> <pre><code>import SocketServer import socket import netstring import sys, os, os.path import string import time class MyRequestHandler(SocketServer.BaseRequestHandler): def handle(self): try: print "Connected:", self.client_address user = self.request.recv(1024).strip().split(":")[1] user = int(user) self.request.send('Welcome #%s' % user) self.usocket_path = '/tmp/u%s.sock' % user if os.path.exists(self.usocket_path): os.remove(self.usocket_path) self.usocket = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM) self.usocket.bind(self.usocket_path) self.usocket.listen(1) while 1: usocket_conn, addr = self.usocket.accept() while 1: data = usocket_conn.recv(1024) if not data: break self.request.send(data) break usocket_conn.close() time.sleep(0.1) except KeyboardInterrupt: self.request.send('close') self.request.close() myServer = SocketServer.ThreadingTCPServer(('', 8081), MyRequestHandler) myServer.serve_forever() </code></pre> <p>and I got an exception</p> <pre><code> File "server1.py", line 23, in handle self.usocket.listen(1) File "&lt;string&gt;", line 1, in listen error: (102, 'Operation not supported on socket') </code></pre> http://stackoverflow.com/questions/833962/threading-tcp-server-as-proxy-between-connected-user-and-unix-socket/834277#834277 0 Answer by S.Lott for Threading TCP Server as proxy between connected user and unix socket. S.Lott 2009-05-07T12:08:26Z 2009-05-07T12:08:26Z <p>This is too complex. Use the <a href="http://docs.python.org/library/socketserver.html#module-SocketServer" rel="nofollow">socketserver</a> module, please. </p> http://stackoverflow.com/questions/833962/threading-tcp-server-as-proxy-between-connected-user-and-unix-socket/834285#834285 0 Answer by Reef for Threading TCP Server as proxy between connected user and unix socket. Reef 2009-05-07T12:10:38Z 2009-05-07T12:10:38Z <p>I think You should not use unix sockets. If Your app will (someday) become popular or mission-critical, You won't be able to just add another server to add scalability or to make it redundant and fail-safe.</p> <p>If, on the other hand, You will put the data into f.e. memcached (and user's "dataset number" as the separate key) You'll be able to put data into memcached from multiple servers and read it from multiple servers. If user will disconnect and connect back from some other server, You'll still be able to get the data for him.</p> <p>You could also use a database (to make it more fail-safe), or a mix of database and memcached if You like, but I have seen an app using unix sockets in the way You are trying to, and the programmer regreted it later. The table could have userid, data and timestamp columns and You could remember the last timestamp for the given user.</p> http://stackoverflow.com/questions/833962/threading-tcp-server-as-proxy-between-connected-user-and-unix-socket/1005054#1005054 0 Answer by Glyph for Threading TCP Server as proxy between connected user and unix socket. Glyph 2009-06-17T03:56:57Z 2009-06-17T03:56:57Z <p>You should use Twisted, or, more specifically, <a href="http://orbited.org/" rel="nofollow">Orbited</a>, to push data to your clients. The sample code you posted has a number of potential problems, and it would be a lot harder to figure out what they all are than for you to just use a pre-built piece of code to do what you need.</p>