-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayout.go
More file actions
95 lines (78 loc) · 1.85 KB
/
payout.go
File metadata and controls
95 lines (78 loc) · 1.85 KB
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
// Copyright 2022 TrueLevel SA
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
//
// SPDX-License-Identifier: MPL-2.0
package nd300
import (
"errors"
"fmt"
"go.bug.st/serial"
)
var (
ErrPayoutFailed = errors.New("payout failed")
ErrPayoutWarning = errors.New("payout warning")
)
func (c *Conn) Payout(notes byte) (count byte, err error) {
if notes == 0 {
return
}
var port serial.Port
port, err = c.Open()
if err != nil {
return
}
defer func() {
err = AppendErr(err, port.Close(), closeErrMsg)
c.port = nil
}()
if c.txBuff[idxCmd] != byte(SingleMachinePayout) || c.txBuff[idxData] != notes {
c.txBuff[idxCmd] = byte(SingleMachinePayout)
c.txBuff[idxData] = notes
c.txBuff[idxCksum] = computeChecksum(c.txBuff)
}
if err = c.write(); err != nil {
return
}
for count < notes {
err = c.read()
if err != nil {
return
}
switch c.rxBuff.Status() {
case PayoutSuccess:
count = c.rxBuff[idxData]
case PayoutFailure:
count, err = c.rxBuff[idxData], ErrPayoutFailed
return
case StatusOk:
if c.rxBuff[idxData] == notes {
return
}
case DispensingBusy, SensorAdjusting:
continue
case ChecksumError, NoteLow:
// Note the error but continue processing as error is recoverable.
err = fmt.Errorf("%w: %s", ErrPayoutWarning, c.rxBuff.Status())
case NoteEmpty:
if count == notes {
err = fmt.Errorf("%w: %s", ErrPayoutWarning, c.rxBuff.Status())
} else {
err = fmt.Errorf("%w: %s", ErrPayoutFailed, c.rxBuff.Status())
}
return
case NoteJam,
OverLength,
NoteNotExit,
SensorError,
DoubleNoteError,
MotorError,
LowPowerError:
err = fmt.Errorf("%w: %s", ErrPayoutFailed, c.rxBuff.Status())
return
}
}
return
}