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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
|
package papo
import (
"bufio"
"bytes"
"database/sql"
"errors"
"flag"
"fmt"
"log/slog"
"net"
"os"
"regexp"
"runtime/debug"
"strings"
"sync"
"time"
g "euandre.org/gobang/src"
_ "github.com/mattn/go-sqlite3"
)
/* Global variables */
var (
Hostname string
Version string
Colour string
)
var EmitActiveConnection = g.MakeGauge("active-connections")
var EmitNicksInChannel = g.MakeGauge("nicks-in-channel")
var EmitReceivedMessage = g.MakeCounter("received-message")
const pingFrequency = time.Duration(30) * time.Second
const pongMaxLatency = time.Duration(5) * time.Second
type Channel struct {
}
type Context struct {
dbConn *sql.DB
tx chan int
}
type Connection struct {
conn net.Conn
// id *UUID
id string
isAuthenticated bool
}
type MessageParams struct {
Middle []string
Trailing string
}
type Message struct {
Prefix string
Command string
Params MessageParams
Raw string
}
var (
CmdUser = Message { Command: "USER" }
)
func SplitOnCRLF(data []byte, _atEOF bool) (int, []byte, error) {
idx := bytes.Index(data, []byte { '\r', '\n' })
if idx == -1 {
return 0, nil, nil
}
return idx + 2, data[0:idx], nil
}
func SplitOnRawMessage(data []byte, atEOF bool) (int, []byte, error) {
advance, token, error := SplitOnCRLF(data, atEOF)
if len(token) == 0 {
return advance, nil, error
}
return advance, token, error
}
func SplitSpaces(r rune) bool {
return r == ' '
}
func ParseMessageParams(params string) MessageParams {
const sep = " :"
var middle string
var trailing string
idx := strings.Index(params, sep)
if idx == -1 {
middle = params
trailing = ""
} else {
middle = params[:idx]
trailing = params[idx + len(sep):]
}
return MessageParams {
Middle: strings.FieldsFunc(middle, SplitSpaces),
Trailing: trailing,
}
}
var MessageRegex = regexp.MustCompilePOSIX(
// <prefix> <command> <params>
//1 2 3 4
`^(:([^ ]+) +)?([a-zA-Z]+|[0-9]{3}) *( .*)$`,
// ^^^^ FIXME: test these spaces
)
func ParseMessage(rawMessage string) (Message, error) {
var msg Message
components := MessageRegex.FindStringSubmatch(rawMessage)
if components == nil {
return msg, nil
}
msg = Message {
Prefix: components[2],
Command: components[3],
Params: ParseMessageParams(components[4]),
Raw: rawMessage,
}
return msg, nil
}
func HandleMessage(msg Message) {
fmt.Printf("msg: %#v\n", msg)
}
func ReplyAnonymous() {
}
func PersistMessage(msg Message) {
}
func ActionsFor(msg Message) []int {
return []int { }
}
func RunAction(action int) {
}
func ProcessMessage(ctx *Context, connection *Connection, rawMessage string) {
msg, err := ParseMessage(rawMessage)
if err != nil {
return
}
if msg.Command == CmdUser.Command {
connection.id = msg.Params.Middle[0]
connection.isAuthenticated = true
}
if !connection.isAuthenticated {
go ReplyAnonymous()
return
}
for _, action := range ActionsFor(msg) {
RunAction(action)
}
}
func ReadLoop(ctx *Context, connection *Connection) {
scanner := bufio.NewScanner(connection.conn)
scanner.Split(SplitOnRawMessage)
for scanner.Scan() {
ProcessMessage(ctx, connection, scanner.Text())
}
}
func WriteLoop(ctx *Context, connection *Connection) {
fmt.Println("WriteLoop")
}
func PingLoop(ctx *Context, connection *Connection) {
fmt.Println("PingLoop")
}
func HandleConnection(ctx *Context, conn net.Conn) {
EmitActiveConnection.Inc()
// FIXME: WaitGroup here?
connection := Connection {
conn: conn,
isAuthenticated: false,
}
go ReadLoop(ctx, &connection)
go WriteLoop(ctx, &connection)
go PingLoop(ctx, &connection)
}
func IRCdLoop(ctx *Context, publicSocketPath string) {
listener, err := net.Listen("unix", publicSocketPath)
g.FatalIf(err)
g.Info("IRCd started", "component-up", "component", "ircd")
for {
conn, err := listener.Accept()
if err != nil {
g.Warning(
"Error accepting a public IRCd connection",
"accept-connection",
"err", err,
)
// conn.Close() // FIXME: is conn nil?
continue
}
go HandleConnection(ctx, conn) // FIXME: where does it get closed
}
}
func CommandListenerLoop(ctx *Context, commandSocketPath string) {
listener, err := net.Listen("unix", commandSocketPath)
g.FatalIf(err)
g.Info("command listener started", "component-up", "component", "command-listener")
for {
conn, err := listener.Accept()
if err != nil {
g.Warning(
"Error accepting a command connection",
"accept-command",
"err", err,
)
continue
}
defer conn.Close()
// TODO: handle commands
}
}
func TransactorLoop(ctx *Context) {
g.Info("transactor started", "component-up", "component", "transactor")
EmitActiveConnection.Inc()
for tx := range ctx.tx {
fmt.Println(tx)
}
}
func SetHostname() {
var err error
Hostname, err = os.Hostname()
g.FatalIf(err)
}
func SetEnvironmentVariables() {
Version = os.Getenv("PAPO_VERSION")
if Version == "" {
Version = "PAPO-VERSION-UNKNOWN"
}
Colour = os.Getenv("PAPO_COLOUR")
if Colour == "" {
Colour = "PAPO-COLOUR-UNKNOWN"
}
}
func InitDB(databasePath string) *sql.DB {
DB, err := sql.Open("sqlite3", databasePath)
g.FatalIf(err)
return DB
}
func Init() {
g.Init()
SetHostname()
SetEnvironmentVariables()
}
func Start(ctx *Context, publicSocketPath string, commandSocketPath string) {
buildInfo, ok := debug.ReadBuildInfo()
if !ok {
g.Fatal(errors.New("error on debug.ReadBuildInfo()"))
}
g.Info("-", "lifecycle-event",
"event", "starting-server",
slog.Group(
"go",
"version", buildInfo.GoVersion,
"settings", buildInfo.Settings,
"deps", buildInfo.Deps,
),
)
var wg sync.WaitGroup
bgRun := func(f func()) {
wg.Add(1)
go func() {
f()
wg.Done()
}()
}
bgRun(func() { IRCdLoop(ctx, publicSocketPath) })
bgRun(func() { CommandListenerLoop(ctx, commandSocketPath) })
bgRun(func() { TransactorLoop(ctx) })
wg.Wait()
}
func BuildContext(databasePath string) *Context {
dbConn := InitDB(databasePath)
tx := make(chan int, 100)
return &Context {
dbConn,
tx,
}
}
var (
databasePath = flag.String(
"f",
"papo.db",
"The path to the database file",
)
publicSocketPath = flag.String(
"s",
"papo.public.socket",
"The path to the socket that handles the public traffic",
)
commandSocketPath = flag.String(
"S",
"papo.command.socket",
"The path to the private IPC commands socket",
)
)
func Main() {
Init()
flag.Parse()
ctx := BuildContext(*databasePath)
Start(ctx, *publicSocketPath, *commandSocketPath)
}
|