aboutsummaryrefslogtreecommitdiffstats
path: root/src/policy_manager/zipc/dummy_stm.c
blob: d695486d0b00e25369fbf3a8ba18a57e66b30399 (plain)
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
#include <string.h>
#include "dummy_stm.h"

const char* gStmEventName[] = {
    "activate",
    "deactivate",
    "parking_brake_off",
    "parking_brake_on",
    "accel_pedal_off",
    "accel_pedal_on",
    "car_stop",
    "car_run",
    "timer_expired",
    "lamp_off",
    "lamp_on"
};

const int gStmEventNo[] = {
    STM_EVT_NO_ACTIVATE,
    STM_EVT_NO_DEACTIVATE,
    STM_EVT_NO_PARKING_BRAKE_OFF,
    STM_EVT_NO_PARKING_BRAKE_ON,
    STM_EVT_NO_ACCEL_PEDAL_OFF,
    STM_EVT_NO_ACCEL_PEDAL_ON,
    STM_EVT_NO_CAR_STOP,
    STM_EVT_NO_CAR_RUN,
    STM_EVT_NO_TIMER_EXPIRED,
    STM_EVT_NO_LAMP_OFF,
    STM_EVT_NO_LAMP_ON
};

const char* gStmCategoryName[] = {
    "homescreen",
    "map",
    "general",
    "splitable",
    "popup",
    "system_alert",
    "restriction",
};

const int gStmCategoryNo[] = {
    STM_CTG_NO_HOMESCREEN,
    STM_CTG_NO_MAP,
    STM_CTG_NO_GENERAL,
    STM_CTG_NO_SPLITABLE,
    STM_CTG_NO_POPUP,
    STM_CTG_NO_SYSTEM_ALERT,
    STM_CTG_NO_RESTRICTION,
};

const char* gStmAreaName[] = {
    "full",
    "normal",
    "split.main",
    "split.sub",
    "onscreen",
    "restriction.normal",
    "restriction.split.main",
    "restriction.split.sub",
};

const int gStmAreaNo[] = {
    STM_ARA_NO_FULL,
    STM_ARA_NO_NORMAL,
    STM_ARA_NO_SPLIT_MAIN,
    STM_ARA_NO_SPLIT_SUB,
    STM_ARA_NO_ON_SCREEN,
    STM_ARA_NO_RESTRICTION_NORMAL,
    STM_ARA_NO_RESTRICTION_SPLIT_MAIN,
    STM_ARA_NO_RESTRICTION_SPLIT_SUB,
};

// String for state
const char* gStmParkingBrakeStateNo2Name[] = {
    "parking_brake_off",
    "parking_brake_on"
};

const char* gStmAccelPedalStateNo2Name[] = {
    "accel_pedal_off",
    "accel_pedal_on"
};

const char* gStmCarStateNo2Name[] = {
    "car_stop",
    "car_run"
};

const char* gStmLampStateNo2Name[] = {
    "lamp_off",
    "lamp_on"
};

const char* gStmLayoutNo2Name[] = {
    "none",
    "pu",
    "sa",
    "m1",
    "m2",
    "mf",
    "s1",
    "s2",
    "g",
    "hs",
    "restriction",
    "restriction.split.main",
    "restriction.split.sub",
};

stm_state_t g_crr_state;
stm_state_t g_prv_state;
int g_prv_restriction_state_car_stop = 0;
int g_prv_apps_state_car_stop = 0;

void stmInitialize() {
    // Initialize previous state
    memset(&g_prv_state, 0, sizeof(g_prv_state));

    g_prv_state.layer.on_screen.state   = gStmLayoutNoNone;
    g_prv_state.layer.restriction.state = gStmLayoutNoNone;
    g_prv_state.layer.apps.state        = gStmLayoutNoNone;
    g_prv_state.layer.homescreen.state  = gStmLayoutNoNone;
    g_prv_state.parking_brake.state = gStmParkingBrakeStateNoOn;
    g_prv_state.accel_pedal.state   = gStmAccelPedalStateNoOff;
    g_prv_state.car.state           = gStmCarStateNoStop;
    g_prv_state.lamp.state          = gStmLampStateNoOff;

    // Initialize current state
    g_crr_state = g_prv_state;
}

