This file is indexed.

/usr/include/Aria/ArLCDMTX.h is in libaria-dev 2.8.0+repack-1.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
Adept MobileRobots Robotics Interface for Applications (ARIA)
Copyright (C) 2004, 2005 ActivMedia Robotics LLC
Copyright (C) 2006, 2007, 2008, 2009, 2010 MobileRobots Inc.
Copyright (C) 2011, 2012, 2013 Adept Technology

     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
     (at your option) any later version.

     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with this program; if not, write to the Free Software
     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

If you wish to redistribute ARIA under different terms, contact 
Adept MobileRobots for information about a commercial version of ARIA at 
robots@mobilerobots.com or 
Adept MobileRobots, 10 Columbia Drive, Amherst, NH 03031; +1-603-881-7960
*/
#ifndef ARLCDMTX_H
#define ARLCDMTX_H

#include "ariaTypedefs.h"
#include "ArRangeDevice.h"
#include "ArFunctor.h"
#include "ArRobot.h"
#include "ArRobotPacket.h"
#include "ArRobotConnector.h"



// Packets are in the format of 
// 2 bytes header (0xfa 0xba)
// 1 byte length
// 1 byte command
// xx bytes command specific / args
// 2 bytes checksum
//

/** Interface to LCD interface panel on an MTX-type robot.

 This interface can be used to display text strings on the MTX LCD panel.  
 One or more ArLCDMTX objects are automatically created by 
 ArRobotConnector (or ArLCDConnector if used separately from
 ArRobotConnector) if connecting to an MTX robot, and a successful
 connection to the LCD panel was also made. A pointer
 to the first ArLCDMTX object can be obtained via ArRobot::findLCD(),
 passing an index of 1. 

 @since 2.8.0
 @ingroup MTX
*/
class ArLCDMTX : public ArASyncTask
{
public:
  /// Constructor
  AREXPORT ArLCDMTX( 
			 int lcdBoardNum = 0,
				const char * name = "MTXLCD", 
				ArDeviceConnection *conn = NULL,
				ArRobot *robot = NULL);
  /// Destructor
  AREXPORT virtual ~ArLCDMTX();

  // Grabs the new readings from the robot and adds them to the buffers
  // (Primarily for internal use.)
  //AREXPORT void processReadings(void);

	AREXPORT int getBoardNum(void)
		{ return myBoardNum; }

  /// Sets the robot pointer, also attaches its process function to the
  /// robot as a Sensor Interpretation task.
  AREXPORT virtual void setRobot(ArRobot *robot);

  /// Sets the device this instance receives packets from
  AREXPORT void setDeviceConnection(ArDeviceConnection *conn);
  /// Gets the device this instance receives packets from
  AREXPORT ArDeviceConnection *getDeviceConnection(void);

  AREXPORT virtual bool blockingConnect(bool sendTracking, bool recvTracking, 
																				int lcdNumber, ArFunctor1<int> *onCallback,
																				ArFunctor1<int> *offCallback);
  AREXPORT virtual bool disconnect(void);
  AREXPORT virtual bool isConnected(void) { return myIsConnected; }
  AREXPORT virtual bool isTryingToConnect(void) 
    { 
    if (myStartConnect)
			return true;
		else if (myTryingToConnect)
			return true; 
		else
			return false;
    }  


  /// Lock this device
  AREXPORT virtual int lockDevice() { return(myDeviceMutex.lock());}
  /// Try to lock this device
  AREXPORT virtual int tryLockDevice() {return(myDeviceMutex.tryLock());}
  /// Unlock this device
  AREXPORT virtual int unlockDevice() {return(myDeviceMutex.unlock());}

  AREXPORT virtual const char *getName(void) const;

  AREXPORT void	setInfoLogLevel(ArLog::LogLevel infoLogLevel)
  { myInfoLogLevel = infoLogLevel; }
	
  /// Gets the default port type for the lcd
  const char *getDefaultPortType(void) { return myDefaultPortType.c_str(); }

  /// Gets the default port type for the lcd
  const char *getDefaultTcpPort(void) { return myDefaultTcpPort.c_str(); }

