Alejandro Acuña
2024-08-12 831c7bd85763b5eb5ef46664c65f0181824f9e13
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
package art.servers.etdserver.controller;
 
 
import art.library.model.devices.DeviceStatus;
import art.library.model.devices.etd.Etd;
import art.library.model.devices.etd.EtdInformation;
import art.library.interop.serialization.Serialization;
import art.library.model.devices.Device;
import art.library.model.devices.etd.status.EtdStatusVehicle;
import art.library.model.transactions.traces.Trace;
import art.library.utils.synchro.Mutex;
import art.servers.ServerException;
import art.servers.etdserver.Shared;
import art.servers.etdserver.protocols.diamond.Diamond_Message;
import art.servers.etdserver.protocols.diamond.Diamond_ProtocolAnalyser;
import art.servers.etdserver.protocols.diamond.Diamond_ProtocolConstructor;
import art.servers.etdserver.protocols.rtms.RTMS_Functions;
import art.servers.etdserver.protocols.rtms.RTMS_Message;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import static java.lang.Thread.sleep;
import java.net.Socket;
import java.net.SocketTimeoutException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
 
 
public class ControllerRTMS extends ControllerEtd
{
    private SimpleDateFormat sdh = new SimpleDateFormat("HH:mm");
    private boolean connected = false;
    private Socket socket = null;
    private InputStream is = null;
    private OutputStream os = null;
    private int status = DeviceStatus.STATUS_ALARM;
    private boolean firstTime = true;
    private long lastVehicle = System.currentTimeMillis();
    private long MAX_TIME_WITHOUT_VEHICLE_DETECTION = 30L*60000L;
    private int MAX_VEHICLES = 100;
    private Mutex mutexList = new Mutex();
    private List<EtdStatusVehicle> lvehicle = new ArrayList<EtdStatusVehicle>();
    private ControllerDataIntegration controllerDataIntegration = null;
    private long diftime = 0;
 
 
    public ControllerRTMS(Etd etd)
    {
        super(etd);
        this.device = etd;
        this.name = Shared.getMessage("Controller etd") + " " + etd.information.name;
    }
    
    
    
    
    public void run()
    {
        controllerDataIntegration = new ControllerDataIntegration((ControllerEtd)this);
        controllerDataIntegration.start();
        // <editor-fold defaultstate="collapsed" desc="Trace">
        art.servers.Shared.println(Trace.getTraceInformation(art.servers.Shared.getApplicationName(), name, art.servers.Shared.getMessage("Starting"), art.servers.Shared.getMessage("Success")), true);
        // </editor-fold>      
        status = DeviceStatus.STATUS_ONLINE;
 
        while ((isInterrupted() == false) && (exit == false))
        {
            long startTimestamp = System.currentTimeMillis();
 
            try
            {
                if (art.servers.Shared.isServerEnabled() == true)
                {
                    if (connected == false) 
                    {
                        connect();
                    }
 
                    update();
                }
            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
 
            if (startTimestamp > System.currentTimeMillis())
            {
                startTimestamp = System.currentTimeMillis();
            }
 
            long stopTimestamp = startTimestamp + (device.getDeviceInformation().polling * 1000);
 
            while ((System.currentTimeMillis() < stopTimestamp) && (exit == false))
            {
                try
                {
                    sleep(50);
                }
                catch (Exception e)
                {
                }
            }
           
            if (art.servers.Shared.model.existsDevice(device.getIdentifier()) == false)
            {
                art.servers.Shared.println(name, art.servers.Shared.getMessage("Device no longer exists"));
                exit = true;
            }
        }
        
        // <editor-fold defaultstate="collapsed" desc="Trace">
        art.servers.Shared.println(Trace.getTraceInformation(art.servers.Shared.getApplicationName(), name, art.servers.Shared.getMessage("Finishing"), art.servers.Shared.getMessage("Success")), true);
        // </editor-fold>      
    }
 
 
 
 
    /*
        Private controller functions
    */
 
    private void update() throws Exception
    {
        // TODO
    }
 
 
    private boolean isError()
    {
        errorsNumber = errorsNumber + 1;
        if (errorsNumber >= maxErrorsNumber)
            return(true);
        return(false);
    }
    
 
    private void offline(Etd etdclone)throws Exception
    {
        if (isError() == true)
        {
            if (etdclone.getAlarm("alarm_offline") <= 0)
            {
                if (etdclone.getAlarm("alarm_offline") <= 0)
                {
                    etdclone.getDeviceAlarms().clear();
                }
                etdclone.setAlarm("alarm_offline", true);
            }
            Shared.model.updateDevice(device, etdclone);
        }
    }
    
 
    private void online(Etd etdclone) throws Exception
    {
        errorsNumber = 0;
        if ((etdclone.alarms.alarm_offline > 0) || (firstTime == true))
        {
            firstTime = false;
            String message = art.servers.Shared.getMessage("Etd online");
            art.servers.Shared.println(name, message);
        }
 
        etdclone.setAlarm("alarm_offline", false);
        etdclone.setAlarm("alarm_invalid", false);
        Shared.model.updateDevice(device, etdclone);
    }
 
 
    public List<EtdStatusVehicle> getVehicles (long timestamp)
    {
        List<EtdStatusVehicle> lresult = new ArrayList<EtdStatusVehicle>();
 
        try
        {
            mutexList.lockRead();
 
            for (EtdStatusVehicle vehicle : lvehicle)
            {
                if (vehicle.timestamp > timestamp)
                {
                    lresult.add(vehicle);
                }
            }
 
            return(lresult);
        }
        catch (Exception e)
        {
        }
        finally
        {
            mutexList.releaseRead();
        }
 
        return(lresult);
    }
 
 
    public List<EtdStatusVehicle> getVehiclesPeriod (long timestamp1, long timestamp2)
    {
        List<EtdStatusVehicle> lresult = new ArrayList<EtdStatusVehicle>();
 
        try
        {
            mutexList.lockRead();
 
            for (EtdStatusVehicle vehicle : lvehicle)
            {
                if ((vehicle.timestamp >= timestamp1) && (vehicle.timestamp <= timestamp2))
                {
                    lresult.add(vehicle);
                }
            }
 
            return(lresult);
        }
        catch (Exception e)
        {
        }
        finally
        {
            mutexList.releaseRead();
        }
 
        return(lresult);
    }
 
 
 
 
    private void startMonitorTrafficData (Etd etdclone) throws Exception
    {
        try
        {
            byte[] command = Diamond_ProtocolConstructor.CR();
            Diamond_Message response = read(command);
            response.checkError();
        }
        catch (Exception e)
        {
            
        }
 
        try
        {
            byte[] command = Diamond_ProtocolConstructor.RESETCOMMS();
            Diamond_Message response = read(command);
            response.checkError();
        }
        catch (Exception e)
        {
            
        }
 
        int retries = 0;
        while (retries < 5)
        {
            try
            {
                byte[] command = Diamond_ProtocolConstructor.CR();
                Diamond_Message response = read(command);
                response.checkError();
                
                if ((response.getResponseString().toUpperCase().indexOf("PHO") > -1) ||
                    (response.getResponseString().toUpperCase().indexOf("UN") > -1))
                {
                    int index = response.getResponseString().indexOf("PHO#");
                    if (index < 0)
                    {
                        index = response.getResponseString().indexOf("UNI#");
                    }
 
                    if (index > -1)
                    {
                        String sversion = response.getResponseString().substring(index+4, index+7);
                        int version = Integer.parseInt(sversion);
                        float f = (float)(((float)version) / 100f);
                        if ((etdclone.getDeviceInformation().firmwareVersion == null) || (etdclone.getDeviceInformation().firmwareVersion.length() == 0))
                            etdclone.getDeviceInformation().firmwareVersion = "" + f;
                    }
 
                    retries = 5;
                }
            }
            catch (Exception e)
            {
 
            }
 
            retries++;
        }
 
 
        // Check datetime before starting monitor traffic data
        checkDatetime(etdclone);
 
        boolean error = true;
        retries = 0;
        while (error == true)
        {
            try
            {
                byte[] command = Diamond_ProtocolConstructor.startMonitorTrafficData();
                Diamond_Message response = read(command);
                response.checkError();
                Diamond_ProtocolAnalyser.analyseStartMonitorTrafficDataResponse(response);
                error = false;
            }
            catch (Exception e)
            {
                retries++;
                if (retries == 3) throw e;
            }
        }
    }
 
 
    private void startCollecting (Etd etdclone)
    {
        try
        {
            byte[] command = Diamond_ProtocolConstructor.startCollecting();
            Diamond_Message response = read(command);
            response.checkError();
            response.checkCommand(response.getResponseString().getBytes(), command);
        }
        catch (Exception e)
        {
            
        }
    }
 
 
    private void stopCollecting ()
    {
        try
        {
            byte[] command = Diamond_ProtocolConstructor.stopCollecting();
            Diamond_Message response = read(command);
            response.checkError();
            response.checkCommand(response.getResponseString().getBytes(), command);
        }
        catch (Exception e)
        {
            
        }
    }
 
 
    private void checkDatetime (Etd etdclone)
    {
        try
        {
            byte[] command = Diamond_ProtocolConstructor.getSystemStatusCounter();
            Diamond_Message response = read(command);
            long timestamp = System.currentTimeMillis();
            response.checkError();
            response.checkCommand(response.getResponseString().getBytes(), command);
 
            Diamond_Message message = new Diamond_Message();
            message.setData(response.getDataByte(), command);
            long timeDifference = 0;
            long currenttime = 0;
            boolean collecting = false;
 
            if (etdclone.getDeviceInformation().firmwareVersion.indexOf("5.") > -1)
            {
                message.get6X();
                message.get2X();
                message.get2X();
                message.get2X();
                message.get4X();
                message.get4X();
                message.get4X();
                message.get6X();
                message.get6X();
                message.get1X();
                collecting = (message.get1X() == 0x01);
                int hour = message.get2X();
                int minute = message.get2X();
                int seconds = message.get2X();
                int mseconds = message.get2X();
                int month = message.get2X();
                int date = message.get2X();
                int year = message.get2X();
                int dayOfWeek = message.get2X();
 
                Calendar calendar = Calendar.getInstance();
                calendar.set(Calendar.HOUR_OF_DAY, hour);
                calendar.set(Calendar.MINUTE, minute);
                calendar.set(Calendar.SECOND, seconds);
                calendar.set(Calendar.MILLISECOND, mseconds);
                calendar.set(Calendar.YEAR, year+2000);
                calendar.set(Calendar.MONTH, month-1);
                calendar.set(Calendar.DATE, date);
 
                currenttime = calendar.getTimeInMillis();
                timeDifference = Math.abs((currenttime-timestamp));
            }
            else
            {
                message.get6X();
                message.get2X();
                message.get2X();
                message.get4X();
                message.get4X();
                message.get6X();
                message.get6X();
                message.get1X();
                collecting = (message.get1X() == 0x01);
                int hour = message.get2X();
                int minute = message.get2X();
                int seconds = message.get2X();
                int mseconds = message.get2X();
                int month = message.get2X();
                int date = message.get2X();
                int year = message.get2X();
                int dayOfWeek = message.get2X();
 
                Calendar calendar = Calendar.getInstance();
                calendar.set(Calendar.HOUR_OF_DAY, hour);
                calendar.set(Calendar.MINUTE, minute);
                calendar.set(Calendar.SECOND, seconds);
                calendar.set(Calendar.MILLISECOND, mseconds);
                calendar.set(Calendar.YEAR, year+2000);
                calendar.set(Calendar.MONTH, month-1);
                calendar.set(Calendar.DATE, date);
 
                currenttime = calendar.getTimeInMillis();
                timeDifference = Math.abs((currenttime-timestamp));
            }
 
            if (timeDifference >= 10000)
            {
                Shared.println(device.information.name, "Datetime incorrect: " + new Date(timestamp).toString() + " - " + new Date(currenttime).toString() + " - DIF: " + timeDifference + " - Collecting?: " + collecting);
 
                if (collecting == true)
                {
                    // Stop collecting before set datetime
                    stopCollecting();
                }
 
                updateDatetimeCounter(etdclone);
 
                startCollecting(etdclone);
            }
        }
        catch (Exception e)
        {
            
        }
    }
 
 
    private void updateDatetimeCounter (Etd etdclone)
    {
        try
        {
            byte[] command = Diamond_ProtocolConstructor.sendDatetimeCounter();
            Diamond_Message response = read(command);
            response.checkError();
            response.checkCommand(response.getResponseString().getBytes(), command);
            Shared.println(device.information.name, "Datetime updated OK");
        }
        catch (Exception e)
        {
            e.printStackTrace();
            Shared.println(device.information.name, e);
        }
    }
 
 
 
 
    private void updateVersion (Etd etdclone, String connectionString)
    {
        try
        {
            int index = connectionString.indexOf("PHO#");
            if (index < 0)
            {
                index = connectionString.indexOf("UNI#");
            }
 
            if (index > -1)
            {
                String sversion = connectionString.substring(index+4, index+7);
                int version = Integer.parseInt(sversion);
                float f = (float)(((float)version) / 100f);
                if ((etdclone.getDeviceInformation().firmwareVersion == null) || (etdclone.getDeviceInformation().firmwareVersion.length() == 0))
                    etdclone.getDeviceInformation().firmwareVersion = "" + f;
            }
        }
        catch (Exception e)
        {
            
        }
    }
 
 
    public boolean isConnected ()
    {
        return(this.connected);
    }
 
 
    private void connect() 
    {
        try
        {
            if (this.socket != null)
            {
                if (this.connected == true)
                {
                    return;
                }
            }
 
            this.socket = new Socket(this.device.getDeviceInformation().connection.address, this.device.getDeviceInformation().connection.port);
            this.socket.setSoTimeout(this.device.getDeviceInformation().connection.timeout);
            this.is = this.socket.getInputStream();
            this.os = this.socket.getOutputStream();
            this.connected = true;
 
            if (status != DeviceStatus.STATUS_ONLINE)
            {
                String message = Shared.getMessage("Connected, address = %1, port = %2, timeout = %3");
                message = message.replace("%1", device.getDeviceInformation().connection.address);
                message = message.replace("%2", "" +device.getDeviceInformation().connection.port);
                message = message.replace("%3", "" + device.getDeviceInformation().connection.timeout);
                Shared.println(device.information.name, message);
                status = DeviceStatus.STATUS_ONLINE;
            }
            
        }
        catch (Exception e)
        {
            try{disconnect();} catch (Exception ex){};
        }
        
    }
 
 
    private void disconnect() throws Exception
    {
        try { is.close(); }catch (Exception e) {}
        try { os.close(); }catch (Exception e) {}
        try { socket.close(); }catch (Exception e) {}
        is = null;
        os = null;
        socket = null;
        this.connected = false;
    }
    
 
        
    private Diamond_Message read(byte[] command) throws Exception
    {
        try
        {
            if (command.length > 0) send(command);
            return receive();
        }
        catch (Exception e)
        {
            throw e;
        }
    }
     
    
    
    private void send(byte[] command) throws Exception
    {
        socket.getOutputStream().write(command);
        socket.getOutputStream().flush();
    }
    
    
    
    private Diamond_Message receive() throws Exception
    {
       boolean salir = false;
       int res = 0;
       byte[] trama = null;
 
       int longitud = 0;
       int apuntador = 0;
 
       try
       {
           while ((res = is.read()) == 0){sleep(10);};
 
           trama = new byte[65535];
           trama[apuntador] = (byte)res;
           apuntador++;
           res = is.read();
 
           while (true)
           {
                trama[apuntador] = (byte)res;
                apuntador++;
                res = is.read();
           }
       }
       catch (SocketTimeoutException e)
       {
           if (apuntador > 0)
           {
               longitud = apuntador;
           }
           else
               throw e;
       }
       catch (Exception e)
       {
          throw e;
       }
 
       byte[] resultado = new byte[longitud];
       System.arraycopy(trama, 0, resultado, 0, longitud);
 
       Diamond_Message message = new Diamond_Message();
       message.setData(resultado);
       return(message);
    }    
 
 
    private void checkListSize()
    {
        if (lvehicle.size() > MAX_VEHICLES)
        {
            int number = lvehicle.size() - MAX_VEHICLES;
            for (int i=0; i<number; i++)
            {
                lvehicle.remove(0);
            }
        }
    }
 
 
    private void logVehicle (Etd etdclone, EtdStatusVehicle vehicle)
    {
        try
        {
            String sline = Device.getDate(System.currentTimeMillis()) + ": " + etdclone.getIdentifier() + " - TS: " + new Date(vehicle.timestamp) + " - Lane: " + vehicle.lane + " - Speed " + vehicle.speed + " - Length: " + vehicle.length + " - Axles: " + vehicle.axles + "\r\n";
            FileOutputStream fos = new FileOutputStream(new File("etd/" + etdclone.getIdentifier() + ".dat"), true);
            fos.write(sline.getBytes());
            fos.flush();
            fos.close();
            fos = null;
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
}