client.go 3.6 KB
Newer Older
D
dongzhihong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

H
Helin Wang 已提交
15 16 17
package main

/*
18 19 20 21 22 23
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

#define PADDLE_MASTER_OK    0
#define PADDLE_MASTER_ERROR -1
H
Helin Wang 已提交
24 25 26 27 28 29

typedef int paddle_master_client;
*/
import "C"

import (
30
	"strings"
H
Helin Wang 已提交
31
	"sync"
32
	"time"
H
Helin Wang 已提交
33 34 35
	"unsafe"

	"github.com/PaddlePaddle/Paddle/go/master"
36
	"github.com/coreos/etcd/clientv3"
H
Helin Wang 已提交
37
	log "github.com/sirupsen/logrus"
H
Helin Wang 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
)

var mu sync.Mutex
var handleMap = make(map[C.paddle_master_client]*master.Client)
var curHandle C.paddle_master_client

func add(c *master.Client) C.paddle_master_client {
	mu.Lock()
	defer mu.Unlock()
	client := curHandle
	curHandle++
	handleMap[client] = c
	return client
}

func get(client C.paddle_master_client) *master.Client {
	mu.Lock()
	defer mu.Unlock()
	return handleMap[client]
}

func remove(client C.paddle_master_client) *master.Client {
	mu.Lock()
	defer mu.Unlock()
	h := handleMap[client]
	delete(handleMap, client)
	return h
}

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
//export paddle_new_etcd_master_client
func paddle_new_etcd_master_client(etcdEndpoints *C.char, timeout int, bufSize int) C.paddle_master_client {
	p := C.GoString(etcdEndpoints)
	cli, err := clientv3.New(clientv3.Config{
		Endpoints:   strings.Split(p, ","),
		DialTimeout: time.Second * time.Duration(timeout),
	})
	if err != nil {
		panic(err)
	}
	ch := make(chan string, 1)
	a, err := master.GetKey(cli, master.DefaultAddrPath, timeout)
	if err != nil {
		panic(err)
	}
	ch <- a
	go master.WatchKey(cli, master.DefaultAddrPath, ch)
	c := master.NewClient(ch, bufSize)
	return add(c)
H
Helin Wang 已提交
86 87
}

88
//export paddle_new_master_client
89
func paddle_new_master_client(addr *C.char, bufSize int) C.paddle_master_client {
H
Helin Wang 已提交
90
	a := C.GoString(addr)
91 92 93
	ch := make(chan string, 1)
	ch <- a
	c := master.NewClient(ch, bufSize)
H
Helin Wang 已提交
94 95 96
	return add(c)
}

97 98 99
//export paddle_release_master_client
func paddle_release_master_client(client C.paddle_master_client) {
	remove(client)
H
Helin Wang 已提交
100 101 102 103 104 105 106
}

//export paddle_set_dataset
func paddle_set_dataset(client C.paddle_master_client, path **C.char, size C.int) C.int {
	c := get(client)
	var paths []string
	for i := 0; i < int(size); i++ {
107
		ptr := (**C.char)(unsafe.Pointer(uintptr(unsafe.Pointer(path)) + uintptr(i)*unsafe.Sizeof(*path)))
H
Helin Wang 已提交
108 109 110 111 112
		str := C.GoString(*ptr)
		paths = append(paths, str)
	}
	err := c.SetDataset(paths)
	if err != nil {
H
Helin Wang 已提交
113
		log.Errorln(err)
114 115 116 117 118 119
		return C.PADDLE_MASTER_ERROR
	}

	return C.PADDLE_MASTER_OK
}

G
gongweibao 已提交
120 121
// return value:
//     0:ok
G
gongweibao 已提交
122
//    -1:error
123 124 125
//export paddle_next_record
func paddle_next_record(client C.paddle_master_client, record **C.uchar) C.int {
	c := get(client)
G
gongweibao 已提交
126 127 128 129
	r, err := c.NextRecord()
	if err != nil {
		// Error
		// TODO: return the type of error?
130
		*record = (*C.uchar)(nil)
G
gongweibao 已提交
131
		return -1
G
gongweibao 已提交
132 133
	}

134
	if len(r) == 0 {
G
gongweibao 已提交
135
		// Empty record
136
		*record = (*C.uchar)(nil)
137
		return 0
H
Helin Wang 已提交
138 139
	}

140 141 142 143 144 145 146 147 148 149 150 151
	size := C.size_t(len(r))
	*record = (*C.uchar)(C.malloc(size))
	C.memcpy(unsafe.Pointer(*record), unsafe.Pointer(&r[0]), size)
	return C.int(size)
}

//export mem_free
func mem_free(p unsafe.Pointer) {
	// "free" may be a better name for this function, but doing so
	// will cause calling any function of this library from Python
	// ctypes hanging.
	C.free(p)
H
Helin Wang 已提交
152 153 154
}

func main() {}