-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclient.go
53 lines (46 loc) · 1.38 KB
/
client.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
package client
import (
"fmt"
"github.com/citra-org/chrono-db-go-driver/connection"
)
type Client struct {
conn *connection.Connection
}
func Connect(uri string) (*Client, string, error) {
conn, dbName, err := connection.NewConnection(uri)
if err != nil {
return nil, "", err
}
return &Client{conn: conn}, dbName, nil
}
func (c *Client) Close() error {
return c.conn.Close()
}
func (c *Client) PingChrono() error {
if response, err := c.conn.Execute("PING"); err != nil || response != "OK" {
return fmt.Errorf("ping failed: %v", err)
}
return nil
}
func (c *Client) CreateStream(chrono string, stream string) error {
if response, err := c.conn.Execute("CREATE STREAM " + stream); err != nil || response != "OK" {
return fmt.Errorf("create failed: %v", err)
}
return nil
}
func (c *Client) DeleteStream(chrono string, stream string) error {
if response, err := c.conn.Execute("DELETE STREAM " + stream); err != nil || response != "OK" {
return fmt.Errorf("delete failed: %v", err)
}
return nil
}
func (c *Client) WriteEvent(stream string, event string) error {
command := "INSERT INTO " + stream + " VALUES " + event
if response, err := c.conn.Execute(command); err != nil || response != "OK" {
return fmt.Errorf("write failed: %v", err)
}
return nil
}
func (c *Client) Read(chrono string, stream string) (string, error) {
return c.conn.Execute("SELECT * FROM " + stream)
}