forked from scanoss/scanoss.cc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
135 lines (117 loc) · 3.86 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
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
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (C) 2018-2024 SCANOSS.COM
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"context"
"embed"
"fmt"
"os"
"github.com/go-playground/validator"
"github.com/wailsapp/wails/v2/pkg/options/linux"
"github.com/wailsapp/wails/v2/pkg/options/mac"
"github.com/scanoss/scanoss.cc/backend/entities"
"github.com/scanoss/scanoss.cc/backend/mappers"
"github.com/scanoss/scanoss.cc/backend/repository"
"github.com/scanoss/scanoss.cc/backend/service"
"github.com/scanoss/scanoss.cc/cmd"
"github.com/scanoss/scanoss.cc/internal/utils"
"github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/options"
"github.com/wailsapp/wails/v2/pkg/options/assetserver"
)
//go:embed all:frontend/dist
var assets embed.FS
//go:embed build/assets/appicon.png
var icon []byte
func main() {
if err := run(); err != nil {
fmt.Fprintf(os.Stderr, "%v\n", err)
os.Exit(1)
}
}
func run() error {
validate := validator.New()
validate.RegisterValidation("valid-purl", utils.ValidatePurl)
utils.SetValidator(validate)
err := cmd.Execute()
if err != nil {
return fmt.Errorf("error: %v", err)
}
app := NewApp()
fr := utils.NewDefaultFileReader()
// Repositories
componentRepository := repository.NewJSONComponentRepository(fr)
scanossSettingsRepository := repository.NewScanossSettingsJsonRepository(fr)
scanossSettingsRepository.Init()
resultRepository := repository.NewResultRepositoryJsonImpl(fr)
fileRepository := repository.NewFileRepositoryImpl()
licenseRepository := repository.NewLicenseJsonRepository(fr)
// Mappers
resultMapper := mappers.NewResultMapper(entities.ScanossSettingsJson)
componentMapper := mappers.NewComponentMapper()
// Services
componentService := service.NewComponentServiceImpl(componentRepository, scanossSettingsRepository, resultRepository, componentMapper)
fileService := service.NewFileService(fileRepository, componentRepository)
keyboardService := service.NewKeyboardServiceInMemoryImpl()
resultService := service.NewResultServiceImpl(resultRepository, resultMapper)
scanossSettingsService := service.NewScanossSettingsServiceImpl(scanossSettingsRepository)
licenseService := service.NewLicenseServiceImpl(licenseRepository)
scanService := service.NewScanServicePythonImpl()
//Create application with options
err = wails.Run(&options.App{
Title: "Scanoss Code Compare",
AssetServer: &assetserver.Options{
Assets: assets,
},
WindowStartState: options.Maximised,
OnStartup: func(ctx context.Context) {
app.Init(ctx, scanossSettingsService, keyboardService)
scanService.SetContext(ctx)
resultService.SetContext(ctx)
},
OnBeforeClose: func(ctx context.Context) (prevent bool) {
return app.BeforeClose(ctx)
},
Bind: []interface{}{
app,
componentService,
fileService,
keyboardService,
resultService,
scanossSettingsService,
licenseService,
scanService,
},
EnumBind: []interface{}{
entities.AllShortcutActions,
},
Linux: &linux.Options{
Icon: icon,
ProgramName: "Scanoss Code Compare",
},
Mac: &mac.Options{
About: &mac.AboutInfo{
Title: "Scanoss Code Compare",
Message: "Version: " + entities.AppVersion,
Icon: icon,
},
},
})
if err != nil {
return fmt.Errorf("error: %v", err)
}
return nil
}