summaryrefslogtreecommitdiff
path: root/plugins/obd2plugin/obdpid.h
blob: 6632672a20786a2e59c6fa83924b6fd7f7d82a6b (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
#ifndef _OBDPID_H__H_H_
#define _OBDPID_H__H_H_

#include <vector>
#include <string>
#include <vehicleproperty.h>
#include "obdlib.h"
#include <time.h>

class ObdPid
{
public:
	typedef std::vector<unsigned char> ByteArray;

	ObdPid(VehicleProperty::Property prop, std::string p, int i)
		:property(prop), pid(p), id(i), type(0x41)
	{

	}
	static ByteArray cleanup(ByteArray replyVector)
	{
		ByteArray tmp;
		for (int i=0;i<replyVector.size();i++)
		{
			if ((replyVector[i] != 0x20) && (replyVector[i] != '\r') && (replyVector[i] != '\n'))
			{
				tmp.push_back(replyVector[i]);
			}
		}
		return tmp;
	}
	static ByteArray compress(ByteArray replyVector)
	{
		ByteArray tmp;
		for (int i=0;i<replyVector.size();i++)
		{
			tmp.push_back(obdLib::byteArrayToByte(replyVector[i],replyVector[i+1]));
			i++;
		}
		return tmp;
	}
	virtual ObdPid* create() = 0;

	virtual bool tryParse(ByteArray replyVector) = 0;

	VehicleProperty::Property property;
	std::string pid;
	int id;
	int type;
	std::string value;
};

template <class T>
class CopyMe: public ObdPid
{
public:

	CopyMe(VehicleProperty::Property prop, std::string p, int i)
		:ObdPid(prop, p, i)
	{

	}

	ObdPid* create()
	{
		return new T();
	}
};


class VehicleSpeedPid: public CopyMe<VehicleSpeedPid>
{
public:

	VehicleSpeedPid()
		:CopyMe(VehicleProperty::VehicleSpeed, "010D1\r", 0x0D)
	{

	}
	bool tryParse(ByteArray replyVector)
	{
		ByteArray tmp = compress(cleanup(replyVector));
		for (int i=0;i<tmp.size();i++)
		{
		  printf("%i ",tmp[i]);
		}
		printf("\n");
		if (tmp[1] != 0x0D)
		{
			return false;
		}
		int mph = tmp[2];
		value = boost::lexical_cast<std::string>(mph);
		return true;
	}
};

class EngineSpeedPid: public CopyMe<EngineSpeedPid>
{
public:

	EngineSpeedPid()
		:CopyMe(VehicleProperty::VehicleSpeed,"010C1\r",0x0D)
	{

	}
	bool tryParse(ByteArray replyVector)
	{
		ByteArray tmp = compress(cleanup(replyVector));
		if (tmp[1] != 0x0C)
		{
			return false;
		}
		double rpm = ((tmp[2] << 8) + tmp[3]) / 4.0;
		value = boost::lexical_cast<std::string>(rpm);
		return false;
	}
};

class EngineCoolantPid: public CopyMe<EngineCoolantPid>
{
public:

	EngineCoolantPid()
		:CopyMe(VehicleProperty::VehicleSpeed,"01051\r",0x0D)
	{

	}
	bool tryParse(ByteArray replyVector)
	{
		ByteArray tmp = compress(cleanup(replyVector));
		if (tmp[1] != 0x05)
		{
			return false;
		}
		int temp = tmp[2] - 40;
		value = boost::lexical_cast<std::string>(temp);
		return false;
	}
};

class MassAirFlowPid: public CopyMe<MassAirFlowPid>
{
public:

	MassAirFlowPid()
		:CopyMe(VehicleProperty::VehicleSpeed,"01101\r",0x0D)
	{

	}
	bool tryParse(ByteArray replyVector)
	{
		ByteArray tmp = compress(cleanup(replyVector));
		if (tmp[1] != 0x10)
		{
			return false;
		}
		maf = ((tmp[2] << 8) + tmp[3]) / 100.0;
		value = boost::lexical_cast<std::string>(maf);
		return false;
	}

protected:
	double maf;
};


class FuelConsumptionPid: public MassAirFlowPid
{
public:
	FuelConsumptionPid()

	{

	}
	bool tryParse(ByteArray replyVector)
	{
		MassAirFlowPid::tryParse(replyVector);
		timespec t;
		clock_gettime(CLOCK_REALTIME, &t);

		double currentTime = t.tv_sec + t.tv_nsec / 1000000;

		double diffTime = currentTime - oldTime;
		oldTime = currentTime;

		double consumption = 1 / (14.75 * 6.26) * maf * diffTime/60;

		value = boost::lexical_cast<std::string>(consumption);
		return false;
	}

private:

	static double oldTime;
};


class VinPid: public CopyMe<VinPid>
{
public:

	VinPid()
		:CopyMe(VehicleProperty::VIN,"0902\r",0x0D)
	{
		type = 0x49;
	}
	bool tryParse(ByteArray replyVector)
	{
		std::string vinstring;
		ByteArray tmp = compress(cleanup(replyVector));
		if (tmp[0] != 0x49 && tmp[1] != 0x02)
		{
			return false;
		}
		for (int j=0;j<tmp.size();j++)
		{
			if(tmp[j] == 0x49 && tmp[j+1] == 0x02)
			{
				//We're at a reply header
				j+=3;
			}
			if (tmp[j] != 0x00)
			{
				vinstring += (char)tmp[j];
				//printf("VIN: %i %c\n",replyVector[j],replyVector[j]);
			}
		}

		value = vinstring;
		return false;
	}

};

class WmiPid: public VinPid
{
public:

	WmiPid()
		:VinPid()
	{
		property = VehicleProperty::WMI;
	}
	bool tryParse(ByteArray replyVector)
	{
		VinPid::tryParse(replyVector);

		value = value.substr(0,3);
		return false;
	}

};


#endif