forked from nicrip/VTKVelodyneHDL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vtkVelodyneHDLSource.cxx
827 lines (693 loc) · 20.3 KB
/
vtkVelodyneHDLSource.cxx
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
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
// Copyright 2013 Velodyne Acoustics, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/*=========================================================================
Program: Visualization Toolkit
Module: vtkVelodyneHDLSource.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkVelodyneHDLSource.h"
#include "vtkVelodyneHDLReader.h"
#include "vtkPacketFileReader.h"
#include "vtkPacketFileWriter.h"
#include "vtkPolyData.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include "vtkSmartPointer.h"
#include "vtkNew.h"
#include <boost/thread/thread.hpp>
#include <boost/asio.hpp>
#include <queue>
#include <deque>
//----------------------------------------------------------------------------
namespace
{
template<typename T>
class SynchronizedQueue
{
public:
SynchronizedQueue () :
queue_(), mutex_(), cond_(), request_to_end_(false), enqueue_data_(true) { }
void
enqueue (const T& data)
{
boost::unique_lock<boost::mutex> lock (mutex_);
if (enqueue_data_)
{
queue_.push (data);
cond_.notify_one ();
}
}
bool
dequeue (T& result)
{
boost::unique_lock<boost::mutex> lock (mutex_);
while (queue_.empty () && (!request_to_end_))
{
cond_.wait (lock);
}
if (request_to_end_)
{
doEndActions ();
return false;
}
result = queue_.front ();
queue_.pop ();
return true;
}
void
stopQueue ()
{
boost::unique_lock<boost::mutex> lock (mutex_);
request_to_end_ = true;
cond_.notify_one ();
}
unsigned int
size ()
{
boost::unique_lock<boost::mutex> lock (mutex_);
return static_cast<unsigned int> (queue_.size ());
}
bool
isEmpty () const
{
boost::unique_lock<boost::mutex> lock (mutex_);
return (queue_.empty ());
}
private:
void
doEndActions ()
{
enqueue_data_ = false;
while (!queue_.empty ())
{
queue_.pop ();
}
}
std::queue<T> queue_; // Use STL queue to store data
mutable boost::mutex mutex_; // The mutex to synchronise on
boost::condition_variable cond_; // The condition to wait for
bool request_to_end_;
bool enqueue_data_;
};
//----------------------------------------------------------------------------
class PacketConsumer
{
public:
PacketConsumer()
{
this->NewData = false;
this->MaxNumberOfDatasets = 1000;
this->LastTime = 0.0;
}
void HandleSensorData(const unsigned char* data, unsigned int length)
{
this->HDLReader->ProcessHDLPacket(const_cast<unsigned char*>(data), length);
if (this->HDLReader->GetDatasets().size())
{
this->HandleNewData(this->HDLReader->GetDatasets().back());
this->HDLReader->GetDatasets().clear();
}
}
vtkSmartPointer<vtkPolyData> GetDatasetForTime(double timeRequest, double& actualTime)
{
boost::lock_guard<boost::mutex> lock(this->Mutex);
size_t stepIndex = this->GetIndexForTime(timeRequest);
if (stepIndex < this->Timesteps.size())
{
actualTime = this->Timesteps[stepIndex];
return this->Datasets[stepIndex];
}
actualTime = 0;
return 0;
}
std::vector<double> GetTimesteps()
{
boost::lock_guard<boost::mutex> lock(this->Mutex);
const size_t nTimesteps = this->Timesteps.size();
std::vector<double> timesteps(nTimesteps, 0);
for (size_t i = 0; i < nTimesteps; ++i)
{
timesteps[i] = this->Timesteps[i];
}
return timesteps;
}
int GetMaxNumberOfDatasets()
{
return this->MaxNumberOfDatasets;
}
void SetMaxNumberOfDatasets(int nDatasets)
{
boost::lock_guard<boost::mutex> lock(this->Mutex);
this->MaxNumberOfDatasets = nDatasets;
this->UpdateDequeSize();
}
bool CheckForNewData()
{
boost::lock_guard<boost::mutex> lock(this->Mutex);
bool newData = this->NewData;
this->NewData = false;
return newData;
}
void ThreadLoop()
{
std::string* packet = 0;
while (this->Packets->dequeue(packet))
{
this->HandleSensorData(reinterpret_cast<const unsigned char*>(packet->c_str()), packet->length());
delete packet;
}
}
void Start()
{
if (this->Thread)
{
return;
}
this->Packets.reset(new SynchronizedQueue<std::string*>);
this->Thread = boost::shared_ptr<boost::thread>(
new boost::thread(boost::bind(&PacketConsumer::ThreadLoop, this)));
}
void Stop()
{
if (this->Thread)
{
this->Packets->stopQueue();
this->Thread->join();
this->Thread.reset();
this->Packets.reset();
}
}
void Enqueue(std::string* packet)
{
this->Packets->enqueue(packet);
}
vtkVelodyneHDLReader* GetReader()
{
return this->HDLReader.GetPointer();
}
protected:
void UpdateDequeSize()
{
if (this->MaxNumberOfDatasets <= 0)
{
return;
}
while (this->Datasets.size() >= this->MaxNumberOfDatasets)
{
this->Datasets.pop_front();
this->Timesteps.pop_front();
}
}
size_t GetIndexForTime(double time)
{
size_t index = 0;
double minDifference = VTK_DOUBLE_MAX;
const size_t nTimesteps = this->Timesteps.size();
for (size_t i = 0; i < nTimesteps; ++i)
{
double difference = std::abs(this->Timesteps[i] - time);
if (difference < minDifference)
{
minDifference = difference;
index = i;
}
}
return index;
}
void HandleNewData(vtkSmartPointer<vtkPolyData> polyData)
{
boost::lock_guard<boost::mutex> lock(this->Mutex);
this->UpdateDequeSize();
this->Timesteps.push_back(this->LastTime);
this->Datasets.push_back(polyData);
this->NewData = true;
this->LastTime += 1.0;
}
bool NewData;
int MaxNumberOfDatasets;
double LastTime;
boost::mutex Mutex;
boost::mutex PacketMutex;
std::deque<vtkSmartPointer<vtkPolyData> > Datasets;
std::deque<double> Timesteps;
vtkNew<vtkVelodyneHDLReader> HDLReader;
boost::shared_ptr<SynchronizedQueue<std::string*> > Packets;
boost::shared_ptr<boost::thread> Thread;
};
//----------------------------------------------------------------------------
class PacketFileWriter
{
public:
void ThreadLoop()
{
std::string* packet = 0;
while (this->Packets->dequeue(packet))
{
this->PacketWriter.WritePacket(reinterpret_cast<const unsigned char*>(packet->c_str()), packet->length());
delete packet;
}
}
void Start(const std::string& filename)
{
if (this->Thread)
{
return;
}
if (this->PacketWriter.GetFileName() != filename)
{
this->PacketWriter.Close();
}
if (!this->PacketWriter.IsOpen())
{
if (!this->PacketWriter.Open(filename))
{
vtkGenericWarningMacro("Failed to open packet file: " << filename);
return;
}
}
this->Packets.reset(new SynchronizedQueue<std::string*>);
this->Thread = boost::shared_ptr<boost::thread>(
new boost::thread(boost::bind(&PacketFileWriter::ThreadLoop, this)));
}
void Stop()
{
if (this->Thread)
{
this->Packets->stopQueue();
this->Thread->join();
this->Thread.reset();
this->Packets.reset();
}
}
void Enqueue(std::string* packet)
{
this->Packets->enqueue(packet);
}
bool IsOpen()
{
return this->PacketWriter.IsOpen();
}
void Close()
{
this->PacketWriter.Close();
}
private:
vtkPacketFileWriter PacketWriter;
boost::shared_ptr<boost::thread> Thread;
boost::shared_ptr<SynchronizedQueue<std::string*> > Packets;
};
//----------------------------------------------------------------------------
class PacketNetworkSource
{
public:
void StartReceive()
{
// expecting exactly 1206 bytes, using a larger buffer so that if a
// larger packet arrives unexpectedly we'll notice it.
this->Socket->async_receive(boost::asio::buffer(this->RXBuffer, 1500),
boost::bind(&PacketNetworkSource::SocketCallback, this,
boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred));
}
void SocketCallback(const boost::system::error_code& error, std::size_t numberOfBytes)
{
if (this->ShouldStop)
{
return;
}
//this->Consumer->HandleSensorData(this->RXBuffer, numberOfBytes);
std::string* packet = new std::string(this->RXBuffer, numberOfBytes);
this->Consumer->Enqueue(packet);
if (this->Writer)
{
std::string* packet = new std::string(this->RXBuffer, numberOfBytes);
this->Writer->Enqueue(packet);
}
this->StartReceive();
//static unsigned long packetCounter = 0;
//if ((++packetCounter % 500) == 0)
// {
// printf("total recv packets %lu\n", packetCounter);
// }
}
void ThreadLoop()
{
this->StartReceive();
this->IOService.reset();
this->IOService.run();
}
void Start(int sensorPort)
{
if (this->Thread)
{
return;
}
std::string destinationIp = "192.168.3.255";
this->Socket.reset();
// destinationEndpoint is the socket on this machine where the data packet are received
boost::asio::ip::udp::endpoint destinationEndpoint(boost::asio::ip::address_v4::any(), sensorPort);
//boost::asio::ip::udp::endpoint destinationEndpoint(boost::asio::ip::address::from_string(destinationIp), sensorPort);
try
{
this->Socket = boost::shared_ptr<boost::asio::ip::udp::socket>(new boost::asio::ip::udp::socket(this->IOService));
this->Socket->open(destinationEndpoint.protocol());
this->Socket->bind(destinationEndpoint);
}
catch( std::exception & e )
{
vtkGenericWarningMacro("Caught exception while binding to " << destinationIp << ": " << e.what());
try
{
destinationEndpoint = boost::asio::ip::udp::endpoint(boost::asio::ip::address_v4::any(), sensorPort);
this->Socket = boost::shared_ptr<boost::asio::ip::udp::socket>(new boost::asio::ip::udp::socket(this->IOService));
this->Socket->open(destinationEndpoint.protocol());
this->Socket->bind(destinationEndpoint);
}
catch( std::exception & e )
{
vtkGenericWarningMacro("Caught Exception: " << e.what());
return;
}
}
this->ShouldStop = false;
this->Thread = boost::shared_ptr<boost::thread>(
new boost::thread(boost::bind(&PacketNetworkSource::ThreadLoop, this)));
}
void Stop()
{
this->ShouldStop = true;
if (this->Thread)
{
this->Socket->close();
this->IOService.stop();
this->Thread->join();
this->Thread.reset();
}
}
bool ShouldStop;
char RXBuffer[1500];
boost::asio::io_service IOService;
boost::shared_ptr<boost::asio::ip::udp::socket> Socket;
boost::shared_ptr<boost::thread> Thread;
boost::shared_ptr<PacketConsumer> Consumer;
boost::shared_ptr<PacketFileWriter> Writer;
};
//----------------------------------------------------------------------------
class PacketFileSource
{
public:
void ThreadLoop()
{
while (!this->ShouldStop)
{
if (!this->ReadNextPacket())
{
break;
}
//boost::this_thread::sleep(boost::posix_time::microseconds(100));
}
}
bool Open(const std::string& filename)
{
if (this->PacketReader.GetFileName() != filename)
{
this->PacketReader.Close();
}
if (!this->PacketReader.IsOpen())
{
if (!this->PacketReader.Open(filename))
{
vtkGenericWarningMacro("Failed to open packet file: " << filename);
return false;
}
}
return true;
}
bool ReadNextPacket()
{
const unsigned char* data = 0;
unsigned int dataLength = 0;
double timeSinceStart = 0;
if (!this->PacketReader.NextPacket(data, dataLength, timeSinceStart))
{
return false;
}
this->Consumer->HandleSensorData(data, dataLength);
return true;
}
bool ReadNextFrame()
{
if (this->Thread)
{
vtkGenericWarningMacro("ReadNextFrame() called while thread is active.");
return false;
}
// todo - handle end of file packets that create a partial frame
while (this->ReadNextPacket())
{
if (this->Consumer->CheckForNewData())
{
return true;
}
}
return false;
}
void Start(const std::string& filename)
{
if (this->Thread)
{
return;
}
this->ShouldStop = false;
this->Thread = boost::shared_ptr<boost::thread>(
new boost::thread(boost::bind(&PacketFileSource::ThreadLoop, this)));
}
void Stop()
{
this->ShouldStop = true;
if (this->Thread)
{
this->Thread->join();
this->Thread.reset();
}
}
bool ShouldStop;
vtkPacketFileReader PacketReader;
boost::shared_ptr<boost::thread> Thread;
boost::shared_ptr<PacketConsumer> Consumer;
};
} // end namespace
//----------------------------------------------------------------------------
class vtkVelodyneHDLSource::vtkInternal
{
public:
vtkInternal()
{
this->Consumer = boost::shared_ptr<PacketConsumer>(new PacketConsumer);
this->Writer = boost::shared_ptr<PacketFileWriter>(new PacketFileWriter);
this->NetworkSource.Consumer = this->Consumer;
this->FileSource.Consumer = this->Consumer;
}
~vtkInternal()
{
}
boost::shared_ptr<PacketConsumer> Consumer;
boost::shared_ptr<PacketFileWriter> Writer;
PacketNetworkSource NetworkSource;
PacketFileSource FileSource;
};
//----------------------------------------------------------------------------
vtkStandardNewMacro(vtkVelodyneHDLSource);
//----------------------------------------------------------------------------
vtkVelodyneHDLSource::vtkVelodyneHDLSource()
{
this->Internal = new vtkInternal;
this->SensorPort = 2368;
this->SetNumberOfInputPorts(0);
this->SetNumberOfOutputPorts(1);
}
//----------------------------------------------------------------------------
vtkVelodyneHDLSource::~vtkVelodyneHDLSource()
{
this->Stop();
delete this->Internal;
}
//-----------------------------------------------------------------------------
const std::string& vtkVelodyneHDLSource::GetPacketFile()
{
return this->PacketFile;
}
//-----------------------------------------------------------------------------
void vtkVelodyneHDLSource::SetPacketFile(const std::string& filename)
{
if (filename == this->GetPacketFile())
{
return;
}
this->PacketFile = filename;
this->Modified();
}
//-----------------------------------------------------------------------------
const std::string& vtkVelodyneHDLSource::GetOutputFile()
{
return this->OutputFile;
}
//-----------------------------------------------------------------------------
void vtkVelodyneHDLSource::SetOutputFile(const std::string& filename)
{
if (filename == this->GetOutputFile())
{
return;
}
this->Internal->Writer->Close();
this->OutputFile = filename;
this->Modified();
}
//-----------------------------------------------------------------------------
const std::string& vtkVelodyneHDLSource::GetCorrectionsFile()
{
return this->Internal->Consumer->GetReader()->GetCorrectionsFile();
}
//-----------------------------------------------------------------------------
void vtkVelodyneHDLSource::SetCorrectionsFile(const std::string& filename)
{
if (filename == this->GetCorrectionsFile())
{
return;
}
this->Internal->Consumer->GetReader()->SetCorrectionsFile(filename);
this->Modified();
}
//----------------------------------------------------------------------------
void vtkVelodyneHDLSource::Start()
{
if (this->PacketFile.length())
{
this->Internal->FileSource.Start(this->PacketFile);
}
else
{
if (this->OutputFile.length())
{
this->Internal->Writer->Start(this->OutputFile);
}
this->Internal->NetworkSource.Writer.reset();
if (this->Internal->Writer->IsOpen())
{
this->Internal->NetworkSource.Writer = this->Internal->Writer;
}
this->Internal->Consumer->Start();
this->Internal->NetworkSource.Start(this->SensorPort);
}
}
//----------------------------------------------------------------------------
void vtkVelodyneHDLSource::Stop()
{
this->Internal->FileSource.Stop();
this->Internal->NetworkSource.Stop();
this->Internal->Consumer->Stop();
this->Internal->Writer->Stop();
}
//----------------------------------------------------------------------------
void vtkVelodyneHDLSource::ReadNextFrame()
{
if (this->PacketFile.length())
{
if (!this->Internal->FileSource.Open(this->PacketFile))
{
return;
}
if (this->Internal->FileSource.ReadNextFrame())
{
this->Modified();
}
}
}
//----------------------------------------------------------------------------
void vtkVelodyneHDLSource::Poll()
{
if (this->Internal->Consumer->CheckForNewData())
{
this->Modified();
}
}
//----------------------------------------------------------------------------
int vtkVelodyneHDLSource::GetCacheSize()
{
return this->Internal->Consumer->GetMaxNumberOfDatasets();
}
//----------------------------------------------------------------------------
void vtkVelodyneHDLSource::SetCacheSize(int cacheSize)
{
if (cacheSize == this->GetCacheSize())
{
return;
}
this->Internal->Consumer->SetMaxNumberOfDatasets(cacheSize);
this->Modified();
}
//-----------------------------------------------------------------------------
int vtkVelodyneHDLSource::RequestInformation(vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
vtkInformation *outInfo = outputVector->GetInformationObject(0);
std::vector<double> timesteps = this->Internal->Consumer->GetTimesteps();
const size_t nTimesteps = timesteps.size();
if (nTimesteps > 0)
{
outInfo->Set(vtkStreamingDemandDrivenPipeline::TIME_STEPS(), ×teps.front(), static_cast<int>(nTimesteps));
}
else
{
outInfo->Remove(vtkStreamingDemandDrivenPipeline::TIME_STEPS());
}
double timeRange[2] = {0, nTimesteps ? nTimesteps - 1 : 0};
outInfo->Set(vtkStreamingDemandDrivenPipeline::TIME_RANGE(), timeRange, 2);
return 1;
}
//----------------------------------------------------------------------------
int vtkVelodyneHDLSource::RequestData(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
vtkInformation *outInfo = outputVector->GetInformationObject(0);
vtkDataSet *output = vtkDataSet::SafeDownCast(outInfo->Get(vtkDataObject::DATA_OBJECT()));
double timeRequest = 0;
if (outInfo->Has(vtkStreamingDemandDrivenPipeline::UPDATE_TIME_STEPS()))
{
timeRequest = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_TIME_STEPS())[0];
}
double actualTime;
vtkSmartPointer<vtkPolyData> polyData = this->Internal->Consumer->GetDatasetForTime(timeRequest, actualTime);
if (polyData)
{
//printf("request %f, returning %f\n", timeRequest, actualTime);
//output->GetInformation()->Set(vtkDataObject::DATA_TIME_STEP(), actualTime);
output->ShallowCopy(polyData);
}
return 1;
}
//----------------------------------------------------------------------------
void vtkVelodyneHDLSource::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}