-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcreateService.go
135 lines (112 loc) · 4.19 KB
/
createService.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
/**
* LiveDetect
* Copyright (c) 2018 Jolibrain
* Author: Corentin Barreau <[email protected]>
*
* This file is part of livedetect.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in livedetect without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of livedetect, and to permit persons to whom livedetect is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of livedetect.
*
* LIVEDETECT 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 NONINFRINGEMENT. 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 LIVEDETECT OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package main
import (
"log"
"os"
"github.com/jolibrain/godd"
)
func createService(URL string) {
// Create service struct for service creation
// parameters
var service godd.ServiceRequest
if arguments.ServiceConfig.Create == nil {
// Fill the service structure
service.Name = arguments.Service
service.Mllib = arguments.Mllib
service.Parameters.Input.Connector = arguments.Connector
service.Parameters.Input.Width = arguments.Width
service.Parameters.Input.Height = arguments.Height
service.Model.Repository = arguments.ModelRepository
service.Model.Init = arguments.Init
service.Parameters.Mllib.Nclasses = arguments.Nclasses
service.Parameters.Mllib.GPU = arguments.GPU
if len(arguments.MlLibDataType) > 0 {
service.Parameters.Mllib.Datatype = arguments.MlLibDataType
}
if arguments.MlLibMaxBatchSize != -1 {
service.Parameters.Mllib.MaxBatchSize = arguments.MlLibMaxBatchSize
}
if arguments.MlLibMaxWorkspaceSize != -1 {
service.Parameters.Mllib.MaxWorkspaceSize = arguments.MlLibMaxWorkspaceSize
}
if service.Model.Init != "" {
service.Model.CreateRepository = true
}
// Mask support
if arguments.Mask == true {
service.Mllib = "caffe2"
}
// Mask support
if arguments.Mask == true {
if len(*arguments.Extensions) == 0 {
logError("You need to specify at least one extension for mask with the -e argument.", "[ERROR]")
os.Exit(1)
}
arguments.Connector = "image"
arguments.Mllib = "caffe2"
service.Parameters.Input.Mean = *arguments.Mean
service.Model.Extensions = *arguments.Extensions
}
// Delete service if already existing
godd.DeleteService(URL, service.Name)
// Send the service creation request
creationResult, err := godd.CreateService(URL, &service)
if err != nil {
log.Fatal(err)
}
// Error handling
log.Println("creation status=",creationResult.Status.Code)
if creationResult.Status.Code != 201 {
logError("Unable to create service!", "[ERROR]")
logError("Error: "+creationResult.Status.Msg, "[ERROR]")
//os.Exit(1)
} else {
logSuccess("Service created!", "[INFO]")
}
} else {
// Iterate through arguments.ServiceConfig predict services
for i := 0; i < len(arguments.ServiceConfig.Create); i++ {
service = arguments.ServiceConfig.Create[i]
// Delete service if already existing
godd.DeleteService(URL, service.Name)
// Send the service creation request
creationResult, err := godd.CreateService(URL, &service)
if err != nil {
log.Fatal(err)
}
// Error handling
log.Println("creation status=",creationResult.Status.Code)
if creationResult.Status.Code != 201 {
logError("Unable to create service!", "[ERROR]")
logError("Error: "+creationResult.Status.Msg, "[ERROR]")
//os.Exit(1)
} else {
logSuccess("Service created!", "[INFO]")
}
}
}
}