summaryrefslogtreecommitdiff
path: root/api/franca/navigation/src-gen/org/genivi/navigation/poiservice/POIServiceTypes.cpp
blob: 021a56e357c8da18663769ba7059a603fa8f3229 (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
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
/*
* This file was generated by the CommonAPI Generators.
* Used org.genivi.commonapi.core 2.1.6.v20140519.
* Used org.franca.core 0.8.11.201401091023.
*
* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
* If a copy of the MPL was not distributed with this file, You can obtain one at
* http://mozilla.org/MPL/2.0/.
*/
#include "POIServiceTypes.h"


namespace org {
namespace genivi {
namespace navigation {
namespace poiservice {
namespace POIServiceTypes {













Details::Details(const std::vector<CategoryID>& parentsIdValue, const Icon& iconsValue, const std::string& nameValue, const std::string& shortDescValue, const Media& mediaValue):
        parentsId(parentsIdValue),
        icons(iconsValue),
        name(nameValue),
        shortDesc(shortDescValue),
        media(mediaValue)
{
}


bool operator==(const Details& lhs, const Details& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.parentsId == rhs.parentsId &&
        lhs.icons == rhs.icons &&
        lhs.name == rhs.name &&
        lhs.shortDesc == rhs.shortDesc &&
        lhs.media == rhs.media
    ;
}

void Details::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> parentsId;
    inputStream >> icons;
    inputStream >> name;
    inputStream >> shortDesc;
    inputStream >> media;
}

void Details::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << parentsId;
    outputStream << icons;
    outputStream << name;
    outputStream << shortDesc;
    outputStream << media;
}

Operator::Operator(const OperatorType& typeValue, const std::string& nameValue, const AttributeValue& valueValue):
        type(typeValue),
        name(nameValue),
        value(valueValue)
{
}


bool operator==(const Operator& lhs, const Operator& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.type == rhs.type &&
        lhs.name == rhs.name &&
        lhs.value == rhs.value
    ;
}

void Operator::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> type;
    inputStream >> name;
    inputStream >> value;
}

void Operator::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << type;
    outputStream << name;
    outputStream << value;
}

CategoryAttribute::CategoryAttribute(const AttributeID& idValue, const std::string& nameValue, const AttributeType& typeValue, const std::vector<Operator>& operatorsValue):
        id(idValue),
        name(nameValue),
        type(typeValue),
        operators(operatorsValue)
{
}


bool operator==(const CategoryAttribute& lhs, const CategoryAttribute& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.id == rhs.id &&
        lhs.name == rhs.name &&
        lhs.type == rhs.type &&
        lhs.operators == rhs.operators
    ;
}

void CategoryAttribute::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> id;
    inputStream >> name;
    inputStream >> type;
    inputStream >> operators;
}

void CategoryAttribute::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << id;
    outputStream << name;
    outputStream << type;
    outputStream << operators;
}

CategorySortOption::CategorySortOption(const CategoryID& idValue, const std::string& nameValue):
        id(idValue),
        name(nameValue)
{
}


bool operator==(const CategorySortOption& lhs, const CategorySortOption& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.id == rhs.id &&
        lhs.name == rhs.name
    ;
}

void CategorySortOption::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> id;
    inputStream >> name;
}

void CategorySortOption::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << id;
    outputStream << name;
}

CAMCategory::CAMCategory(const Details& detailsValue, const std::vector<CategoryAttribute>& attributesValue, const std::vector<CategorySortOption>& sortOptionsValue):
        details(detailsValue),
        attributes(attributesValue),
        sortOptions(sortOptionsValue)
{
}


bool operator==(const CAMCategory& lhs, const CAMCategory& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.details == rhs.details &&
        lhs.attributes == rhs.attributes &&
        lhs.sortOptions == rhs.sortOptions
    ;
}

void CAMCategory::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> details;
    inputStream >> attributes;
    inputStream >> sortOptions;
}

void CAMCategory::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << details;
    outputStream << attributes;
    outputStream << sortOptions;
}

