-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
209 lines (182 loc) · 4.32 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// main GyroLock app
package main
import (
"fmt"
"log"
"math"
"os"
"os/user"
"path/filepath"
"strconv"
"strings"
"time"
"github.com/coreos/go-systemd/login1"
)
var AXIS = []string{"x_raw", "y_raw", "z_raw", "scale"}
// Sensor is a IIO accelerometer struct
type Sensor struct {
axisValues map[string]float64
prevAxisValues map[string]float64
diffValues map[string]int64
axisPaths map[string]string
scale float64
moving bool
debug bool
}
func main() {
if !isRoot() {
log.Println("It's recommanded to run it as root, if you run it as user will be easy to disable !")
}
debug, _ := strconv.ParseBool(os.Getenv("DEBUG"))
sensitivity, err := strconv.ParseInt(os.Getenv("SENSITIVITY"), 0, 16)
if err != nil || sensitivity < 0 {
sensitivity = 10
}
log.Printf("GyroLock start with sensitivity = %d", sensitivity)
s := NewSensor(debug)
for {
s.Get()
if debug {
log.Printf("current: %v", s.axisValues)
}
if s.CheckShake(sensitivity, debug) {
LockSessions(debug, "1")
if !debug {
time.Sleep(60 * time.Second)
} else {
time.Sleep(5 * time.Second)
}
}
s.savePrevious()
if debug {
log.Printf("previous: %v", s.prevAxisValues)
}
if s.moving {
time.Sleep(200 * time.Millisecond)
} else {
time.Sleep(1000 * time.Millisecond)
}
}
}
func (s *Sensor) savePrevious() {
for _, axis := range AXIS {
s.prevAxisValues[axis] = s.axisValues[axis]
}
}
// CheckShake check if sensor was shake
func (s *Sensor) CheckShake(sensitivity int64, debug bool) bool {
shake := false
triggered := ""
s.diffValues = make(map[string]int64)
for _, axis := range AXIS {
if axis == "scale" {
continue
}
diff := int64(math.Abs(s.prevAxisValues[axis] - s.axisValues[axis]))
s.diffValues[axis] = diff
s.moving = diff > 0
shake = diff > sensitivity
if shake {
triggered = axis
break
}
}
if debug {
log.Printf("diff: %v\n", s.diffValues)
}
if shake {
log.Printf("GyroLock, shake detected on %v axis: %v", triggered, s.diffValues)
}
return shake
}
// NewSensor create a new sensor
func NewSensor(debug bool) *Sensor {
axisValues := make(map[string]float64)
prevAxisValues := make(map[string]float64)
diffValues := make(map[string]int64)
axisPaths := make(map[string]string)
for _, v := range AXIS {
axisPaths[v] = getSensorPath(fmt.Sprintf("in_accel_%s", v))
}
s := Sensor{
debug: debug,
axisValues: axisValues,
prevAxisValues: prevAxisValues,
axisPaths: axisPaths,
diffValues: diffValues,
moving: false,
}
s.Get()
return &s
}
// Get the values of the sensor
func (s *Sensor) Get() {
for _, axis := range AXIS {
if axis == "scale" {
s.ReadSensorScale()
} else {
s.ReadSensor(axis)
}
}
}
// ReadSensorScale read sensor scale value
func (s *Sensor) ReadSensorScale() {
content, err := os.ReadFile(s.axisPaths["scale"])
if err != nil {
log.Fatalf("Can't read sensor scale value from in_accel_scale")
}
scale, err := strconv.ParseFloat(strings.TrimSpace(string(content)), 64)
if err != nil {
scale = 1
}
s.scale = scale
}
// ReadSensor read sensor value as absolute value
func (s *Sensor) ReadSensor(axis string) {
var value int64
for {
content, err := os.ReadFile(s.axisPaths[axis])
if err != nil {
log.Fatalf("Can't read sensor value from in_accel_%s", axis)
}
value, err = strconv.ParseInt(strings.TrimSpace(string(content)), 0, 64)
if err == nil && value != 0 {
break
}
time.Sleep(10 * time.Millisecond)
}
result := float64(math.Abs(float64(value)) * s.scale)
s.axisValues[axis] = result
}
// LockSessions lock the current session
func LockSessions(debug bool, seat string) {
conn, err := login1.New()
if err != nil {
os.Exit(1)
}
if !debug {
if isRoot() {
conn.LockSessions()
log.Println("GyroLock lock sessions !")
} else {
conn.LockSession(seat)
log.Printf("GyroLock lock session %v !", seat)
}
} else {
log.Println("GyroLock would lock sessions !")
}
}
func isRoot() bool {
currentUser, err := user.Current()
if err != nil {
log.Fatalf("Unable to get current user: %s", err)
}
return currentUser.Username == "root"
}
func getSensorPath(sensor string) string {
fp, err := filepath.Glob(fmt.Sprintf("/sys/bus/iio/devices/iio:device*/%s", sensor))
if err != nil || len(fp) == 0 {
log.Fatal("Can't find a sensors")
}
return fp[0]
}