-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tracer.go
176 lines (139 loc) · 3.94 KB
/
Tracer.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
// this application tracking and logging the user activity
// periodically poll the keyboard and mouse activity status and detect idle periods and window focus changes
// if the user is active periodically make a blurred screenshot and stores this and the activity data in a local folder
package main
//go:generate protoc --go_out=. --python_out=ir_protocol_py ir_record.proto
import (
// "encoding/binary"
"context"
"fmt"
"log"
"os"
"os/signal"
"path/filepath"
"sync"
"syscall"
"time"
"github.com/asvany/InspectoryRespector/tracker"
"github.com/asvany/InspectoryRespector/xwindow"
"github.com/asvany/InspectoryRespector/xinputhandler"
"github.com/asvany/InspectoryRespector/common"
"github.com/asvany/InspectoryRespector/geo"
"github.com/asvany/InspectoryRespector/tray"
// "google.golang.org/protobuf/encoding/protojson"
// "google.golang.org/protobuf/proto"
"github.com/asvany/ChannelWithConcurrentSenders/cc"
"github.com/asvany/InspectoryRespector/ir_protocol"
)
func getHostname() string {
hostname, err := os.Hostname()
if err != nil {
fmt.Printf("Error retrieving hostname: %v\n", err)
} else {
fmt.Println("Hostname:", hostname)
}
return hostname
}
func locationHandling() chan *ir_protocol.Location {
loc_chan := make(chan *ir_protocol.Location)
ticker := time.NewTicker(100 * time.Second)
go func() {
go geo.GetLocation(loc_chan)
for range ticker.C {
fmt.Println("Function runs every 100 seconds")
go geo.GetLocation(loc_chan)
}
}()
return loc_chan
}
// this is the main file and this is the start function of the application
func main() {
fmt.Println("Hello World: v1.2")
common.InitEnv("")
out_dir := os.Getenv("DUMP_DIR")
HOME := os.Getenv("HOME")
if out_dir == "" {
out_dir = HOME + "/InspecptryRespector_dumps"
}
out_dir, err := filepath.Abs(out_dir)
if err != nil {
log.Println("ERROR: ", err)
}
tmp_dir := os.Getenv("IR_TMP_DIR")
if tmp_dir == "" {
tmp_dir = HOME + "/.cache/InspecptryRespector"
}
tmp_dir, err = filepath.Abs(tmp_dir)
if err != nil {
log.Println("ERROR: ", err)
}
// check the DISPLAY environment variable
loc_chan := locationHandling()
var wg sync.WaitGroup
input_events := cc.NewChannelWithConcurrentSenders[xinputhandler.InputEvent](10)
hostname := getHostname()
inputEventCollector := &tracker.InputEventCollector{
Last_fp: "",
Hostname: hostname,
Location: nil,
Out_dir: out_dir,
Tmp_dir: tmp_dir,
Enabled: true,
}
fmt.Printf("out_dir:%v\n", out_dir)
fmt.Printf("tmp_dir:%v\n", tmp_dir)
inputEventCollector.Window = inputEventCollector.GetNewWindow(&xwindow.WinProps{})
wc_ticker := time.NewTicker(100 * time.Millisecond)
go func() {
for range wc_ticker.C {
go inputEventCollector.ProcessWindowFocusChanges()
}
}()
cache_updater_ticker := time.NewTicker(60 * time.Second)
go func() {
for range cache_updater_ticker.C {
go inputEventCollector.GetFileNameAndOrganizeFiles(false)
}
}()
quitChan := make(chan bool)
go inputEventCollector.ProcessInputEvents(input_events)
go inputEventCollector.ProcessLocation(loc_chan)
xinputhandler.SetupInput(quitChan, &wg, input_events)
wg.Add(1)
tray.InitTray(quitChan, &wg, inputEventCollector)
ctx_ctrl_c, cancel_wait_ctrl_c := context.WithCancel(context.Background())
stopChan := make(chan os.Signal, 1)
signal.Notify(stopChan, os.Interrupt, syscall.SIGTERM)
// signal.Notify(stopChan, os.Interrupt)
go func() {
for {
select {
case <-stopChan:
{
fmt.Println("received stop signal")
close(quitChan)
}
case <-ctx_ctrl_c.Done():
{
log.Printf("Conext Done\n")
return
}
}
}
}()
fmt.Println("WAIT")
wg.Wait()
fmt.Println("WAIT END")
cancel_wait_ctrl_c()
input_events.Wait()
fmt.Println("LAST WRITE")
err = inputEventCollector.WriteToFile()
inputEventCollector.GetFileNameAndOrganizeFiles(true)
if err != nil {
log.Println("ERROR: ", err)
}
//sleep 1sec before exit
fmt.Println("SLEEP")
time.Sleep(time.Second * 1)
fmt.Println("EXIT")
}