	AREXPORT bool verifyFwVersion();


  /// Sets the numter of seconds without a response until connection assumed lost
  AREXPORT virtual void setConnectionTimeoutSeconds(double seconds)
	{ ArLog::log(ArLog::Normal, 
		     "%s::setConnectionTimeoutSeconds: Setting timeout to %g secs", 
		     getName(), seconds);
	  myTimeoutSeconds = seconds; }
  /// Gets the number of seconds without a response until connection assumed lost
  AREXPORT virtual double getConnectionTimeoutSeconds(void)
	{return myTimeoutSeconds; }
	/// check for lost connections
	AREXPORT bool checkLostConnection(void);
	/// disconnect 
	AREXPORT void disconnectOnError(void);
  /// Gets the time data was last receieved
  ArTime getLastReadingTime(void) { return myLastReading; }
  /// Gets the number of lcd readings received in the last second
  AREXPORT int getReadingCount(void);
  // Function called in sensorInterp to indicate that a
  // reading was received

  /// Adds a callback for when disconnection happens because of an error
  void addDisconnectOnErrorCB(ArFunctor *functor, 
			     int position = 51) 
    { myDisconnectOnErrorCBList.addCallback(functor, position); }

  /// Removes a callback for when disconnection happens because of an error
  void remDisconnectOnErrorCB(ArFunctor *functor)
    { myDisconnectOnErrorCBList.remCallback(functor); }

	const char *getFirmwareVersion(void) const
		{ return myFirmwareVersion.c_str(); }


        /// exposed routines to set the various screen status(s) text
        /// size is limited to 247 characters... supports new lines (it
        /// can show up to 6 lines, with roughly 22-26 chars per line)

	AREXPORT bool setMTXLCDMainScreenText(const char *status);
        // we just have one text on the status now
        //AREXPORT bool setMTXLCDMainScreenMode(const char *status);
	AREXPORT bool setMTXLCDBootScreenText(const char *status);

	// get routines
	enum Screens {
		BOOT_SCREEN=0x00,
		STATUS_SCREEN=0x01
	};

	// only 2 valid screen numbers 
	AREXPORT bool setMTXLCDScreenNumber(unsigned char screenNumber);

	// sets backlight on/off
	AREXPORT bool setMTXLCDBackLight(bool backLight);

	void setIdentifier(const char *identifier);

  /// internal call (don't use it) that updates from the calling thread instead of the correct thread
  AREXPORT bool internalMTXLCDOverrideMainScreenText(const char *status);
  /// internal call (don't use it) that updates from the calling thread instead of the correct thread
  AREXPORT bool internalMTXLCDOverrideBootScreenText(const char *status);
  /// internal call (don't use it) that updates from the calling thread instead of the correct thread
  AREXPORT bool internalMTXLCDOverrideBacklight(bool backlight);
protected:

  /// Logs the information about the sensor
  AREXPORT void log(void);

	AREXPORT void writeToLCD();

	AREXPORT bool setMainStatus(const char *status);
	AREXPORT bool setTextStatus(const char *status);
	AREXPORT bool setRobotIdStatus(const char *status);
	AREXPORT bool setRobotIPStatus(const char *status);
	AREXPORT bool setBootStatus(const char *status);
	AREXPORT bool getMainStatus(const char *status);
	AREXPORT bool getTextStatus(const char *status);
	AREXPORT bool getBootStatus(const char *status);


  AREXPORT bool sendKeepAlive();
  AREXPORT bool sendVersion();
  AREXPORT bool sendSystemInfo(unsigned char command);
  AREXPORT bool sendReboot();

	AREXPORT bool getScreenNumber(unsigned char *currentScreenNumber);

	AREXPORT bool getTextField(unsigned char textNumber, char *text);
	AREXPORT bool getBacklight(unsigned char *backlight);
	AREXPORT bool getSystemMeters(unsigned char *battery, unsigned char *wifi);


	// set routines
	AREXPORT bool setTextField(unsigned char textNumber, const char *text);
	AREXPORT bool setBacklight(bool backlight);
	AREXPORT bool setSystemMeters(unsigned char battery, unsigned char wifi);
	AREXPORT bool setScreenNumber(unsigned char screenNumber);

