Subversion Repositories SmartDukaan

Rev

Rev 155 | Rev 504 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
155 ashish 1
'''
2
Created on 17-May-2010
3
 
4
@author: ashish
5
'''
6
from shop2020.config.client.ConfigClient import ConfigClient
7
from shop2020.utils.Utils import log_entry
8
from thrift.transport.TSocket import TSocket
9
from thrift.transport.TTransport import TFramedTransport
10
from thrift.protocol.TBinaryProtocol import TBinaryProtocol
11
from shop2020.thriftpy.model.v1.user import UserContextService
12
 
13
class UserClient:
14
 
15
    host = "localhost"
16
    port = "9002"
17
 
18
    def __init__(self):
19
        try:
20
            self.config_client = ConfigClient()
21
            self.host = self.config_client.get_property("user_service_server_host")
404 rajveer 22
            self.port = self.config_client.get_property("user_service_server_port")
155 ashish 23
        except:
24
            log_entry("error getting data from config")
25
 
26
    def __start__(self):
27
        self.transport = TSocket(self.host, self.port)
28
        self.transport = TFramedTransport(self.transport)
29
        self.protocol = TBinaryProtocol(self.transport)    
30
        self.client = UserContextService.Client(self.protocol)
31
        self.transport.open()
32
 
33
    def get_client(self):
34
        return self.client