CAMCategoryUpdate::CAMCategoryUpdate(const CategoryID& idValue, const std::vector<CategoryAttribute>& attributesValue, const std::vector<CategorySortOption>& sortOptionsValue):
        id(idValue),
        attributes(attributesValue),
        sortOptions(sortOptionsValue)
{
}


bool operator==(const CAMCategoryUpdate& lhs, const CAMCategoryUpdate& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.id == rhs.id &&
        lhs.attributes == rhs.attributes &&
        lhs.sortOptions == rhs.sortOptions
    ;
}

void CAMCategoryUpdate::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> id;
    inputStream >> attributes;
    inputStream >> sortOptions;
}

void CAMCategoryUpdate::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << id;
    outputStream << attributes;
    outputStream << sortOptions;
}

PoiAttribute::PoiAttribute(const AttributeID& idValue, const AttributeType& typeValue, const AttributeValue& valueValue):
        id(idValue),
        type(typeValue),
        value(valueValue)
{
}


bool operator==(const PoiAttribute& lhs, const PoiAttribute& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.id == rhs.id &&
        lhs.type == rhs.type &&
        lhs.value == rhs.value
    ;
}

void PoiAttribute::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> id;
    inputStream >> type;
    inputStream >> value;
}

void PoiAttribute::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << id;
    outputStream << type;
    outputStream << value;
}

CategoryAndRadius::CategoryAndRadius(const CategoryID& idValue, const uint32_t& radiusValue):
        id(idValue),
        radius(radiusValue)
{
}


bool operator==(const CategoryAndRadius& lhs, const CategoryAndRadius& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.id == rhs.id &&
        lhs.radius == rhs.radius
    ;
}

void CategoryAndRadius::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> id;
    inputStream >> radius;
}

void CategoryAndRadius::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << id;
    outputStream << radius;
}

PoiDetails::PoiDetails(const POI_ID& idValue, const std::string& nameValue, const NavigationTypes::Coordinate3D& locationValue):
        id(idValue),
        name(nameValue),
        location(locationValue)
{
}


bool operator==(const PoiDetails& lhs, const PoiDetails& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.id == rhs.id &&
        lhs.name == rhs.name &&
        lhs.location == rhs.location
    ;
}

void PoiDetails::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> id;
    inputStream >> name;
    inputStream >> location;
}

void PoiDetails::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << id;
    outputStream << name;
    outputStream << location;
}

SearchResultDetails::SearchResultDetails(const PoiDetails& detailsValue, const std::vector<CategoryID>& categoriesValue, const std::vector<PoiAttribute>& attributesValue):
        details(detailsValue),
        categories(categoriesValue),
        attributes(attributesValue)
{
}


bool operator==(const SearchResultDetails& lhs, const SearchResultDetails& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.details == rhs.details &&
        lhs.categories == rhs.categories &&
        lhs.attributes == rhs.attributes
    ;
}

void SearchResultDetails::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> details;
    inputStream >> categories;
    inputStream >> attributes;
}

void SearchResultDetails::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << details;
    outputStream << categories;
    outputStream << attributes;
}

SearchResult::SearchResult(const POI_ID& idValue, const uint32_t& distanceValue, const uint16_t& routeStatusValue, const std::vector<PoiAttribute>& attributesValue):
        id(idValue),
        distance(distanceValue),
        routeStatus(routeStatusValue),
        attributes(attributesValue)
{
}


bool operator==(const SearchResult& lhs, const SearchResult& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.id == rhs.id &&
        lhs.distance == rhs.distance &&
        lhs.routeStatus == rhs.routeStatus &&
        lhs.attributes == rhs.attributes
    ;
}

void SearchResult::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> id;
    inputStream >> distance;
    inputStream >> routeStatus;
    inputStream >> attributes;
}

void SearchResult::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << id;
    outputStream << distance;
    outputStream << routeStatus;
    outputStream << attributes;
}

