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
|
// SPDX-License-Identifier: Apache-2.0
import 'dart:convert';
import 'dart:io';
import 'package:flutter_navigation/config.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_navigation/kuksa/paths.dart';
import 'class-provider.dart';
class VISS {
static const requestId = "test-id";
static void init(WebSocket socket, WidgetRef ref) {
authorize(socket,ref);
subscribe(socket,ref, VSPath.vehicleCurrentLatitude);
subscribe(socket,ref, VSPath.vehicleCurrentLongitude);
subscribe(socket,ref, VSPath.vehicleDestinationLatitude);
subscribe(socket,ref, VSPath.vehicleDestinationLongitude);
}
static void update(WebSocket socket,WidgetRef ref) {
get(socket,ref, VSPath.vehicleCurrentLatitude);
get(socket,ref, VSPath.vehicleCurrentLongitude);
get(socket, ref,VSPath.vehicleDestinationLatitude);
get(socket,ref, VSPath.vehicleDestinationLongitude);
}
static void authorize(WebSocket socket,WidgetRef ref) {
final config = ref.read(ConfigStateprovider);
Map<String, dynamic> map = {
"action": "authorize",
"tokens": config.kuksaAuthToken,
"requestId": requestId
};
socket.add(jsonEncode(map));
}
static void get(WebSocket socket, WidgetRef ref,String path) {
final config = ref.read(ConfigStateprovider);
Map<String, dynamic> map = {
"action": "get",
"tokens": config.kuksaAuthToken,
"path": path,
"requestId": requestId
};
socket.add(jsonEncode(map));
}
static void set(WebSocket socket, WidgetRef ref,String path, String value) {
final config = ref.read(ConfigStateprovider);
Map<String, dynamic> map = {
"action": "set",
"tokens": config.kuksaAuthToken,
"path": path,
"requestId": requestId,
"value": value
};
socket.add(jsonEncode(map));
}
static void subscribe(WebSocket socket,WidgetRef ref, String path) {
final config = ref.read(ConfigStateprovider);
Map<String, dynamic> map = {
"action": "subscribe",
"tokens": config.kuksaAuthToken,
"path": path,
"requestId": requestId
};
socket.add(jsonEncode(map));
}
static String? numToGear(int? number) {
switch (number) {
case -1:
return 'R';
case 0:
return 'N';
case 126:
return 'P';
case 127:
return 'D';
default:
return null;
}
}
static void parseData(WidgetRef ref, String data) {
final vehicleSignal = ref.read(vehicleSignalProvider.notifier);
Map<String, dynamic> dataMap = jsonDecode(data);
if (dataMap["action"] == "subscription" || dataMap["action"] == "get") {
if (dataMap.containsKey("data")) {
if ((dataMap["data"] as Map<String, dynamic>).containsKey("dp") &&
(dataMap["data"] as Map<String, dynamic>).containsKey("path")) {
String path = dataMap["data"]["path"];
Map<String, dynamic> dp = dataMap["data"]["dp"];
if (dp.containsKey("value")) {
if (dp["value"] != "---") {
switch (path) {
case VSPath.vehicleCurrentLatitude:
vehicleSignal.update(
currentLatitude: double.parse(dp["value"]));
break;
case VSPath.vehicleCurrentLongitude:
vehicleSignal.update(
currentLongitude: double.parse(dp["value"]));
break;
case VSPath.vehicleDestinationLatitude:
vehicleSignal.update(
destinationLatitude: double.parse(dp["value"]));
break;
case VSPath.vehicleDestinationLongitude:
vehicleSignal.update(
destinationLongitude: double.parse(dp["value"]));
break;
default:
print("$path Not Available yet!");
}
} else {
print("ERROR:Value not available yet! Set Value of $path");
}
} else {
print("ERROR:'value': Key not found!");
}
} else if ((!dataMap["data"] as Map<String, dynamic>)
.containsKey("path")) {
print("ERROR:'path':key not found !");
} else if ((dataMap["data"] as Map<String, dynamic>)
.containsKey("dp")) {
print("ERROR:'dp':key not found !");
}
} else {
print("ERROR:'data':key not found!");
}
}
}
}
|