	AREXPORT unsigned char getBatteryPercentage();
	AREXPORT unsigned char getWifiPercentage();

	AREXPORT void getIpAddress();


  AREXPORT virtual void internalGotReading(void);

  ArDeviceConnection *myConn;
  std::string myName;
	std::string myDefaultPortType;
	std::string myDefaultTcpPort;

  double myTimeoutSeconds;
  bool myRobotRunningAndConnected;
	bool myConnFailOption;

  ArTime myLastReading;

  // packet count
  time_t myTimeLastReading;
  int myReadingCurrentCount;
  int myReadingCount;

  ArCallbackList myDisconnectOnErrorCBList;

	ArRobot *myRobot;
  ArFunctorC<ArLCDMTX> myProcessCB;

  AREXPORT virtual void lcdSetName(const char *name);
  AREXPORT virtual void * runThread(void *arg);

	AREXPORT bool downloadFirmware();
	AREXPORT std::string searchForFile(
			const char *dirToLookIn, const char *prefix, const char *suffix);

			
  void sensorInterp(void);
  void failedToConnect(void);
  void clear(void);
  bool myIsConnected;
  bool myTryingToConnect;
  bool myStartConnect;

	std::string myRobotIdentifier;
	bool myRobotIdentifierChanged;

  bool myOnCharger;
  ArRobot::ChargeState myChargeState;

	int myBoardNum;
	unsigned char myVersion;

  ArLog::LogLevel myLogLevel;

enum Headers {
	HEADER1=0xfa,
	HEADER2=0xcd

//	old value HEADER2=0x5c
	};

	ArRobotPacketReceiver *myReceiver;
  ArRobotPacketSender *mySender;

  ArMutex myPacketsMutex;
  ArMutex myDataMutex;
	ArMutex myDeviceMutex;
	
  ArLog::LogLevel myInfoLogLevel;
	
  std::list<ArRobotPacket *> myPackets;
  
  ArTime myPrevLCDIntTime;

  bool myRequestedSysInfoLCDPackets;
  bool myRequestedCellInfoLCDPackets;

	bool mySendTracking;
	bool myRecvTracking;

// Protocol Commands


enum Commands {
	KEEP_ALIVE=0x00,
	VERSION=0x01,
	SYSTEM_INFO=0x02,
	REBOOT=0x03,
	GET_CURRENT_SCREEN_NUM=0x10,
	GET_TEXT_FIELD=0x11,
	GET_BACKLIGHT=0x12,
	GET_SYSTEM_METERS=0x13,
	SET_SCREEN_NUM=0x20,
	SET_TEXT_FIELD=0x21,
	SET_BACKLIGHT=0x22,
	SET_BATTERY_WIFI=0x23
	};



enum TextNumbers {
	BOOT_STATUS_TEXT=0x00,
	MAIN_STATUS_TEXT=0x01,
	MODE_TEXT=0x02,
	ROBOT_ID_TEXT=0x03,
	ROBOT_IP_TEXT=0x04
	};


enum SYS_INFO {
	SYS_INFO_STOP=0x00,
	SYS_INFO_ONCE=0x01,
	SYS_INFO_CONTINUOUS=0x02
	};

	// System Info
	unsigned char myId;
	std::string myFirmwareVersion;
	unsigned int mySerialNumber;
	long long myCurrentTime;
	unsigned char myCurrentScreen;
	unsigned char myStatusFlags;
	
	// end system info
	
	std::string myNewFwFile;

	bool myScreenNumberChanged;
	unsigned char myChangedScreenNumber;

	bool myBootTextChanged;
	char myChangedBootText[248];

	bool myMainScreenStatusChanged;
	char myChangedStatusText[248];

	bool myMainScreenModeChanged;
	char myChangedModeText[248];

	bool myBackLightChanged;
	bool myChangedBackLight;

	std::string myIpAddress;

  ArFunctorC<ArLCDMTX> mySensorInterpTask;
  ArRetFunctorC<bool, ArLCDMTX> myAriaExitCB;

};



#endif // ARLCDMTX_H