-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdoc.go
113 lines (108 loc) · 4.34 KB
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Package qiloop is an implementation of the protocol QiMessaging
// used to interract with the NAO and Pepper robots.
//
// Introduction
//
// QiMessaging is a software bus which exposes services. Services have
// methods (to be called), signals (to be watched) and properties
// (signals with state). A naming service (the service directory) is
// used to discover and register services. For a detailed description
// of the protocol, please visit
// https://github.com/lugu/qiloop/blob/master/doc/about-qimessaging.md
//
// To connect to a service, a Session object is required: it represents
// the connection to the service directory. Several transport
// protocols are supported (currently TCP, TLS and UNIX socket).
//
// With a session, one can request a proxy object representing a remote
// service. The proxy object contains the helper methods needed to make
// the remote calls and to handle the incomming signal notifications.
//
// Services have methods, signals and properties which are described
// in an IDL (Interface Description Language) format. This IDL file is
// process by the `qiloop` command to generate the Go code which allow
// remote access to the service (i.e. the proxy object).
//
// For example, here is an IDL file which describes a service which
// have two methods, one signal and one property:
//
// package demo
//
// interface RoboticService
// fn move(x: int, y: int)
// fn say(sentence: str)
// sig obstacle(x: int, y: int)
// prop battery(level: int)
// end
//
// Use 'qiloop proxy' commmand to generate the go code which gives
// access to the service:
//
// $ go get github.com/lugu/qiloop/cmd/qiloop
// $ qiloop proxy --idl robotic.idl.qi --output proxy_gen.go
//
// The file proxy_gen.go contains a method called Services which gives
// access to the RoboticService service. The example bellow illustrate this.
//
// In order to communicate with an existing service for which the IDL
// file is unknown, the `scan` command can be use to introspect a
// running instance of the service and generate its IDL description.
// The following produce the IDL file of LogManager service:
//
// $ qiloop scan --qi-url "tcp://localhost:9559" --service LogManager --idl log_manager.idl.qi
//
// In order to implement a new service, create an IDL file and run
// the `stub` command to generate the helper method to register the
// service:
//
// $ qiloop stub --idl my_service.idl.qi --output stub_gen.go
//
// The file stub_gen.go defines the interface to implement as well as
// the helper methods to register the service.
//
// When offering a service, a Server is be used to handle incomming
// connection and to dispatch the requests.
//
// The actual implementation of a service is provided by a object
// (Actor interface) which responds to call requests and emits the
// signals.
//
package qiloop
import (
"github.com/lugu/qiloop/bus"
"github.com/lugu/qiloop/bus/directory"
"github.com/lugu/qiloop/bus/session"
)
// NewSession creates a new connection to the service directory
// located at address addr. Use non empty string if credentials are
// required, else provide empty strings. Example of address:
// "tcp://localhost:9559", "tcps://localhost:9443".
func NewSession(addr, user, token string) (bus.Session, error) {
return session.NewAuthSession(addr, user, token)
}
// Authenticator decides if a user/token tuple is valid. It is used to
// decide if an incomming connections is authorized to join the
// services.
type Authenticator interface {
Authenticate(user, token string) bool
}
// Server listens to an interface handles incomming connection. It
// dispatches the message to the services and objects.
type Server interface {
// NewService register a new service to the service directory.
NewService(name string, object bus.Actor) (bus.Service, error)
// Session returns a local session object which can be used to
// access the server without authentication.
Session() bus.Session
// Terminate stops the server.
Terminate() error
// Returns a channel to wait for the server terminaison.
WaitTerminate() chan error
}
// NewServiceDirectory starts a service directory listening at address
// addr. Possible addresses are "tcp://localhost:9559",
// "unix:///tmp/sock", "tcps://localhost:9443". Refer to qiloop/net
// for more details.
func NewServiceDirectory(addr string, auth Authenticator) (Server, error) {
return directory.NewServer(addr, auth)
}