generated from eliona-smart-building-assistant/device-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
75 lines (63 loc) · 2.46 KB
/
main.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
// This file is part of the eliona project.
// Copyright © 2022 LEICOM iTEC AG. All Rights Reserved.
// ______ _ _
// | ____| (_)
// | |__ | |_ ___ _ __ __ _
// | __| | | |/ _ \| '_ \ / _` |
// | |____| | | (_) | | | | (_| |
// |______|_|_|\___/|_| |_|\__,_|
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
// BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NON INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package main
import (
"context"
"github.com/eliona-smart-building-assistant/go-eliona/app"
"github.com/eliona-smart-building-assistant/go-eliona/asset"
"github.com/eliona-smart-building-assistant/go-eliona/dashboard"
"github.com/eliona-smart-building-assistant/go-utils/common"
"github.com/eliona-smart-building-assistant/go-utils/db"
"github.com/eliona-smart-building-assistant/go-utils/log"
"github.com/volatiletech/sqlboiler/v4/boil"
"loriot-io/apiservices"
broker "loriot-io/broker"
)
// The main function starts the app by starting all services necessary for this app and waits
// until all services are finished.
func main() {
log.Info("main", "Starting the app.")
// Set default database to use boil.*G functions.
database := db.Database(app.AppName())
defer database.Close()
boil.SetDB(database)
// Set the database logging level.
if log.Lev() >= log.DebugLevel {
boil.DebugMode = true
boil.DebugWriter = log.GetWriter(log.DebugLevel, "database")
}
// Necessary to close used init resources, because db.Pool() is used in this app.
defer db.ClosePool()
// Initialize the app
initialization()
// Starting the service to collect the data for this app.
common.WaitForWithOs(
apiservices.ListenApi,
broker.ListenForAssetChanges,
)
log.Info("main", "Terminate the app.")
}
func initialization() {
ctx := context.Background()
// Necessary to close used init resources
conn := db.NewInitConnectionWithContextAndApplicationName(ctx, app.AppName())
defer conn.Close(ctx)
// Init the app before the first run.
app.Init(conn, app.AppName(),
app.ExecSqlFile("resources/init.sql"),
asset.InitAssetTypeFiles("resources/asset-types/*.json"),
dashboard.InitWidgetTypeFiles("resources/widget-types/*.json"),
)
}