forked from thrasher-corp/gocryptotrader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
database.go
135 lines (124 loc) · 2.42 KB
/
database.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package database
import (
"database/sql"
"fmt"
"time"
)
// SetConfig safely sets the global database instance's config with some
// basic locks and checks
func (i *Instance) SetConfig(cfg *Config) error {
if i == nil {
return ErrNilInstance
}
if cfg == nil {
return ErrNilConfig
}
i.m.Lock()
i.config = cfg
i.m.Unlock()
return nil
}
// SetSQLiteConnection safely sets the global database instance's connection
// to use SQLite
func (i *Instance) SetSQLiteConnection(con *sql.DB) error {
if i == nil {
return ErrNilInstance
}
if con == nil {
return errNilSQL
}
i.m.Lock()
defer i.m.Unlock()
i.SQL = con
i.SQL.SetMaxOpenConns(1)
return nil
}
// SetPostgresConnection safely sets the global database instance's connection
// to use Postgres
func (i *Instance) SetPostgresConnection(con *sql.DB) error {
if i == nil {
return ErrNilInstance
}
if con == nil {
return errNilSQL
}
if err := con.Ping(); err != nil {
return fmt.Errorf("%w %s", errFailedPing, err)
}
i.m.Lock()
defer i.m.Unlock()
i.SQL = con
i.SQL.SetMaxOpenConns(2)
i.SQL.SetMaxIdleConns(1)
i.SQL.SetConnMaxLifetime(time.Hour)
return nil
}
// SetConnected safely sets the global database instance's connected
// status
func (i *Instance) SetConnected(v bool) {
if i == nil {
return
}
i.m.Lock()
i.connected = v
i.m.Unlock()
}
// CloseConnection safely disconnects the global database instance
func (i *Instance) CloseConnection() error {
if i == nil {
return ErrNilInstance
}
if i.SQL == nil {
return errNilSQL
}
i.m.Lock()
defer i.m.Unlock()
return i.SQL.Close()
}
// IsConnected safely checks the SQL connection status
func (i *Instance) IsConnected() bool {
if i == nil {
return false
}
i.m.RLock()
defer i.m.RUnlock()
return i.connected
}
// GetConfig safely returns a copy of the config
func (i *Instance) GetConfig() *Config {
if i == nil {
return nil
}
i.m.RLock()
defer i.m.RUnlock()
cpy := i.config
return cpy
}
// Ping pings the database
func (i *Instance) Ping() error {
if i == nil {
return ErrNilInstance
}
if !i.IsConnected() {
return ErrDatabaseNotConnected
}
i.m.RLock()
defer i.m.RUnlock()
if i.SQL == nil {
return errNilSQL
}
return i.SQL.Ping()
}
// GetSQL returns the sql connection
func (i *Instance) GetSQL() (*sql.DB, error) {
if i == nil {
return nil, ErrNilInstance
}
if i.SQL == nil {
return nil, errNilSQL
}
i.m.Lock()
defer i.m.Unlock()
resp := i.SQL
return resp, nil
}