-
Notifications
You must be signed in to change notification settings - Fork 2
/
lab4.c
274 lines (213 loc) · 8.35 KB
/
lab4.c
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#include <lcom/lcf.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "i8042.h"
#include "i8254.h"
#include "KBC.c"
#include "mouse.h"
#include "timer.c"
/* para as três primeiras funções */
extern struct packet mouse_packet;
extern uint8_t byte_index;
extern int timer_counter;
/* para a função mouse_test_gesture() */
typedef enum {
START,
UP,
VERTEX,
DOWN,
END
} SystemState;
SystemState state = START;
uint16_t x_len_total = 0;
int main(int argc, char *argv[]) {
// sets the language of LCF messages (can be either EN-US or PT-PT)
lcf_set_language("EN-US");
// enables to log function invocations that are being "wrapped" by LCF
// [comment this out if you don't want/need/ it]
lcf_trace_calls("/home/lcom/labs/lab4/trace.txt");
// enables to save the output of printf function calls on a file
// [comment this out if you don't want/need it]
lcf_log_output("/home/lcom/labs/lab4/output.txt");
// handles control over to LCF
// [LCF handles command line arguments and invokes the right function]
if (lcf_start(argc, argv))
return 1;
// LCF clean up tasks
// [must be the last statement before return]
lcf_cleanup();
return 0;
}
int (mouse_test_packet)(uint32_t cnt) {
int ipc_status;
message msg;
uint8_t mouse_mask; // Para interpretar as interrupções
// Subscrição das interrupções do rato
if (mouse_subscribe_int(&mouse_mask) != 0) return 1;
// Ativar o report de dados do rato com
// A -> Função implementada de raíz
// B -> Função dada pelos professores
if (mouse_write(ENABLE_DATA_REPORT) != 0) return 1; // A
//if (mouse_enable_data_reporting() != 0) return 1; // B
while (cnt) { // Só termina quando lermos @cnt pacotes
if (driver_receive(ANY, &msg, &ipc_status) != 0){
printf("Error");
continue;
}
if (is_ipc_notify(ipc_status)){
switch(_ENDPOINT_P(msg.m_source)){
case HARDWARE:
if (msg.m_notify.interrupts & mouse_mask){ // Se for uma interrupção do rato
mouse_ih(); // Lemos mais um byte
mouse_sync_bytes(); // Sincronizamos esse byte no pacote respectivo
if (byte_index == 3) { // Quando tivermos três bytes do mesmo pacote
mouse_bytes_to_packet(); // Formamos o pacote
mouse_print_packet(&mouse_packet); // Mostramos o pacote
byte_index = 0;
cnt--;
}
}
break;
}
}
}
// Desativar o report de dados do rato
if (mouse_write(DISABLE_DATA_REPORT) != 0) return 1;
// Desativar as interrupções
if (mouse_unsubscribe_int() != 0) return 1;
return 0;
}
int (mouse_test_remote)(uint16_t period, uint8_t cnt) {
// A LCF já lança o rato em REMOTE MODE / Polling
while (cnt) { // Só termina quando lermos @cnt pacotes
if (mouse_write(MOUSE_READ_DATA) != 0) return 1; // Comando para lermos diretamente mais um byte
mouse_ih(); // Lemos mais um byte
mouse_sync_bytes(); // Sincronizamos esse byte no pacote respectivo
if (byte_index == 3) { // Quando tivermos três bytes do mesmo pacote
mouse_bytes_to_packet(); // Formamos o pacote
mouse_print_packet(&mouse_packet); // Mostramos o pacote
byte_index = 0;
cnt--;
tickdelay(micros_to_ticks(period * 1000)); // Esperamos @period microssegundos até ler o próximo pacote
}
}
// Ativar o Stream Mode
if (mouse_write(ENABLE_STREAM_MODE) != 0) return 1;
// Desativar o report de dados do rato
if (mouse_write(DISABLE_DATA_REPORT) != 0) return 1;
// KBC volta ao estado normal
uint8_t commandByte = minix_get_dflt_kbc_cmd_byte(); // buscar o comando adequado, já dado pela LCF
if (write_KBC_command(KBC_IN_CMD, KBC_WRITE_CMD) != 0) return 1; // avisar o i8042 para receber o próximo comando
if (write_KBC_command(KBC_WRITE_CMD, commandByte) != 0) return 1; // enviar o comando
return 0;
}
int (mouse_test_async)(uint8_t idle_time) {
int ipc_status;
message msg;
uint8_t seconds = 0;
uint8_t mouse_mask = 0, timer_mask = 0; // Para interpretar as interrupções
uint16_t timer_frequency = sys_hz();
// Subscrição das interrupções
if (mouse_subscribe_int(&mouse_mask) != 0) return 1;
if (timer_subscribe_int(&timer_mask) != 0) return 1;
// Ativar o report de dados do rato com
// A -> Função implementada de raíz
// B -> Função dada pelos professores
if (mouse_write(ENABLE_DATA_REPORT) != 0) return 1; // A
//if (mouse_enable_data_reporting() != 0) return 1; // B
while (seconds < idle_time) { // Só termina quando passarmos @idle_time sem ler pacotes
if (driver_receive(ANY, &msg, &ipc_status) != 0){
printf("Error");
continue;
}
if (is_ipc_notify(ipc_status)){
switch(_ENDPOINT_P(msg.m_source)){
case HARDWARE:
if (msg.m_notify.interrupts & timer_mask) { // Se for uma interrupão do timer
timer_int_handler();
if (timer_counter % timer_frequency == 0) seconds++;
}
if (msg.m_notify.interrupts & mouse_mask){ // Se for uma interrupção do rato
mouse_ih(); // Lemos mais um byte
mouse_sync_bytes(); // Sincronizamos esse byte no pacote respectivo
if (byte_index == 3) { // Quando tivermos três bytes do mesmo pacote
mouse_bytes_to_packet(); // Formamos o pacote
mouse_print_packet(&mouse_packet); // Mostramos o pacote
byte_index = 0;
}
seconds = 0;
timer_counter = 0;
}
}
}
}
// Desativar o report de dados do rato
if (mouse_write(DISABLE_DATA_REPORT) != 0) return 1;
// Desativar as interrupções
if (timer_unsubscribe_int() != 0) return 1;
if (mouse_unsubscribe_int() != 0) return 1;
return 0;
}
// Implementação em C da máquina descrita nos apontamentos
void (update_state_machine)(uint8_t tolerance) {
switch (state) {
case START:
// transição I
// se só o left-button estiver pressionado
if (mouse_packet.lb && !mouse_packet.rb && !mouse_packet.mb) {
state = UP;
}
break;
case UP:
//TODO: transições II, III e F
break;
case VERTEX:
//TODO: transições IV e F
break;
case DOWN:
//TODO: transições V, VI e F
break;
case END:
break;
}
// Atualização do valor percorrido em X
// x_len_total = max(0, x_len_total + mouse_packet.delta_x);
}
int (mouse_test_gesture)(uint8_t x_len, uint8_t tolerance) {
int ipc_status;
message msg;
uint8_t mouse_mask;
// Subscrição das interrupções
if (mouse_subscribe_int(&mouse_mask) != 0) return 1;
// Ativar o report de dados do rato com
// A -> Função implementada de raíz
// B -> Função dada pelos professores
if (mouse_write(ENABLE_DATA_REPORT) != 0) return 1; // A
//if (mouse_enable_data_reporting() != 0) return 1; // B
while (state != END) { // enquanto não chegar ao estado final
if (driver_receive(ANY, &msg, &ipc_status) != 0){
printf("Error");
continue;
}
if (is_ipc_notify(ipc_status)){
switch(_ENDPOINT_P(msg.m_source)){
case HARDWARE:
if (msg.m_notify.interrupts & mouse_mask){ // Se for uma interrupção do rato
mouse_ih(); // Lemos mais um byte
mouse_sync_bytes(); // Sincronizamos esse byte no pacote respectivo
if (byte_index == 3) { // Quando tivermos três bytes do mesmo pacote
mouse_bytes_to_packet(); // Formamos o pacote
update_state_machine(tolerance); // Atualizamos a Máquina de Estados
byte_index = 0;
}
}
}
}
}
// Desativar o report de dados do rato
if (mouse_write(DISABLE_DATA_REPORT) != 0) return 1;
// Desativar as interrupções
if (mouse_unsubscribe_int() != 0) return 1;
return 0;
}