-
-
Notifications
You must be signed in to change notification settings - Fork 784
/
Copy pathinstance.go
66 lines (52 loc) · 1.66 KB
/
instance.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
package ocpp
import (
"net/http"
"sync"
"time"
"github.com/evcc-io/evcc/util"
"github.com/lorenzodonini/ocpp-go/ocpp"
ocpp16 "github.com/lorenzodonini/ocpp-go/ocpp1.6"
"github.com/lorenzodonini/ocpp-go/ocpp1.6/core"
"github.com/lorenzodonini/ocpp-go/ocpp1.6/remotetrigger"
"github.com/lorenzodonini/ocpp-go/ocpp1.6/smartcharging"
"github.com/lorenzodonini/ocpp-go/ocppj"
"github.com/lorenzodonini/ocpp-go/ws"
)
var (
once sync.Once
instance *CS
)
func Instance() *CS {
once.Do(func() {
log := util.NewLogger("ocpp")
server := ws.NewServer()
server.SetCheckOriginHandler(func(r *http.Request) bool { return true })
dispatcher := ocppj.NewDefaultServerDispatcher(ocppj.NewFIFOQueueMap(0))
dispatcher.SetTimeout(Timeout)
endpoint := ocppj.NewServer(server, dispatcher, nil, core.Profile, remotetrigger.Profile, smartcharging.Profile)
endpoint.SetInvalidMessageHook(func(client ws.Channel, err *ocpp.Error, rawMessage string, parsedFields []interface{}) *ocpp.Error {
log.ERROR.Printf("%v (%s)", err, rawMessage)
return nil
})
cs := ocpp16.NewCentralSystem(endpoint, server)
instance = &CS{
log: log,
regs: make(map[string]*registration),
CentralSystem: cs,
}
instance.txnId.Store(time.Now().UTC().Unix())
ocppj.SetLogger(instance)
cs.SetCoreHandler(instance)
cs.SetNewChargePointHandler(instance.NewChargePoint)
cs.SetChargePointDisconnectedHandler(instance.ChargePointDisconnected)
go instance.errorHandler(cs.Errors())
go cs.Start(8887, "/{ws}")
// wait for server to start
for range time.Tick(10 * time.Millisecond) {
if dispatcher.IsRunning() {
break
}
}
})
return instance
}