KItinerary

fcbticket2.h
1/*
2 SPDX-FileCopyrightText: 2022-2025 Volker Krause <vkrause@kde.org>
3 SPDX-License-Identifier: LGPL-2.0-or-later
4*/
5
6#ifndef KITINERARY_FCBTICKET2_H
7#define KITINERARY_FCBTICKET2_H
8
9#include <KItinerary/Uic9183Block>
10
11#include "asn1/uperelement.h"
12
13#include <QDateTime>
14#include <QList>
15#include <QVariant>
16
17namespace KItinerary {
18
19class UPERDecoder;
20
21/** ERA Flexible Content Barcode (FCB) version 2
22 * @see ERA TAP TSI TD B.12 ยง11 and the corresponding ASN.1 definition
23 * @see https://github.com/UnionInternationalCheminsdeFer/UIC-barcode
24 */
25namespace Fcb {
26namespace v2 {
27
28Q_NAMESPACE
29
30/** Generic extension data. */
32 UPER_GADGET
33 UPER_ELEMENT(QByteArray, extensionId)
34 UPER_ELEMENT(QByteArray, extensionData)
35 UPER_GADGET_FINALIZE
36};
37
38enum GeoUnitType {
39 microDegree = 0,
40 tenthmilliDegree = 1,
41 milliDegree = 2,
42 centiDegree = 3,
43 deciDegree = 4,
44};
45UPER_ENUM(GeoUnitType)
46
47enum GeoCoordinateSystemType {
48 wgs84 = 0,
49 grs80 = 1,
50};
51UPER_ENUM(GeoCoordinateSystemType)
52
53enum HemisphereLongitudeType {
54 north = 0,
55 south = 1,
56};
57UPER_ENUM(HemisphereLongitudeType)
58
59enum HemisphereLatitudeType {
60 east = 0,
61 west = 1,
62};
63UPER_ENUM(HemisphereLatitudeType)
64
65/** Geographic coordinate. */
67 UPER_GADGET
68 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::GeoUnitType, geoUnit, milliDegree)
69 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::GeoCoordinateSystemType, coordinateSystem, wgs84)
70 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::HemisphereLongitudeType, hemisphereLongitude, north)
71 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::HemisphereLatitudeType, hemisphereLatitude, east)
72 UPER_ELEMENT(int, longitude)
73 UPER_ELEMENT(int, latitude)
74 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::GeoUnitType, accuracy)
75 UPER_GADGET_FINALIZE
76};
77
78/** Delta encoding of a geographic coordinate. */
80 UPER_GADGET
81 UPER_ELEMENT(int, longitude)
82 UPER_ELEMENT(int, latitude)
83 UPER_GADGET_FINALIZE
84};
85
86/** Issuing information. */
88 UPER_EXTENDABLE_GADGET
89 UPER_ELEMENT_OPTIONAL(int, securityProviderNum)
90 UPER_ELEMENT_OPTIONAL(QByteArray, securityProviderIA5)
91 UPER_ELEMENT_OPTIONAL(int, issuerNum)
92 UPER_ELEMENT_OPTIONAL(QByteArray, issuerIA5)
93 UPER_ELEMENT(int, issuingYear)
94 UPER_ELEMENT(int, issuingDay)
95 UPER_ELEMENT_OPTIONAL(int, issuingTime)
96 UPER_ELEMENT_OPTIONAL(QString, issuerName)
97 UPER_ELEMENT(bool, specimen)
98 UPER_ELEMENT(bool, securePaperTicket)
99 UPER_ELEMENT(bool, activated)
100 UPER_ELEMENT_DEFAULT(QByteArray, currency, "EUR")
101 UPER_ELEMENT_DEFAULT(int, currencyFract, 2)
102 UPER_ELEMENT_OPTIONAL(QByteArray, issuerPNR)
103 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
104 UPER_ELEMENT_OPTIONAL(int, issuedOnTrainNum)
105 UPER_ELEMENT_OPTIONAL(QByteArray, issuedOnTrainIA5)
106 UPER_ELEMENT_OPTIONAL(int, issuedOnLine)
107 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::GeoCoordinateType, pointOfSale)
108 UPER_GADGET_FINALIZE
109
110 Q_PROPERTY(QDateTime issueingDateTime READ issueingDateTime)
111public:
112 [[nodiscard]] QDateTime issueingDateTime() const;
113};
114
115enum GenderType {
116 unspecified = 0,
117 female = 1,
118 male = 2,
119 other = 3,
120};
121UPER_EXTENABLE_ENUM(GenderType)
122
123enum PassengerType {
124 adult = 0,
125 senior = 1,
126 child = 2,
127 youth = 3,
128 dog = 4,
129 bicycle = 5,
130 freeAddonPassenger = 6,
131 freeAddonChild = 7,
132};
133UPER_EXTENABLE_ENUM(PassengerType)
134
135/** Customer status information. */
137 UPER_GADGET
138 UPER_ELEMENT_OPTIONAL(int, statusProviderNum)
139 UPER_ELEMENT_OPTIONAL(QByteArray, statusProviderIA5)
140 UPER_ELEMENT_OPTIONAL(int, customerStatus)
141 UPER_ELEMENT_OPTIONAL(QByteArray, customerStatusDescr)
142 UPER_GADGET_FINALIZE
143};
144
145/** Information about a single traveler. */
147 UPER_EXTENDABLE_GADGET
148 UPER_ELEMENT_OPTIONAL(QString, firstName)
149 UPER_ELEMENT_OPTIONAL(QString, secondName)
150 UPER_ELEMENT_OPTIONAL(QString, lastName)
151 UPER_ELEMENT_OPTIONAL(QByteArray, idCard)
152 UPER_ELEMENT_OPTIONAL(QByteArray, passportId)
153 UPER_ELEMENT_OPTIONAL(QByteArray, title)
154 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::GenderType, gender)
155 UPER_ELEMENT_OPTIONAL(QByteArray, customerIdIA5)
156 UPER_ELEMENT_OPTIONAL(int, customerIdNum)
157 UPER_ELEMENT_OPTIONAL(int, yearOfBirth)
158 UPER_ELEMENT_OPTIONAL(int, monthOfBirth)
159 UPER_ELEMENT_OPTIONAL(int, dayOfBirthInMonth)
160 UPER_ELEMENT(bool, ticketHolder)
161 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::PassengerType, passengerType)
162 UPER_ELEMENT_OPTIONAL(bool, passengerWithReducedMobility)
163 UPER_ELEMENT_OPTIONAL(int, countryOfResidence)
164 UPER_ELEMENT_OPTIONAL(int, countryOfPassport)
165 UPER_ELEMENT_OPTIONAL(int, countryOfIdCard)
166 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::CustomerStatusType>, status)
167 UPER_GADGET_FINALIZE
168};
169
170/** A set of traverlers. */
172 UPER_EXTENDABLE_GADGET
173 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::TravelerType>, traveler)
174 UPER_ELEMENT_OPTIONAL(QByteArray, preferredLanguage)
175 UPER_ELEMENT_OPTIONAL(QString, groupName)
176 UPER_GADGET_FINALIZE
177};
178
179enum CodeTableType {
180 stationUIC = 0,
181 stationUICReservation = 1,
182 stationERA = 2,
183 localCarrierStationCodeTable = 3,
184 proprietaryIssuerStationCodeTable = 4,
185};
186UPER_ENUM(CodeTableType)
187
188/** Reference to a specific train journey. */
190 UPER_GADGET
191 UPER_ELEMENT_OPTIONAL(int, trainNum)
192 UPER_ELEMENT_OPTIONAL(QByteArray, trainIA5)
193 UPER_ELEMENT(int, travelDate)
194 UPER_ELEMENT(int, departureTime)
195 UPER_ELEMENT_OPTIONAL(int, departureUTCOffset)
196 UPER_ELEMENT_OPTIONAL(int, fromStationNum)
197 UPER_ELEMENT_OPTIONAL(QByteArray, fromStationIA5)
198 UPER_ELEMENT_OPTIONAL(int, toStationNum)
199 UPER_ELEMENT_OPTIONAL(QByteArray, toStationIA5)
200 UPER_ELEMENT_OPTIONAL(QString, fromStationNameUTF8)
201 UPER_ELEMENT_OPTIONAL(QString, toStationNameUTF8)
202 UPER_GADGET_FINALIZE
203
204public:
205 Q_INVOKABLE [[nodiscard]] QDateTime departureDateTime(const QDateTime &issueingDateTime) const;
206};
207
208/** A set of via stations. */
210 UPER_EXTENDABLE_GADGET
211 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
212 UPER_ELEMENT_OPTIONAL(int, stationNum)
213 UPER_ELEMENT_OPTIONAL(QByteArray, stationIA5)
214 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::ViaStationType>, alternativeRoutes)
215 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::ViaStationType>, route)
216 UPER_ELEMENT(bool, border)
217 UPER_ELEMENT_OPTIONAL(QList<int>, carrierNum)
218 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, carrierIA5)
219 UPER_ELEMENT_OPTIONAL(int, seriesId)
220 UPER_ELEMENT_OPTIONAL(int, routeId)
221 UPER_ELEMENT_OPTIONAL(QList<int>, includedServiceBrands)
222 UPER_ELEMENT_OPTIONAL(QList<int>, excludedServiceBrands)
223 UPER_GADGET_FINALIZE
224};
225
226/** A tariff zone. */
227class ZoneType {
228 UPER_EXTENDABLE_GADGET
229 UPER_ELEMENT_OPTIONAL(int, carrierNum)
230 UPER_ELEMENT_OPTIONAL(QByteArray, carrierIA5)
231 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
232 UPER_ELEMENT_OPTIONAL(int, entryStationNum)
233 UPER_ELEMENT_OPTIONAL(QByteArray, entryStationIA5)
234 UPER_ELEMENT_OPTIONAL(int, terminatingStationNum)
235 UPER_ELEMENT_OPTIONAL(QByteArray, terminatingStationIA5)
236 UPER_ELEMENT_OPTIONAL(int, city)
237 UPER_ELEMENT_OPTIONAL(QList<int>, zoneId)
238 UPER_ELEMENT_OPTIONAL(QByteArray, binaryZoneId)
239 UPER_ELEMENT_OPTIONAL(QByteArray, nutsCode)
240 UPER_GADGET_FINALIZE
241};
242
243/** */
244class LineType {
245 UPER_EXTENDABLE_GADGET
246 UPER_ELEMENT_OPTIONAL(int, carrierNum)
247 UPER_ELEMENT_OPTIONAL(QByteArray, carrierIA5)
248 UPER_ELEMENT_OPTIONAL(QList<int>, lineId)
249 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
250 UPER_ELEMENT_OPTIONAL(int, entryStationNum)
251 UPER_ELEMENT_OPTIONAL(QByteArray, entryStationIA5)
252 UPER_ELEMENT_OPTIONAL(int, terminatingStationNum)
253 UPER_ELEMENT_OPTIONAL(QByteArray, terminatingStationIA5)
254 UPER_ELEMENT_OPTIONAL(int, city)
255 UPER_GADGET_FINALIZE
256};
257
258/** A geographic polygon. */
260 UPER_GADGET
261 UPER_ELEMENT(KItinerary::Fcb::v2::GeoCoordinateType, firstEdge)
263 UPER_GADGET_FINALIZE
264};
265
266/** Regional validity information.
267 * Can be one of:
268 * - TrainLinkType
269 * - ViaStationType
270 * - ZoneType
271 * - LineType
272 * - PolygoneType
273 */
275 UPER_EXTENDABLE_GADGET
276 UPER_ELEMENT(QVariant, value)
277 UPER_GADGET_FINALIZE
278};
279
280class ReturnRouteDescriptionType {
281 UPER_EXTENDABLE_GADGET
282 UPER_ELEMENT_OPTIONAL(int, fromStationNum)
283 UPER_ELEMENT_OPTIONAL(QByteArray, fromStationIA5)
284 UPER_ELEMENT_OPTIONAL(int, toStationNum)
285 UPER_ELEMENT_OPTIONAL(QByteArray, toStationIA5)
286 UPER_ELEMENT_OPTIONAL(QString, fromStationNameUTF8)
287 UPER_ELEMENT_OPTIONAL(QString, toStationNameUTF8)
288 UPER_ELEMENT_OPTIONAL(QString, validReturnRegionDesc)
289 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::RegionalValidityType>, validReturnRegion)
290 UPER_GADGET_FINALIZE
291};
292
293enum TravelClassType {
294 notApplicable = 0,
295 first = 1,
296 second = 2,
297 tourist = 3,
298 comfort = 4,
299 premium = 5,
300 business = 6,
301 all = 7,
302 premiumFirst = 8,
303 standardFirst = 9,
304 premiumSecond = 10,
305 standardSecond = 11,
306};
307UPER_EXTENABLE_ENUM(TravelClassType)
308
309class RouteSectionType {
310 UPER_GADGET
311 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
312 UPER_ELEMENT_OPTIONAL(int, fromStationNum)
313 UPER_ELEMENT_OPTIONAL(QByteArray, fromStationIA5)
314 UPER_ELEMENT_OPTIONAL(int, toStationNum)
315 UPER_ELEMENT_OPTIONAL(QByteArray, toStationIA5)
316 UPER_ELEMENT_OPTIONAL(QString, fromStationNameUTF8)
317 UPER_ELEMENT_OPTIONAL(QString, toStationNameUTF8)
318 UPER_GADGET_FINALIZE
319};
320
321class SeriesDetailType {
322 UPER_GADGET
323 UPER_ELEMENT_OPTIONAL(int, supplyingCarrier)
324 UPER_ELEMENT_OPTIONAL(int, offerIdentification)
325 UPER_ELEMENT_OPTIONAL(int, series)
326 UPER_GADGET_FINALIZE
327};
328
329/** Customer card information. */
331 UPER_EXTENDABLE_GADGET
332 UPER_ELEMENT_OPTIONAL(int, cardIssuerNum)
333 UPER_ELEMENT_OPTIONAL(QByteArray, cardIssuerIA5)
334 UPER_ELEMENT_OPTIONAL(int, cardIdNum)
335 UPER_ELEMENT_OPTIONAL(QByteArray, cardIdIA5)
336 UPER_ELEMENT_OPTIONAL(QString, cardName)
337 UPER_ELEMENT_OPTIONAL(int, cardType)
338 UPER_ELEMENT_OPTIONAL(int, leadingCardIdNum)
339 UPER_ELEMENT_OPTIONAL(QByteArray, leadingCardIdIA5)
340 UPER_ELEMENT_OPTIONAL(int, trailingCardIdNum)
341 UPER_ELEMENT_OPTIONAL(QByteArray, trailingCardIdIA5)
342 UPER_GADGET_FINALIZE
343};
344
345enum ServiceType {
346 seat = 0,
347 couchette = 1,
348 berth = 2,
349 carcarriage = 3,
350};
351UPER_ENUM(ServiceType)
352
353/** Seat information. */
355 UPER_GADGET
356 UPER_ELEMENT_OPTIONAL(QByteArray, coach)
357 UPER_ELEMENT_OPTIONAL(QByteArray, placeString)
358 UPER_ELEMENT_OPTIONAL(QString, placeDescription)
359 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, placeIA5)
360 UPER_ELEMENT_OPTIONAL(QList<int>, placeNum)
361 UPER_GADGET_FINALIZE
362};
363
364enum class CompartmentPositionType {
365 unspecified = 0, // TODO ambiguous, therefore using enum class for now, but that's not going to work in QML
366 upperLevel = 1,
367 lowerLevel = 2,
368};
369UPER_ENUM(CompartmentPositionType)
370
371/** Compartment information. */
373 UPER_EXTENDABLE_GADGET
374 UPER_ELEMENT_OPTIONAL(int, coachType)
375 UPER_ELEMENT_OPTIONAL(int, compartmentType)
376 UPER_ELEMENT_OPTIONAL(int, specialAllocation)
377 UPER_ELEMENT_OPTIONAL(QString, coachTypeDescr)
378 UPER_ELEMENT_OPTIONAL(QString, compartmentTypeDescr)
379 UPER_ELEMENT_OPTIONAL(QString, specialAllocationDescr)
380 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CompartmentPositionType, position, CompartmentPositionType::unspecified)
381 UPER_GADGET_FINALIZE
382};
383
384enum BerthTypeType {
385 single = 0,
386 special = 1,
387 doubleBerth = 2, // "double" in the spec, but that conflicts
388 t2 = 3,
389 t3 = 4,
390 t4 = 5,
391};
392UPER_ENUM(BerthTypeType)
393
394enum class CompartmentGenderType {
395 unspecified = 0, // TODO see CompartmentPositionType
396 family = 1,
397 female = 2,
398 male = 3,
399 mixed = 4,
400};
401UPER_EXTENABLE_ENUM(CompartmentGenderType)
402
403/** Berth information. */
405 UPER_EXTENDABLE_GADGET
406 UPER_ELEMENT(KItinerary::Fcb::v2::BerthTypeType, berthType)
407 UPER_ELEMENT(int, numberOfBerths)
408 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CompartmentGenderType, gender, CompartmentGenderType::family)
409 UPER_GADGET_FINALIZE
410};
411
412/** Tariff information. */
414 UPER_EXTENDABLE_GADGET
415 UPER_ELEMENT_DEFAULT(int, numberOfPassengers, 1)
416 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::PassengerType, passengerType)
417 UPER_ELEMENT_OPTIONAL(int, ageBelow)
418 UPER_ELEMENT_OPTIONAL(int, ageAbove)
419 UPER_ELEMENT_OPTIONAL(QList<int>, travelerid)
420 UPER_ELEMENT(bool, restrictedToCountryOfResidence)
421 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::RouteSectionType, restrictedToRouteSection)
422 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::SeriesDetailType, seriesDataDetails)
423 UPER_ELEMENT_OPTIONAL(int, tariffIdNum)
424 UPER_ELEMENT_OPTIONAL(QByteArray, tariffIdIA5)
425 UPER_ELEMENT_OPTIONAL(QString, tariffDesc)
426 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::CardReferenceType>, reductionCard)
427 UPER_GADGET_FINALIZE
428};
429
430enum PriceTypeType {
431 noPrice = 0,
432 reservationFee = 1,
433 supplement = 2,
434 travelPrice = 3,
435};
436UPER_ENUM(PriceTypeType)
437
438/** VAT information. */
440 UPER_GADGET
441 UPER_ELEMENT(int, country)
442 UPER_ELEMENT(int, percentage)
443 UPER_ELEMENT_OPTIONAL(int, amount)
444 UPER_ELEMENT_OPTIONAL(QByteArray, vatId)
445 UPER_GADGET_FINALIZE
446};
447
448/** Open tickets included into a reservation. */
450 UPER_EXTENDABLE_GADGET
451 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
452 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
453 UPER_ELEMENT_OPTIONAL(int, productIdNum)
454 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
455 UPER_ELEMENT_OPTIONAL(int, externalIssuerId)
456 UPER_ELEMENT_OPTIONAL(int, issuerAutorizationId)
457 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
458 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::RegionalValidityType>, validRegion)
459 UPER_ELEMENT_DEFAULT(int, validFromDay, 0)
460 UPER_ELEMENT_OPTIONAL(int, validFromTime)
461 UPER_ELEMENT_OPTIONAL(int, validFromUTCOffset)
462 UPER_ELEMENT_DEFAULT(int, validUntilDay, 0)
463 UPER_ELEMENT_OPTIONAL(int, validUntilTime)
464 UPER_ELEMENT_OPTIONAL(int, validUntilUTCOffset)
465 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::TravelClassType, classCode)
466 UPER_ELEMENT_OPTIONAL(QByteArray, serviceLevel)
467 UPER_ELEMENT_OPTIONAL(QList<int>, carrierNum)
468 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, carrierIA5)
469 UPER_ELEMENT_OPTIONAL(QList<int>, includedServiceBrands)
470 UPER_ELEMENT_OPTIONAL(QList<int>, excludedServiceBrands)
471 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::TariffType>, tariffs)
472 UPER_ELEMENT_OPTIONAL(QString, infoText)
473 UPER_ELEMENT_OPTIONAL(QList<int>, includedTransportType)
474 UPER_ELEMENT_OPTIONAL(QList<int>, excludedTransportType)
475 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
476 UPER_GADGET_FINALIZE
477};
478
479/** Luggage information. */
481 UPER_EXTENDABLE_GADGET
482 UPER_ELEMENT_OPTIONAL(QByteArray, registrationId)
483 UPER_ELEMENT_OPTIONAL(int, maxWeight)
484 UPER_ELEMENT_OPTIONAL(int, maxSize)
485 UPER_GADGET_FINALIZE
486};
487
488/** Luggage restriction information. */
490 UPER_EXTENDABLE_GADGET
491 UPER_ELEMENT_DEFAULT(int, maxHandLuggagePieces, 3)
492 UPER_ELEMENT_DEFAULT(int, maxNonHandLuggagePieces, 1)
493 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::RegisteredLuggageType>, registeredLuggage)
494 UPER_GADGET_FINALIZE
495};
496
497/** Reservation document (IRT, RES). */
499 UPER_EXTENDABLE_GADGET
500 UPER_ELEMENT_OPTIONAL(int, trainNum)
501 UPER_ELEMENT_OPTIONAL(QByteArray, trainIA5)
502 UPER_ELEMENT_DEFAULT(int, departureDate, 0)
503 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
504 UPER_ELEMENT_OPTIONAL(int, referenceNum)
505 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
506 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
507 UPER_ELEMENT_OPTIONAL(int, productIdNum)
508 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
509 UPER_ELEMENT_OPTIONAL(int, serviceBrand)
510 UPER_ELEMENT_OPTIONAL(QString, serviceBrandAbrUTF8)
511 UPER_ELEMENT_OPTIONAL(QString, serviceBrandNameUTF8)
512 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::ServiceType, service, seat)
513 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUICReservation)
514 UPER_ELEMENT_OPTIONAL(int, fromStationNum)
515 UPER_ELEMENT_OPTIONAL(QByteArray, fromStationIA5)
516 UPER_ELEMENT_OPTIONAL(int, toStationNum)
517 UPER_ELEMENT_OPTIONAL(QByteArray, toStationIA5)
518 UPER_ELEMENT_OPTIONAL(QString, fromStationNameUTF8)
519 UPER_ELEMENT_OPTIONAL(QString, toStationNameUTF8)
520 UPER_ELEMENT(int, departureTime)
521 UPER_ELEMENT_OPTIONAL(int, departureUTCOffset)
522 UPER_ELEMENT_DEFAULT(int, arrivalDate, 0)
523 UPER_ELEMENT_OPTIONAL(int, arrivalTime)
524 UPER_ELEMENT_OPTIONAL(int, arrivalUTCOffset)
525 UPER_ELEMENT_OPTIONAL(QList<int>, carrierNum)
526 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, carrierIA5)
527 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::TravelClassType, classCode, second)
528 UPER_ELEMENT_OPTIONAL(QByteArray, serviceLevel)
529 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::PlacesType, places)
530 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::PlacesType, additionalPlaces)
531 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::PlacesType, bicyclePlaces)
532 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::CompartmentDetailsType, compartmentDetails)
533 UPER_ELEMENT_DEFAULT(int, numberOfOverbooked, 0)
534 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::BerthDetailData>, berth)
535 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::TariffType>, tariffs) // "tariff" in the official ASN.1 spec, but that inconsistent with the other document types
536 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::PriceTypeType, priceType, travelPrice)
537 UPER_ELEMENT_OPTIONAL(int, price)
538 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::VatDetailType>, vatDetail)
539 UPER_ELEMENT_DEFAULT(int, typeOfSupplement, 0)
540 UPER_ELEMENT_DEFAULT(int, numberOfSupplements, 0)
541 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::LuggageRestrictionType, luggage)
542 UPER_ELEMENT_OPTIONAL(QString, infoText)
543 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
544 UPER_GADGET_FINALIZE
545
546public:
547 Q_INVOKABLE [[nodiscard]] QDateTime departureDateTime(const QDateTime &issueingDateTime) const;
548 Q_INVOKABLE [[nodiscard]] QDateTime arrivalDateTime(const QDateTime &issueingDateTime) const;
549};
550
551enum RoofRackType {
552 norack = 0,
553 roofRailing = 1,
554 luggageRack = 2,
555 skiRack = 3,
556 boxRack = 4,
557 rackWithOneBox = 5,
558 rackWithTwoBoxes = 6,
559 bicycleRack = 7,
560 otherRack = 8,
561};
562UPER_EXTENABLE_ENUM(RoofRackType)
563
564enum class LoadingDeckType {
565 unspecified = 0, // TODO see above
566 upper = 1,
567 lower = 2,
568};
569UPER_ENUM(LoadingDeckType)
570
571/** Car carriage reservation document. */
573 UPER_EXTENDABLE_GADGET
574 UPER_ELEMENT_OPTIONAL(int, trainNum)
575 UPER_ELEMENT_OPTIONAL(QByteArray, trainIA5)
576 UPER_ELEMENT_DEFAULT(int, beginLoadingDate, 0)
577 UPER_ELEMENT_OPTIONAL(int, beginLoadingTime)
578 UPER_ELEMENT_OPTIONAL(int, endLoadingTime)
579 UPER_ELEMENT_OPTIONAL(int, loadingUTCOffset)
580 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
581 UPER_ELEMENT_OPTIONAL(int, referenceNum)
582 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
583 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
584 UPER_ELEMENT_OPTIONAL(int, productIdNum)
585 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
586 UPER_ELEMENT_OPTIONAL(int, serviceBrand)
587 UPER_ELEMENT_OPTIONAL(QString, serviceBrandAbrUTF8)
588 UPER_ELEMENT_OPTIONAL(QString, serviceBrandNameUTF8)
589 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUICReservation)
590 UPER_ELEMENT_OPTIONAL(int, fromStationNum)
591 UPER_ELEMENT_OPTIONAL(QByteArray, fromStationIA5)
592 UPER_ELEMENT_OPTIONAL(int, toStationNum)
593 UPER_ELEMENT_OPTIONAL(QByteArray, toStationIA5)
594 UPER_ELEMENT_OPTIONAL(QString, fromStationNameUTF8)
595 UPER_ELEMENT_OPTIONAL(QString, toStationNameUTF8)
596 UPER_ELEMENT_OPTIONAL(QByteArray, coach)
597 UPER_ELEMENT_OPTIONAL(QByteArray, place)
598 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::CompartmentDetailsType, compartmentDetails)
599 UPER_ELEMENT_OPTIONAL(QByteArray, numberPlate)
600 UPER_ELEMENT_OPTIONAL(QByteArray, trailerPlate)
601 UPER_ELEMENT(int, carCategory)
602 UPER_ELEMENT_OPTIONAL(int, boatCategory)
603 UPER_ELEMENT(bool, textileRoof)
604 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::RoofRackType, roofRackType, norack)
605 UPER_ELEMENT_OPTIONAL(int, roofRackHeight)
606 UPER_ELEMENT_OPTIONAL(int, attachedBoats)
607 UPER_ELEMENT_OPTIONAL(int, attachedBicycles)
608 UPER_ELEMENT_OPTIONAL(int, attachedSurfboards)
609 UPER_ELEMENT_OPTIONAL(int, loadingListEntry)
610 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::LoadingDeckType, loadingDeck, LoadingDeckType::upper)
611 UPER_ELEMENT_OPTIONAL(QList<int>, carrierNum)
612 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, carrierIA5)
613 UPER_ELEMENT(KItinerary::Fcb::v2::TariffType, tariff)
614 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::PriceTypeType, priceType, travelPrice)
615 UPER_ELEMENT_OPTIONAL(int, price)
616 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::VatDetailType>, vatDetail)
617 UPER_ELEMENT_OPTIONAL(QString, infoText)
618 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
619 UPER_GADGET_FINALIZE
620};
621
622/** Open ticket document (NRT). */
624 UPER_EXTENDABLE_GADGET
625 UPER_ELEMENT_OPTIONAL(int, referenceNum)
626 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
627 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
628 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
629 UPER_ELEMENT_OPTIONAL(int, productIdNum)
630 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
631 UPER_ELEMENT_OPTIONAL(int, extIssuerId)
632 UPER_ELEMENT_OPTIONAL(int, issuerAutorizationId)
633 UPER_ELEMENT(bool, returnIncluded)
634 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
635 UPER_ELEMENT_OPTIONAL(int, fromStationNum)
636 UPER_ELEMENT_OPTIONAL(QByteArray, fromStationIA5)
637 UPER_ELEMENT_OPTIONAL(int, toStationNum)
638 UPER_ELEMENT_OPTIONAL(QByteArray, toStationIA5)
639 UPER_ELEMENT_OPTIONAL(QString, fromStationNameUTF8)
640 UPER_ELEMENT_OPTIONAL(QString, toStationNameUTF8)
641 UPER_ELEMENT_OPTIONAL(QString, validRegionDesc)
642 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::RegionalValidityType>, validRegion)
643 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ReturnRouteDescriptionType, returnDescription)
644 UPER_ELEMENT_DEFAULT(int, validFromDay, 0)
645 UPER_ELEMENT_OPTIONAL(int, validFromTime)
646 UPER_ELEMENT_OPTIONAL(int, validFromUTCOffset)
647 UPER_ELEMENT_DEFAULT(int, validUntilDay, 0)
648 UPER_ELEMENT_OPTIONAL(int, validUntilTime)
649 UPER_ELEMENT_OPTIONAL(int, validUntilUTCOffset)
650 UPER_ELEMENT_OPTIONAL(QList<int>, activatedDay)
651 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::TravelClassType, classCode, second)
652 UPER_ELEMENT_OPTIONAL(QByteArray, serviceLevel)
653 UPER_ELEMENT_OPTIONAL(QList<int>, carrierNum)
654 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, carrierIA5)
655 UPER_ELEMENT_OPTIONAL(QList<int>, includedServiceBrands)
656 UPER_ELEMENT_OPTIONAL(QList<int>, excludedServiceBrands)
657 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::TariffType>, tariffs)
658 UPER_ELEMENT_OPTIONAL(int, price)
659 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::VatDetailType>, vatDetail)
660 UPER_ELEMENT_OPTIONAL(QString, infoText)
661 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::IncludedOpenTicketType>, includedAddOns)
662 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::LuggageRestrictionType, luggage)
663 UPER_ELEMENT_OPTIONAL(QList<int>, includedTransportType)
664 UPER_ELEMENT_OPTIONAL(QList<int>, excludedTransportType)
665 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
666 UPER_GADGET_FINALIZE
667
668public:
669 Q_INVOKABLE [[nodiscard]] QDateTime validFrom(const QDateTime &issueingDateTime) const;
670 Q_INVOKABLE [[nodiscard]] QDateTime validUntil(const QDateTime &issueingDateTime) const;
671};
672
673/** Time range. */
675 UPER_GADGET
676 UPER_ELEMENT(int, fromTime)
677 UPER_ELEMENT(int, untilTime)
678 UPER_GADGET_FINALIZE
679};
680
681/** Validity time period. */
683 UPER_GADGET
684 UPER_ELEMENT_DEFAULT(int, validFromDay, 0)
685 UPER_ELEMENT_OPTIONAL(int, validFromTime)
686 UPER_ELEMENT_OPTIONAL(int, validFromUTCOffset)
687 UPER_ELEMENT_DEFAULT(int, validUntilDay, 0)
688 UPER_ELEMENT_OPTIONAL(int, validUntilTime)
689 UPER_ELEMENT_OPTIONAL(int, validUntilUTCOffset)
690 UPER_GADGET_FINALIZE
691};
692
693/** Set of validity time period. */
695 UPER_GADGET
696 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::ValidityPeriodDetailType>, validityPeriod)
697 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::TimeRangeType>, excludedTimeRange)
698 UPER_GADGET_FINALIZE
699};
700
701/** Rail pass document (RPT). */
702class PassData {
703 UPER_EXTENDABLE_GADGET
704 UPER_ELEMENT_OPTIONAL(int, referenceNum)
705 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
706 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
707 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
708 UPER_ELEMENT_OPTIONAL(int, productIdNum)
709 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
710 UPER_ELEMENT_OPTIONAL(int, passType)
711 UPER_ELEMENT_OPTIONAL(QString, passDescription)
712 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::TravelClassType, classCode, second)
713 UPER_ELEMENT_DEFAULT(int, validFromDay, 0)
714 UPER_ELEMENT_OPTIONAL(int, validFromTime)
715 UPER_ELEMENT_OPTIONAL(int, validFromUTCOffset)
716 UPER_ELEMENT_DEFAULT(int, validUntilDay, 0)
717 UPER_ELEMENT_OPTIONAL(int, validUntilTime)
718 UPER_ELEMENT_OPTIONAL(int, validUntilUTCOffset)
719 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ValidityPeriodDetailType, validityPeriodDetails)
720 UPER_ELEMENT_OPTIONAL(int, numberOfValidityDays)
721 UPER_ELEMENT_OPTIONAL(int, numberOfPossibleTrips)
722 UPER_ELEMENT_OPTIONAL(int, numberOfDaysOfTravel)
723 UPER_ELEMENT_OPTIONAL(QList<int>, activatedDay)
724 UPER_ELEMENT_OPTIONAL(QList<int>, countries)
725 UPER_ELEMENT_OPTIONAL(QList<int>, includedCarrierNum)
726 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, includedCarrierIA5)
727 UPER_ELEMENT_OPTIONAL(QList<int>, excludedCarrierNum)
728 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, excludedCarrierIA5)
729 UPER_ELEMENT_OPTIONAL(QList<int>, includedServiceBrands)
730 UPER_ELEMENT_OPTIONAL(QList<int>, excludedServiceBrands)
731 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::RegionalValidityType>, validRegion)
732 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::TariffType>, tariffs)
733 UPER_ELEMENT_OPTIONAL(int, price)
734 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::VatDetailType>, vatDetail)
735 UPER_ELEMENT_OPTIONAL(QString, infoText)
736 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
737 UPER_GADGET_FINALIZE
738
739public:
740 Q_INVOKABLE [[nodiscard]] QDateTime validFrom(const QDateTime &issueingDateTime) const;
741 Q_INVOKABLE [[nodiscard]] QDateTime validUntil(const QDateTime &issueingDateTime) const;
742};
743
744/** Voucher document. */
746 UPER_EXTENDABLE_GADGET
747 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
748 UPER_ELEMENT_OPTIONAL(int, referenceNum)
749 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
750 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
751 UPER_ELEMENT_OPTIONAL(int, productIdNum)
752 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
753 UPER_ELEMENT(int, validFromYear)
754 UPER_ELEMENT(int, validFromDay)
755 UPER_ELEMENT(int, validUntilYear)
756 UPER_ELEMENT(int, validUntilDay)
757 UPER_ELEMENT_DEFAULT(int, value, 0)
758 UPER_ELEMENT_OPTIONAL(int, type)
759 UPER_ELEMENT_OPTIONAL(QString, infoText)
760 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
761 UPER_GADGET_FINALIZE
762};
763
764/** Customer card document. */
766 UPER_EXTENDABLE_GADGET
767 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::TravelerType, customer)
768 UPER_ELEMENT_OPTIONAL(QByteArray, cardIdIA5)
769 UPER_ELEMENT_OPTIONAL(int, cardIdNum)
770 UPER_ELEMENT(int, validFromYear)
771 UPER_ELEMENT_OPTIONAL(int, validFromDay)
772 UPER_ELEMENT_DEFAULT(int, validUntilYear, 0)
773 UPER_ELEMENT_OPTIONAL(int, validUntilDay)
774 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::TravelClassType, classCode)
775 UPER_ELEMENT_OPTIONAL(int, cardType)
776 UPER_ELEMENT_OPTIONAL(QString, cardTypeDescr)
777 UPER_ELEMENT_OPTIONAL(int, customerStatus)
778 UPER_ELEMENT_OPTIONAL(QByteArray, customerStatusDescr)
779 UPER_ELEMENT_OPTIONAL(QList<int>, includedServices)
780 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
781 UPER_GADGET_FINALIZE
782
783 Q_PROPERTY(QDate validFrom READ validFrom)
784 Q_PROPERTY(QDate validUntil READ validUntil)
785public:
786 [[nodiscard]] QDate validFrom() const;
787 [[nodiscard]] QDate validUntil() const;
788};
789
790/** Countermark document. */
792 UPER_EXTENDABLE_GADGET
793 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
794 UPER_ELEMENT_OPTIONAL(int, referenceNum)
795 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
796 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
797 UPER_ELEMENT_OPTIONAL(int, productIdNum)
798 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
799 UPER_ELEMENT_OPTIONAL(QByteArray, ticketReferenceIA5)
800 UPER_ELEMENT_OPTIONAL(int, ticketReferenceNum)
801 UPER_ELEMENT(int, numberOfCountermark)
802 UPER_ELEMENT(int, totalOfCountermarks)
803 UPER_ELEMENT(QString, groupName)
804 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
805 UPER_ELEMENT_OPTIONAL(int, fromStationNum)
806 UPER_ELEMENT_OPTIONAL(QByteArray, fromStationIA5)
807 UPER_ELEMENT_OPTIONAL(int, toStationNum)
808 UPER_ELEMENT_OPTIONAL(QByteArray, toStationIA5)
809 UPER_ELEMENT_OPTIONAL(QString, fromStationNameUTF8)
810 UPER_ELEMENT_OPTIONAL(QString, toStationNameUTF8)
811 UPER_ELEMENT_OPTIONAL(QString, validRegionDesc)
812 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::RegionalValidityType>, validRegion)
813 UPER_ELEMENT(bool, returnIncluded)
814 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ReturnRouteDescriptionType, returnDescription)
815 UPER_ELEMENT_DEFAULT(int, validFromDay, 0)
816 UPER_ELEMENT_OPTIONAL(int, validFromTime)
817 UPER_ELEMENT_OPTIONAL(int, validFromUTCOffset)
818 UPER_ELEMENT_DEFAULT(int, validUntilDay, 0)
819 UPER_ELEMENT_OPTIONAL(int, validUntilTime)
820 UPER_ELEMENT_OPTIONAL(int, validUntilUTCOffset)
821 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::TravelClassType, classCode, second)
822 UPER_ELEMENT_OPTIONAL(QList<int>, carrierNum)
823 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, carrierIA5)
824 UPER_ELEMENT_OPTIONAL(QList<int>, includedServiceBrands)
825 UPER_ELEMENT_OPTIONAL(QList<int>, excludedServiceBrands)
826 UPER_ELEMENT_OPTIONAL(QString, infoText)
827 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
828 UPER_GADGET_FINALIZE
829};
830
831/** Parking ground document. */
833 UPER_EXTENDABLE_GADGET
834 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
835 UPER_ELEMENT_OPTIONAL(int, referenceNum)
836 UPER_ELEMENT(QByteArray, parkingGroundId)
837 UPER_ELEMENT(int, fromParkingDate)
838 UPER_ELEMENT_DEFAULT(int, untilParkingDate, 0)
839 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
840 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
841 UPER_ELEMENT_OPTIONAL(int, productIdNum)
842 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
843 UPER_ELEMENT_OPTIONAL(QByteArray, accessCode)
844 UPER_ELEMENT(QString, location)
845 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
846 UPER_ELEMENT_OPTIONAL(int, stationNum)
847 UPER_ELEMENT_OPTIONAL(QString, stationIA5) // yep, actually UTF8String rather than IA5String
848 UPER_ELEMENT_OPTIONAL(QString, specialInformation)
849 UPER_ELEMENT_OPTIONAL(QString, entryTrack)
850 UPER_ELEMENT_OPTIONAL(QByteArray, numberPlate)
851 UPER_ELEMENT_OPTIONAL(int, price)
852 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::VatDetailType>, vatDetail)
853 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
854 UPER_GADGET_FINALIZE
855};
856
857/** FIP ticket document. */
859 UPER_EXTENDABLE_GADGET
860 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
861 UPER_ELEMENT_OPTIONAL(int, referenceNum)
862 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
863 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
864 UPER_ELEMENT_OPTIONAL(int, productIdNum)
865 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
866 UPER_ELEMENT_DEFAULT(int, validFromDay, 0)
867 UPER_ELEMENT_DEFAULT(int, validUntilDay, 0)
868 UPER_ELEMENT_OPTIONAL(QList<int>, activatedDay)
869 UPER_ELEMENT_OPTIONAL(QList<int>, carrierNum)
870 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, carrierIA5)
871 UPER_ELEMENT(int, numberOfTravelDays)
872 UPER_ELEMENT(bool, includesSupplements)
873 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::TravelClassType, classCode, second)
874 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
875 UPER_GADGET_FINALIZE
876};
877
878/** Station passage document. */
880 UPER_EXTENDABLE_GADGET
881 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
882 UPER_ELEMENT_OPTIONAL(int, referenceNum)
883 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
884 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
885 UPER_ELEMENT_OPTIONAL(int, productIdNum)
886 UPER_ELEMENT_OPTIONAL(QByteArray, productIdIA5)
887 UPER_ELEMENT_OPTIONAL(QString, productName)
888 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
889 UPER_ELEMENT_OPTIONAL(QList<int>, stationNum)
890 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, stationIA5)
891 UPER_ELEMENT_OPTIONAL(QList<QString>, stationNameUTF8)
892 UPER_ELEMENT_OPTIONAL(QList<int>, areaCodeNum)
893 UPER_ELEMENT_OPTIONAL(QList<QByteArray>, areaCodeIA5)
894 UPER_ELEMENT_OPTIONAL(QList<QString>, areaNameUTF8)
895 UPER_ELEMENT(int, validFromDay)
896 UPER_ELEMENT_OPTIONAL(int, validFromTime)
897 UPER_ELEMENT_OPTIONAL(int, validFromUTCOffset)
898 UPER_ELEMENT_DEFAULT(int, validUntilDay, 0)
899 UPER_ELEMENT_OPTIONAL(int, validUntilTime)
900 UPER_ELEMENT_OPTIONAL(int, validUntilUTCOffset)
901 UPER_ELEMENT_OPTIONAL(int, numberOfDaysValid)
902 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
903 UPER_GADGET_FINALIZE
904};
905
906enum ConfirmationType {
907 trainDelayConfirmation = 0,
908 travelerDelayConfirmation = 1,
909 trainLinkedTicketDelay = 2,
910};
911UPER_EXTENABLE_ENUM(ConfirmationType)
912
913enum TicketType {
914 openTicket = 0,
915 pass = 1,
916 reservation = 2,
917 carCarriageReservation = 3,
918};
919UPER_EXTENABLE_ENUM(TicketType)
920
921enum LinkMode {
922 issuedTogether = 0,
923 onlyValidInCombination = 1,
924};
925UPER_EXTENABLE_ENUM(LinkMode)
926
927/** */
928class TicketLinkType {
929 UPER_EXTENDABLE_GADGET
930 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
931 UPER_ELEMENT_OPTIONAL(int, referenceNum)
932 UPER_ELEMENT_OPTIONAL(QString, issuerName)
933 UPER_ELEMENT_OPTIONAL(QByteArray, issuerPNR)
934 UPER_ELEMENT_OPTIONAL(int, productOwnerNum)
935 UPER_ELEMENT_OPTIONAL(QByteArray, productOwnerIA5)
936 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::TicketType, ticketType, openTicket)
937 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::LinkMode, linkMode, issuedTogether)
938 UPER_GADGET_FINALIZE
939};
940
941/** Delay confirmation document. */
943 UPER_EXTENDABLE_GADGET
944 UPER_ELEMENT_OPTIONAL(QByteArray, referenceIA5)
945 UPER_ELEMENT_OPTIONAL(int, referenceNum)
946 UPER_ELEMENT_OPTIONAL(int, trainNum)
947 UPER_ELEMENT_OPTIONAL(QByteArray, trainIA5)
948 UPER_ELEMENT_OPTIONAL(int, departureYear)
949 UPER_ELEMENT_OPTIONAL(int, departureDay)
950 UPER_ELEMENT_OPTIONAL(int, departureTime)
951 UPER_ELEMENT_OPTIONAL(int, departureUTCOffset)
952 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::CodeTableType, stationCodeTable, stationUIC)
953 UPER_ELEMENT_OPTIONAL(int, stationNum)
954 UPER_ELEMENT_OPTIONAL(QByteArray, stationIA5)
955 UPER_ELEMENT(int, delay)
956 UPER_ELEMENT(bool, trainCancelled)
957 UPER_ELEMENT_DEFAULT(KItinerary::Fcb::v2::ConfirmationType, confirmationType, travelerDelayConfirmation)
958 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::TicketLinkType>, affectedTickets)
959 UPER_ELEMENT_OPTIONAL(QString, infoText)
960 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
961 UPER_GADGET_FINALIZE
962};
963
964/** Ticket token. */
966 UPER_GADGET
967 UPER_ELEMENT_OPTIONAL(int, tokenProviderNum)
968 UPER_ELEMENT_OPTIONAL(QByteArray, tokenProviderIA5)
969 UPER_ELEMENT_OPTIONAL(QByteArray, tokenSpecification)
970 UPER_ELEMENT(QByteArray, token)
971 UPER_GADGET_FINALIZE
972};
973
974/** Variant wrapper for specific document types.
975 * Can be one of:
976 * - ReservationData
977 * - CarCarriageReservationData
978 * - OpenTicketData
979 * - PassData
980 * - VoucherData
981 * - CustomerCardData
982 * - CountermarkData
983 * - ParkingGroundData
984 * - FIPTicketData
985 * - StationPassageData
986 * - ExtensionData
987 * - DelayConfirmation
988 */
990 UPER_EXTENDABLE_GADGET
991 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::TokenType, token)
992 UPER_ELEMENT(QVariant, ticket)
993 UPER_GADGET_FINALIZE
994};
995
996/** Ticket control data. */
998 UPER_EXTENDABLE_GADGET
999 UPER_ELEMENT_OPTIONAL(QList <KItinerary::Fcb::v2::CardReferenceType>, identificationByCardReference)
1000 UPER_ELEMENT(bool, identificationByIdCard)
1001 UPER_ELEMENT(bool, identificationByPassportId)
1002 UPER_ELEMENT_OPTIONAL(int, identificationItem)
1003 UPER_ELEMENT(bool, passportValidationRequired)
1004 UPER_ELEMENT(bool, onlineValidationRequired)
1005 UPER_ELEMENT_OPTIONAL(int, randomDetailedValidationRequired)
1006 UPER_ELEMENT(bool, ageCheckRequired)
1007 UPER_ELEMENT(bool, reductionCardCheckRequired)
1008 UPER_ELEMENT_OPTIONAL(QString, infoText)
1009 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::TicketLinkType>, includedTickets)
1010 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ExtensionData, extension)
1011 UPER_GADGET_FINALIZE
1012};
1013
1014/** Top-level type for the ERA FCB ticket structure. */
1015class KITINERARY_EXPORT UicRailTicketData {
1016 UPER_EXTENDABLE_GADGET
1017 UPER_ELEMENT(KItinerary::Fcb::v2::IssuingData, issuingDetail)
1018 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::TravelerData, travelerDetail)
1019 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::DocumentData>, transportDocument)
1020 UPER_ELEMENT_OPTIONAL(KItinerary::Fcb::v2::ControlData, controlDetail)
1021 UPER_ELEMENT_OPTIONAL(QList<KItinerary::Fcb::v2::ExtensionData>, extension)
1022 UPER_GADGET_FINALIZE
1023public:
1024 UicRailTicketData();
1025 explicit UicRailTicketData(const Uic9183Block &block);
1026 explicit UicRailTicketData(const QByteArray &data);
1027
1028 [[nodiscard]] bool isValid() const;
1029
1030private:
1031 QVariant m_data;
1032};
1033
1034}
1035}
1036
1037}
1038
1039#endif
Car carriage reservation document.
Definition fcbticket2.h:572
Customer card information.
Definition fcbticket2.h:330
Customer status information.
Definition fcbticket2.h:136
Delay confirmation document.
Definition fcbticket2.h:942
Delta encoding of a geographic coordinate.
Definition fcbticket2.h:79
Variant wrapper for specific document types.
Definition fcbticket2.h:989
Generic extension data.
Definition fcbticket2.h:31
Open tickets included into a reservation.
Definition fcbticket2.h:449
Luggage restriction information.
Definition fcbticket2.h:489
Open ticket document (NRT).
Definition fcbticket2.h:623
Rail pass document (RPT).
Definition fcbticket2.h:702
Regional validity information.
Definition fcbticket2.h:274
Reservation document (IRT, RES).
Definition fcbticket2.h:498
Reference to a specific train journey.
Definition fcbticket2.h:189
Information about a single traveler.
Definition fcbticket2.h:146
Decoder for data encoded according to X.691 ASN.1 Unaligned Packed Encoding Rules (UPER).
Definition uperdecoder.h:17
A data block from a UIC 918.3 ticket.
ERA Flexible Content Barcode (FCB) version 1.3.
Definition fcbticket.h:22
Classes for reservation/travel data models, data extraction and data augmentation.
Definition berelement.h:17
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 12:02:17 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.