client.py 1.2 KB
Newer Older
1 2 3
import ctypes
import os

4
path = os.path.join(os.path.dirname(__file__), "libpaddle_master.so")
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
lib = ctypes.cdll.LoadLibrary(path)


class client(object):
    """
    client is a client to the master server.
    """

    def __init__(self, addr, buf_size):
        self.c = lib.paddle_new_master_client(addr, buf_size)

    def close(self):
        lib.paddle_release_master_client(self.c)
        self.c = None

    def set_dataset(self, paths):
        holder_type = ctypes.c_char_p * len(paths)
        holder = holder_type()
        print paths
        for idx, path in enumerate(paths):
            c_ptr = ctypes.c_char_p(path)
            holder[idx] = c_ptr
        lib.paddle_set_dataset(self.c, holder, len(paths))

G
gongweibao 已提交
29 30 31
    # return format: (record, errno)
    # errno =  0: ok
    #       < -1: error
32 33 34 35
    def next_record(self):
        p = ctypes.c_char_p()
        ret = ctypes.pointer(p)
        size = lib.paddle_next_record(self.c, ret)
G
gongweibao 已提交
36 37 38 39
        if size < -1:
            # Error
            return None, size

40
        if size == 0:
H
Helin Wang 已提交
41
            # Empty record
G
gongweibao 已提交
42 43
            return "", 0

44
        record = ret.contents.value[:size]
H
Helin Wang 已提交
45
        # Memory created from C should be freed.
46
        lib.mem_free(ret.contents)
G
gongweibao 已提交
47
        return record, 0