summaryrefslogtreecommitdiffstats
path: root/pyload/remote/ThriftBackend.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/remote/ThriftBackend.py')
-rw-r--r--pyload/remote/ThriftBackend.py45
1 files changed, 45 insertions, 0 deletions
diff --git a/pyload/remote/ThriftBackend.py b/pyload/remote/ThriftBackend.py
new file mode 100644
index 000000000..f71e264e2
--- /dev/null
+++ b/pyload/remote/ThriftBackend.py
@@ -0,0 +1,45 @@
+# -*- coding: utf-8 -*-
+# @author: RaNaN, mkaay
+
+from os.path import exists
+
+from pyload.manager.Remote import BackendBase
+
+from pyload.remote.thriftbackend.Processor import Processor
+from pyload.remote.thriftbackend.Protocol import ProtocolFactory
+from pyload.remote.thriftbackend.Socket import ServerSocket
+from pyload.remote.thriftbackend.Transport import TransportFactory
+# from pyload.remote.thriftbackend.Transport import TransportFactoryCompressed
+
+from thrift.server import TServer
+
+
+class ThriftBackend(BackendBase):
+
+ def setup(self, host, port):
+ processor = Processor(self.core.api)
+
+ key = None
+ cert = None
+
+ if self.core.config.get("ssl", "activated"):
+ if exists(self.core.config.get("ssl", "cert")) and exists(self.core.config.get("ssl", "key")):
+ self.core.log.info(_("Using SSL ThriftBackend"))
+ key = self.core.config.get("ssl", "key")
+ cert = self.core.config.get("ssl", "cert")
+
+ transport = ServerSocket(port, host, key, cert)
+
+
+ # tfactory = TransportFactoryCompressed()
+ tfactory = TransportFactory()
+ pfactory = ProtocolFactory()
+
+ self.server = TServer.TThreadedServer(processor, transport, tfactory, pfactory)
+ # self.server = TNonblockingServer.TNonblockingServer(processor, transport, tfactory, pfactory)
+
+ # server = TServer.TThreadPoolServer(processor, transport, tfactory, pfactory)
+
+
+ def serve(self):
+ self.server.serve()