@@ -81,7 +81,7 @@ type Upload struct {
81
81
82
82
var uploadStatusStr = "ProgrammerStatus"
83
83
84
- func uploadHandler (h * hub , pubKey * rsa.PublicKey , tools * tools.Tools ) func (* gin.Context ) {
84
+ func uploadHandler (hub * hub , pubKey * rsa.PublicKey , tools * tools.Tools ) func (* gin.Context ) {
85
85
return func (c * gin.Context ) {
86
86
data := new (Upload )
87
87
if err := c .BindJSON (data ); err != nil {
@@ -165,7 +165,7 @@ func uploadHandler(h *hub, pubKey *rsa.PublicKey, tools *tools.Tools) func(*gin.
165
165
// Resolve commandline
166
166
commandline , err := upload .PartiallyResolve (data .Board , filePath , tmpdir , data .Commandline , data .Extra , tools )
167
167
if err != nil {
168
- send (h , map [string ]string {uploadStatusStr : "Error" , "Msg" : err .Error ()})
168
+ send (hub , map [string ]string {uploadStatusStr : "Error" , "Msg" : err .Error ()})
169
169
return
170
170
}
171
171
@@ -175,16 +175,16 @@ func uploadHandler(h *hub, pubKey *rsa.PublicKey, tools *tools.Tools) func(*gin.
175
175
if data .Extra .Network {
176
176
err = errors .New ("network upload is not supported anymore, pease use OTA instead" )
177
177
} else {
178
- send (h , map [string ]string {uploadStatusStr : "Starting" , "Cmd" : "Serial" })
178
+ send (hub , map [string ]string {uploadStatusStr : "Starting" , "Cmd" : "Serial" })
179
179
err = upload .Serial (data .Port , commandline , data .Extra , l )
180
180
}
181
181
182
182
// Handle result
183
183
if err != nil {
184
- send (h , map [string ]string {uploadStatusStr : "Error" , "Msg" : err .Error ()})
184
+ send (hub , map [string ]string {uploadStatusStr : "Error" , "Msg" : err .Error ()})
185
185
return
186
186
}
187
- send (h , map [string ]string {uploadStatusStr : "Done" , "Flash" : "Ok" })
187
+ send (hub , map [string ]string {uploadStatusStr : "Done" , "Flash" : "Ok" })
188
188
}()
189
189
190
190
c .String (http .StatusAccepted , "" )
@@ -194,7 +194,7 @@ func uploadHandler(h *hub, pubKey *rsa.PublicKey, tools *tools.Tools) func(*gin.
194
194
// PLogger sends the info from the upload to the websocket
195
195
type PLogger struct {
196
196
Verbose bool
197
- h * hub
197
+ hub * hub
198
198
}
199
199
200
200
// Debug only sends messages if verbose is true (always true for now)
@@ -208,29 +208,29 @@ func (l PLogger) Debug(args ...interface{}) {
208
208
func (l PLogger ) Info (args ... interface {}) {
209
209
output := fmt .Sprint (args ... )
210
210
log .Println (output )
211
- send (l .h , map [string ]string {uploadStatusStr : "Busy" , "Msg" : output })
211
+ send (l .hub , map [string ]string {uploadStatusStr : "Busy" , "Msg" : output })
212
212
}
213
213
214
- func send (h * hub , args map [string ]string ) {
214
+ func send (hub * hub , args map [string ]string ) {
215
215
mapB , _ := json .Marshal (args )
216
- h .broadcastSys <- mapB
216
+ hub .broadcastSys <- mapB
217
217
}
218
218
219
- func wsHandler (h * hub ) * WsServer {
219
+ func wsHandler (hub * hub ) * WsServer {
220
220
server , err := socketio .NewServer (nil )
221
221
if err != nil {
222
222
log .Fatal (err )
223
223
}
224
224
225
225
server .On ("connection" , func (so socketio.Socket ) {
226
226
c := & connection {send : make (chan []byte , 256 * 10 ), ws : so }
227
- h .register <- c
227
+ hub .register <- c
228
228
so .On ("command" , func (message string ) {
229
- h .broadcast <- []byte (message )
229
+ hub .broadcast <- []byte (message )
230
230
})
231
231
232
232
so .On ("disconnection" , func () {
233
- h .unregister <- c
233
+ hub .unregister <- c
234
234
})
235
235
go c .writer ()
236
236
})
0 commit comments