PoiCAMDetails::PoiCAMDetails(const POI_ID& sourceIdValue, const std::string& nameValue, const CategoryID& categoryValue, const NavigationTypes::Coordinate3D& locationValue, const uint16_t& distanceValue, const std::vector<PoiAttribute>& attributesValue):
        sourceId(sourceIdValue),
        name(nameValue),
        category(categoryValue),
        location(locationValue),
        distance(distanceValue),
        attributes(attributesValue)
{
}


bool operator==(const PoiCAMDetails& lhs, const PoiCAMDetails& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.sourceId == rhs.sourceId &&
        lhs.name == rhs.name &&
        lhs.category == rhs.category &&
        lhs.location == rhs.location &&
        lhs.distance == rhs.distance &&
        lhs.attributes == rhs.attributes
    ;
}

void PoiCAMDetails::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> sourceId;
    inputStream >> name;
    inputStream >> category;
    inputStream >> location;
    inputStream >> distance;
    inputStream >> attributes;
}

void PoiCAMDetails::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << sourceId;
    outputStream << name;
    outputStream << category;
    outputStream << location;
    outputStream << distance;
    outputStream << attributes;
}

AttributeDetails::AttributeDetails(const AttributeID& idValue, const CategoryID& categoryIdValue, const AttributeType& typeValue, const AttributeValue& valueValue, const OperatorType& operValue, const bool& mandatoryValue):
        id(idValue),
        categoryId(categoryIdValue),
        type(typeValue),
        value(valueValue),
        oper(operValue),
        mandatory(mandatoryValue)
{
}


bool operator==(const AttributeDetails& lhs, const AttributeDetails& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.id == rhs.id &&
        lhs.categoryId == rhs.categoryId &&
        lhs.type == rhs.type &&
        lhs.value == rhs.value &&
        lhs.oper == rhs.oper &&
        lhs.mandatory == rhs.mandatory
    ;
}

void AttributeDetails::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> id;
    inputStream >> categoryId;
    inputStream >> type;
    inputStream >> value;
    inputStream >> oper;
    inputStream >> mandatory;
}

void AttributeDetails::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << id;
    outputStream << categoryId;
    outputStream << type;
    outputStream << value;
    outputStream << oper;
    outputStream << mandatory;
}

CategoryDetails::CategoryDetails(const CategoryID& uniqueIdValue, const std::vector<CategoryID>& parentsIdValue, const Icon& iconsValue, const std::string& nameValue, const bool& topLevelValue, const std::string& descriptionValue, const Media& mediaValue):
        uniqueId(uniqueIdValue),
        parentsId(parentsIdValue),
        icons(iconsValue),
        name(nameValue),
        topLevel(topLevelValue),
        description(descriptionValue),
        media(mediaValue)
{
}


bool operator==(const CategoryDetails& lhs, const CategoryDetails& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.uniqueId == rhs.uniqueId &&
        lhs.parentsId == rhs.parentsId &&
        lhs.icons == rhs.icons &&
        lhs.name == rhs.name &&
        lhs.topLevel == rhs.topLevel &&
        lhs.description == rhs.description &&
        lhs.media == rhs.media
    ;
}

void CategoryDetails::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> uniqueId;
    inputStream >> parentsId;
    inputStream >> icons;
    inputStream >> name;
    inputStream >> topLevel;
    inputStream >> description;
    inputStream >> media;
}

void CategoryDetails::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << uniqueId;
    outputStream << parentsId;
    outputStream << icons;
    outputStream << name;
    outputStream << topLevel;
    outputStream << description;
    outputStream << media;
}

Category::Category(const CategoryDetails& detailsValue, const std::vector<CategoryAttribute>& attributesValue, const std::vector<CategorySortOption>& sortOptionsValue):
        details(detailsValue),
        attributes(attributesValue),
        sortOptions(sortOptionsValue)
{
}


bool operator==(const Category& lhs, const Category& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.details == rhs.details &&
        lhs.attributes == rhs.attributes &&
        lhs.sortOptions == rhs.sortOptions
    ;
}

void Category::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> details;
    inputStream >> attributes;
    inputStream >> sortOptions;
}

void Category::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << details;
    outputStream << attributes;
    outputStream << sortOptions;
}

