receiver refactoring
This commit is contained in:
parent
794e63a0b4
commit
b0f08e7265
|
@ -3,18 +3,14 @@ package client
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"log"
|
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
var clients = &sync.Map{}
|
|
||||||
|
|
||||||
type Client struct {
|
type Client struct {
|
||||||
jsonClient *JsonClient
|
jsonClient *JsonClient
|
||||||
extraGenerator ExtraGenerator
|
extraGenerator ExtraGenerator
|
||||||
catcher chan *Response
|
responses chan *Response
|
||||||
listenerStore *listenerStore
|
listenerStore *listenerStore
|
||||||
catchersStore *sync.Map
|
catchersStore *sync.Map
|
||||||
updatesTimeout time.Duration
|
updatesTimeout time.Duration
|
||||||
|
@ -35,12 +31,6 @@ func WithCatchTimeout(timeout time.Duration) Option {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func WithUpdatesTimeout(timeout time.Duration) Option {
|
|
||||||
return func(client *Client) {
|
|
||||||
client.updatesTimeout = timeout
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func WithProxy(req *AddProxyRequest) Option {
|
func WithProxy(req *AddProxyRequest) Option {
|
||||||
return func(client *Client) {
|
return func(client *Client) {
|
||||||
client.AddProxy(req)
|
client.AddProxy(req)
|
||||||
|
@ -54,27 +44,23 @@ func WithLogVerbosity(req *SetLogVerbosityLevelRequest) Option {
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewClient(authorizationStateHandler AuthorizationStateHandler, options ...Option) (*Client, error) {
|
func NewClient(authorizationStateHandler AuthorizationStateHandler, options ...Option) (*Client, error) {
|
||||||
catchersListener := make(chan *Response, 1000)
|
|
||||||
|
|
||||||
client := &Client{
|
client := &Client{
|
||||||
jsonClient: NewJsonClient(),
|
jsonClient: NewJsonClient(),
|
||||||
catcher: catchersListener,
|
responses: make(chan *Response, 1000),
|
||||||
listenerStore: newListenerStore(),
|
listenerStore: newListenerStore(),
|
||||||
catchersStore: &sync.Map{},
|
catchersStore: &sync.Map{},
|
||||||
}
|
}
|
||||||
|
|
||||||
clients.Store(client.jsonClient.id, client)
|
|
||||||
|
|
||||||
client.extraGenerator = UuidV4Generator()
|
client.extraGenerator = UuidV4Generator()
|
||||||
client.catchTimeout = 60 * time.Second
|
client.catchTimeout = 60 * time.Second
|
||||||
client.updatesTimeout = 60 * time.Second
|
|
||||||
|
|
||||||
for _, option := range options {
|
for _, option := range options {
|
||||||
option(client)
|
option(client)
|
||||||
}
|
}
|
||||||
|
|
||||||
go receive(client)
|
tdlibInstance.addClient(client)
|
||||||
go client.catch(catchersListener)
|
|
||||||
|
go client.receiver()
|
||||||
|
|
||||||
err := Authorize(client, authorizationStateHandler)
|
err := Authorize(client, authorizationStateHandler)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -84,31 +70,16 @@ func NewClient(authorizationStateHandler AuthorizationStateHandler, options ...O
|
||||||
return client, nil
|
return client, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
var alreadyRunning uint32
|
func (client *Client) receiver() {
|
||||||
|
for response := range client.responses {
|
||||||
func receive(client *Client) {
|
if response.Extra != "" {
|
||||||
if atomic.LoadUint32(&alreadyRunning) != 0 {
|
value, ok := client.catchersStore.Load(response.Extra)
|
||||||
return
|
if ok {
|
||||||
|
value.(chan *Response) <- response
|
||||||
}
|
}
|
||||||
atomic.StoreUint32(&alreadyRunning, 1)
|
|
||||||
|
|
||||||
for {
|
|
||||||
resp, err := Receive(client.updatesTimeout)
|
|
||||||
if err != nil {
|
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
|
|
||||||
value, ok := clients.Load(resp.ClientId)
|
typ, err := UnmarshalType(response.Data)
|
||||||
if !ok {
|
|
||||||
log.Printf("Response with wrong clientId: %d", resp.ClientId)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
client := value.(*Client)
|
|
||||||
|
|
||||||
client.catcher <- resp
|
|
||||||
|
|
||||||
typ, err := UnmarshalType(resp.Data)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -127,17 +98,6 @@ func receive(client *Client) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (client *Client) catch(updates chan *Response) {
|
|
||||||
for update := range updates {
|
|
||||||
if update.Extra != "" {
|
|
||||||
value, ok := client.catchersStore.Load(update.Extra)
|
|
||||||
if ok {
|
|
||||||
value.(chan *Response) <- update
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (client *Client) Send(req Request) (*Response, error) {
|
func (client *Client) Send(req Request) (*Response, error) {
|
||||||
req.Extra = client.extraGenerator()
|
req.Extra = client.extraGenerator()
|
||||||
|
|
||||||
|
|
106
client/tdlib.go
106
client/tdlib.go
|
@ -10,11 +10,93 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var tdlibInstance *tdlib
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
tdlibInstance = &tdlib{
|
||||||
|
timeout: 60 * time.Second,
|
||||||
|
clients: map[int]*Client{},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type tdlib struct {
|
||||||
|
once sync.Once
|
||||||
|
timeout time.Duration
|
||||||
|
mu sync.Mutex
|
||||||
|
clients map[int]*Client
|
||||||
|
}
|
||||||
|
|
||||||
|
func (instance *tdlib) addClient(client *Client) {
|
||||||
|
instance.mu.Lock()
|
||||||
|
defer instance.mu.Unlock()
|
||||||
|
|
||||||
|
instance.clients[client.jsonClient.id] = client
|
||||||
|
|
||||||
|
instance.once.Do(func() {
|
||||||
|
go instance.receiver()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (instance *tdlib) getClient(id int) (*Client, error) {
|
||||||
|
instance.mu.Lock()
|
||||||
|
defer instance.mu.Unlock()
|
||||||
|
|
||||||
|
client, ok := instance.clients[id]
|
||||||
|
if !ok {
|
||||||
|
return nil, fmt.Errorf("client [id: %d] does not exist", id)
|
||||||
|
}
|
||||||
|
|
||||||
|
return client, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (instance *tdlib) receiver() {
|
||||||
|
for {
|
||||||
|
resp, err := instance.receive(instance.timeout)
|
||||||
|
if err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
client, err := instance.getClient(resp.ClientId)
|
||||||
|
if err != nil {
|
||||||
|
log.Print(err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
client.responses <- resp
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Receives incoming updates and request responses from the TDLib client. May be called from any thread, but
|
||||||
|
// shouldn't be called simultaneously from two different threads.
|
||||||
|
// Returned pointer will be deallocated by TDLib during next call to td_json_client_receive or td_json_client_execute
|
||||||
|
// in the same thread, so it can't be used after that.
|
||||||
|
func (instance *tdlib) receive(timeout time.Duration) (*Response, error) {
|
||||||
|
result := C.td_receive(C.double(float64(timeout) / float64(time.Second)))
|
||||||
|
if result == nil {
|
||||||
|
return nil, errors.New("update receiving timeout")
|
||||||
|
}
|
||||||
|
|
||||||
|
data := []byte(C.GoString(result))
|
||||||
|
|
||||||
|
var resp Response
|
||||||
|
|
||||||
|
err := json.Unmarshal(data, &resp)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
resp.Data = data
|
||||||
|
|
||||||
|
return &resp, nil
|
||||||
|
}
|
||||||
|
|
||||||
type JsonClient struct {
|
type JsonClient struct {
|
||||||
id int
|
id int
|
||||||
}
|
}
|
||||||
|
@ -35,30 +117,6 @@ func (jsonClient *JsonClient) Send(req Request) {
|
||||||
C.td_send(C.int(jsonClient.id), query)
|
C.td_send(C.int(jsonClient.id), query)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Receives incoming updates and request responses from the TDLib client. May be called from any thread, but
|
|
||||||
// shouldn't be called simultaneously from two different threads.
|
|
||||||
// Returned pointer will be deallocated by TDLib during next call to td_json_client_receive or td_json_client_execute
|
|
||||||
// in the same thread, so it can't be used after that.
|
|
||||||
func Receive(timeout time.Duration) (*Response, error) {
|
|
||||||
result := C.td_receive(C.double(float64(timeout) / float64(time.Second)))
|
|
||||||
if result == nil {
|
|
||||||
return nil, errors.New("update receiving timeout")
|
|
||||||
}
|
|
||||||
|
|
||||||
data := []byte(C.GoString(result))
|
|
||||||
|
|
||||||
var resp Response
|
|
||||||
|
|
||||||
err := json.Unmarshal(data, &resp)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
resp.Data = data
|
|
||||||
|
|
||||||
return &resp, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Synchronously executes TDLib request. May be called from any thread.
|
// Synchronously executes TDLib request. May be called from any thread.
|
||||||
// Only a few requests can be executed synchronously.
|
// Only a few requests can be executed synchronously.
|
||||||
// Returned pointer will be deallocated by TDLib during next call to td_json_client_receive or td_json_client_execute
|
// Returned pointer will be deallocated by TDLib during next call to td_json_client_receive or td_json_client_execute
|
||||||
|
|
Loading…
Reference in a new issue