int stmTransitionState(int event, stm_state_t* state) {
    int event_no, category_no, area_no;
    int restriction_state, apps_state;
    int parking_brake_state, accel_pedal_state, car_state, lamp_state;

    event_no    = event & STM_MSK_EVT_NO;
    category_no = event & STM_MSK_CTG_NO;
    area_no     = event & STM_MSK_ARA_NO;

    // Backup previous state
    g_prv_state = g_crr_state;

    // Get previous state
    restriction_state = g_prv_state.layer.restriction.state;
    apps_state = g_prv_state.layer.apps.state;
    parking_brake_state  = g_prv_state.parking_brake.state;
    accel_pedal_state = g_prv_state.accel_pedal.state;
    car_state  = g_prv_state.car.state;
    lamp_state = g_prv_state.lamp.state;

    // Clear flags
    g_crr_state.layer.on_screen.is_changed = STM_FALSE;
    g_crr_state.layer.restriction.is_changed = STM_FALSE;
    g_crr_state.layer.apps.is_changed = STM_FALSE;
    g_crr_state.layer.homescreen.is_changed = STM_FALSE;
    g_crr_state.parking_brake.is_changed = STM_FALSE;
    g_crr_state.accel_pedal.is_changed = STM_FALSE;
    g_crr_state.car.is_changed = STM_FALSE;
    g_crr_state.lamp.is_changed = STM_FALSE;

    switch (event_no) {
    case STM_EVT_NO_ACTIVATE:
        switch (category_no) {
        case STM_CTG_NO_HOMESCREEN:
            // Apps layer
            g_crr_state.layer.apps.state = gStmLayoutNoNone;
            g_crr_state.layer.apps.is_changed = STM_TRUE;

            // Homescreen layer
            g_crr_state.layer.homescreen.state = gStmLayoutNoHs;
            g_crr_state.layer.homescreen.is_changed = STM_TRUE;
            break;
        case STM_CTG_NO_MAP:
            switch (area_no) {
            case STM_ARA_NO_FULL:
                // Apps layer
                switch (apps_state) {
                case gStmLayoutNoMf:
                    // nop
                    break;
                default:
                    g_crr_state.layer.apps.state = gStmLayoutNoMf;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                }
                break;
            case STM_ARA_NO_NORMAL:
                // Apps layer
                switch (apps_state) {
                case gStmLayoutNoM1:
                    // nop
                    break;
                case gStmLayoutNoS1:
                    g_crr_state.layer.apps.state = gStmLayoutNoM2;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                default:
                    g_crr_state.layer.apps.state = gStmLayoutNoM1;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                }
                break;
            case STM_ARA_NO_SPLIT_MAIN:
                // Apps layer
                switch (apps_state) {
                case gStmLayoutNoS1:
                case gStmLayoutNoS2:
                    g_crr_state.layer.apps.state = gStmLayoutNoS2;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                default:
                    // nop
                    break;
                }
                break;
            }
            break;
        case STM_CTG_NO_GENERAL:
            switch (area_no) {
            case STM_ARA_NO_NORMAL:
                // Apps layer
                switch (apps_state) {
                case gStmLayoutNoMf:
                    // nop
                    break;
                default:
                    g_crr_state.layer.apps.state = gStmLayoutNoG;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                }
                break;
            default:
                // nop
                break;
            }
            break;
        case STM_CTG_NO_SPLITABLE:
            switch (area_no) {
            case STM_ARA_NO_NORMAL:
                // Apps layer
                switch (apps_state) {
                case gStmLayoutNoM1:
                    g_crr_state.layer.apps.state = gStmLayoutNoM2;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                case gStmLayoutNoMf:
                case gStmLayoutNoS1:
                    // nop
                    break;
                default:
                    g_crr_state.layer.apps.state = gStmLayoutNoS1;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                }
                break;
            case STM_ARA_NO_SPLIT_MAIN:
                // Apps layer
                switch (apps_state) {
                case gStmLayoutNoS1:
                    g_crr_state.layer.apps.state = gStmLayoutNoS2;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                case gStmLayoutNoS2:
                    g_crr_state.layer.apps.state = gStmLayoutNoS2;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                default:
                    // nop
                    break;
                }
                break;
            case STM_ARA_NO_SPLIT_SUB:
                // Apps layer
                switch (apps_state) {
                case gStmLayoutNoM1:
                    g_crr_state.layer.apps.state = gStmLayoutNoM2;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                case gStmLayoutNoM2:
                    g_crr_state.layer.apps.state = gStmLayoutNoM2;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                case gStmLayoutNoS1:
                    g_crr_state.layer.apps.state = gStmLayoutNoS2;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                case gStmLayoutNoS2:
                    g_crr_state.layer.apps.state = gStmLayoutNoS2;
                    g_crr_state.layer.apps.is_changed = STM_TRUE;
                    break;
                default:
                    // nop
                    break;
                }
                break;
            default:
                // nop
                break;
            }
            break;
        case STM_CTG_NO_RESTRICTION:
            switch (area_no) {
            case STM_ARA_NO_RESTRICTION_NORMAL:
                // restriction Layer
                switch (restriction_state) {
                case gStmLayoutNoNone:
                    g_crr_state.layer.restriction.state = gStmLayoutNoRestriction;
                    g_crr_state.layer.restriction.is_changed = STM_TRUE;
                    break;
                default:
                    // nop
                    break;
                }
                break;
            case STM_ARA_NO_RESTRICTION_SPLIT_MAIN:
                // restriction Layer
                switch (restriction_state) {
                case gStmLayoutNoNone:
                    g_crr_state.layer.restriction.state = gStmLayoutNoRestrictionSplitMain;
                    g_crr_state.layer.restriction.is_changed = STM_TRUE;
                    break;
                default:
                    // nop
                    break;
                }
                break;
            case STM_ARA_NO_RESTRICTION_SPLIT_SUB:
                // restriction Layer
                switch (restriction_state) {
                case gStmLayoutNoNone:
                    g_crr_state.layer.restriction.state = gStmLayoutNoRestrictionSplitSub;
                    g_crr_state.layer.restriction.is_changed = STM_TRUE;
                    break;
                default:
                    // nop
                    break;
                }
                break;
            default:
                // nop
                break;
            }
            break;
        default:
            // nop
            break;
        }
    case STM_EVT_NO_DEACTIVATE:
        switch (category_no) {
        case STM_CTG_NO_RESTRICTION:
            // restriction Layer
            switch (restriction_state) {
            case gStmLayoutNoRestriction:
            case gStmLayoutNoRestrictionSplitMain:
            case gStmLayoutNoRestrictionSplitSub:
                g_crr_state.layer.restriction.state = gStmLayoutNoNone;
                g_crr_state.layer.restriction.is_changed = STM_TRUE;
                break;
            default:
                // nop
                break;
            }
        default:
            // nop
            break;
        }
        break;
    case STM_EVT_NO_PARKING_BRAKE_OFF:
        if (gStmParkingBrakeStateNoOff != parking_brake_state) {
            g_crr_state.parking_brake.state = gStmParkingBrakeStateNoOff;
            g_crr_state.parking_brake.is_changed = STM_TRUE;
        }
        break;
    case STM_EVT_NO_PARKING_BRAKE_ON:
        if (gStmParkingBrakeStateNoOn != parking_brake_state) {
            g_crr_state.parking_brake.state = gStmParkingBrakeStateNoOn;
            g_crr_state.parking_brake.is_changed = STM_TRUE;
        }
        break;
    case STM_EVT_NO_ACCEL_PEDAL_OFF:
        if (gStmAccelPedalStateNoOff != accel_pedal_state) {
            g_crr_state.accel_pedal.state = gStmAccelPedalStateNoOff;
            g_crr_state.accel_pedal.is_changed = STM_TRUE;
        }
        break;
    case STM_EVT_NO_ACCEL_PEDAL_ON:
        if (gStmAccelPedalStateNoOn != accel_pedal_state) {
            g_crr_state.accel_pedal.state = gStmAccelPedalStateNoOn;
            g_crr_state.accel_pedal.is_changed = STM_TRUE;
        }
        break;
    case STM_EVT_NO_CAR_STOP:
        if (gStmCarStateNoStop != car_state) {
            g_crr_state.layer.apps.state = g_prv_apps_state_car_stop;
            g_crr_state.layer.apps.is_changed = STM_TRUE;

            g_crr_state.car.state = gStmCarStateNoStop;
            g_crr_state.car.is_changed = STM_TRUE;
        }
        break;
    case STM_EVT_NO_CAR_RUN:
        if (gStmCarStateNoRun != car_state) {
            g_prv_apps_state_car_stop = apps_state;
            g_crr_state.layer.apps.state = gStmLayoutNoM1;
            g_crr_state.layer.apps.is_changed = STM_TRUE;

            g_crr_state.car.state = gStmCarStateNoRun;
            g_crr_state.car.is_changed = STM_TRUE;
        }
        break;
    case STM_EVT_NO_LAMP_OFF:
        if (gStmLampStateNoOff != lamp_state) {
            g_crr_state.lamp.state = gStmLampStateNoOff;
            g_crr_state.lamp.is_changed = STM_TRUE;
        }
        break;
    case STM_EVT_NO_LAMP_ON:
        if (gStmLampStateNoOn != lamp_state) {
            g_crr_state.lamp.state = gStmLampStateNoOn;
            g_crr_state.lamp.is_changed = STM_TRUE;
        }
        break;
    default:
        // nop
        break;
    }

    // Set car state
    if (g_crr_state.parking_brake.is_changed
        || g_crr_state.accel_pedal.is_changed) {
        if ((gStmParkingBrakeStateNoOff == g_crr_state.parking_brake.state)
            && (gStmAccelPedalStateNoOn == g_crr_state.accel_pedal.state)){
            if (gStmCarStateNoRun != car_state) {
                // Car state is changed stop -> run
                g_crr_state.car.state = gStmCarStateNoRun;
                g_crr_state.car.is_changed = STM_TRUE;

                // Update restriction layer
                g_prv_restriction_state_car_stop = restriction_state;
                g_crr_state.layer.restriction.state = gStmLayoutNoNone;
                g_crr_state.layer.restriction.is_changed = STM_TRUE;

                // Update apps layer
                g_prv_apps_state_car_stop = apps_state;
                g_crr_state.layer.apps.state = gStmLayoutNoM1;
                g_crr_state.layer.apps.is_changed = STM_TRUE;
            }
        }
        else {
            if (gStmCarStateNoStop != car_state) {
                // Car state is changed run -> stop
                g_crr_state.car.state = gStmCarStateNoStop;
                g_crr_state.car.is_changed = STM_TRUE;

                // Update restriction layer
                g_crr_state.layer.restriction.state = g_prv_restriction_state_car_stop;
                g_crr_state.layer.restriction.is_changed = STM_TRUE;

                // Update apps layer
                g_crr_state.layer.apps.state = g_prv_apps_state_car_stop;
                g_crr_state.layer.apps.is_changed = STM_TRUE;
            }
        }
    }

    // Copy current state for return
    memcpy(state, &g_crr_state, sizeof(g_crr_state));

    return 0;
}