CategoryAndLevel::CategoryAndLevel(const CategoryID& uniqueIdValue, const bool& topLevelValue):
        uniqueId(uniqueIdValue),
        topLevel(topLevelValue)
{
}


bool operator==(const CategoryAndLevel& lhs, const CategoryAndLevel& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.uniqueId == rhs.uniqueId &&
        lhs.topLevel == rhs.topLevel
    ;
}

void CategoryAndLevel::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> uniqueId;
    inputStream >> topLevel;
}

void CategoryAndLevel::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << uniqueId;
    outputStream << topLevel;
}

CategoryAndName::CategoryAndName(const CategoryID& uniqueIdValue, const std::string& nameValue, const bool& topLevelValue):
        uniqueId(uniqueIdValue),
        name(nameValue),
        topLevel(topLevelValue)
{
}


bool operator==(const CategoryAndName& lhs, const CategoryAndName& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.uniqueId == rhs.uniqueId &&
        lhs.name == rhs.name &&
        lhs.topLevel == rhs.topLevel
    ;
}

void CategoryAndName::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> uniqueId;
    inputStream >> name;
    inputStream >> topLevel;
}

void CategoryAndName::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << uniqueId;
    outputStream << name;
    outputStream << topLevel;
}

CategoryAndReason::CategoryAndReason(const CategoryID& unique_idValue, const uint16_t& reasonValue):
        unique_id(unique_idValue),
        reason(reasonValue)
{
}


bool operator==(const CategoryAndReason& lhs, const CategoryAndReason& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.unique_id == rhs.unique_id &&
        lhs.reason == rhs.reason
    ;
}

void CategoryAndReason::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> unique_id;
    inputStream >> reason;
}

void CategoryAndReason::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << unique_id;
    outputStream << reason;
}

CategoryAndStatus::CategoryAndStatus(const CategoryID& uniqueIdValue, const bool& statusValue):
        uniqueId(uniqueIdValue),
        status(statusValue)
{
}


bool operator==(const CategoryAndStatus& lhs, const CategoryAndStatus& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.uniqueId == rhs.uniqueId &&
        lhs.status == rhs.status
    ;
}

void CategoryAndStatus::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> uniqueId;
    inputStream >> status;
}

void CategoryAndStatus::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << uniqueId;
    outputStream << status;
}

PoiAddedDetails::PoiAddedDetails(const std::string& nameValue, const NavigationTypes::Coordinate3D& locationValue, const std::vector<PoiAttribute>& attributesValue):
        name(nameValue),
        location(locationValue),
        attributes(attributesValue)
{
}


bool operator==(const PoiAddedDetails& lhs, const PoiAddedDetails& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.name == rhs.name &&
        lhs.location == rhs.location &&
        lhs.attributes == rhs.attributes
    ;
}

void PoiAddedDetails::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> name;
    inputStream >> location;
    inputStream >> attributes;
}

void PoiAddedDetails::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << name;
    outputStream << location;
    outputStream << attributes;
}

Locales::Locales(const std::string& languageCodeValue, const std::string& countryCodeValue, const std::string& scriptCodeValue):
        languageCode(languageCodeValue),
        countryCode(countryCodeValue),
        scriptCode(scriptCodeValue)
{
}


bool operator==(const Locales& lhs, const Locales& rhs) {
    if (&lhs == &rhs)
        return true;

    return
        lhs.languageCode == rhs.languageCode &&
        lhs.countryCode == rhs.countryCode &&
        lhs.scriptCode == rhs.scriptCode
    ;
}

void Locales::readFromInputStream(CommonAPI::InputStream& inputStream) {
    inputStream >> languageCode;
    inputStream >> countryCode;
    inputStream >> scriptCode;
}

void Locales::writeToOutputStream(CommonAPI::OutputStream& outputStream) const {
    outputStream << languageCode;
    outputStream << countryCode;
    outputStream << scriptCode;
}

} // namespace POIServiceTypes
} // namespace poiservice
} // namespace navigation
} // namespace genivi
} // namespace org