summaryrefslogtreecommitdiff
path: root/api/franca/navigation/navigationcore/LocationInput.fidl
blob: e6f300bf897ec25768a11dcd28c7dcae8a1086d6 (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
// SPDX-License-Identifier: MPL-2.0
// Copyright (C) 2014, PCA Peugeot Citro�n, XS Embedded GmbH, TomTom International B.V., Continental Automotive GmbH, BMW Car IT GmbH,  Alpine Electronics R&D Europe GmbH, AISIN AW CO., LTD.,  Neusoft Technology Solutions GmbH, Jaguar Land Rover Limited, Visteon Corporation, Elektrobit Automotive GmbH
// 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/.

package org.genivi.navigation.navigationcore

import org.genivi.CommonTypes.* from "../../CommonTypes.fidl"
import org.genivi.navigation.NavigationTypes.* from "../NavigationTypes.fidl"
import org.genivi.navigation.navigationcore.NavigationCoreTypes.* from "NavigationCoreTypes.fidl"

<**
	@description : LocationInput = This interface offers functions that implement the location-input functionality of a navigation system
**>

interface LocationInput {
	version {
		major 4 
		minor 0
	}

	
	enumeration SearchStatus extends BasicEnum { //Base 0x00c0
  		SEARCHING		= 193
  		FINISHED 		= 194		
	}
	
	enumeration ValidationType extends BasicEnum { 
		OK				= 208
		UNKNOWN			= 209
		AMBIGUOUS		= 210
		INCONSISTENT	= 211
	}
	
	array AddressAttributeList of AddressAttribute

	enumeration AddressAttribute extends GeoLocalizedEnum { 
		COUNTRY			= 166 //value of type String, that identifies the country name
		COUNTRYCODE		= 179 //value of type String, ISO 3166‐1 alpha 3 country code (upper case)
		STATE			= 167
		CITY			= 168 //value of type String, that identifies the city name
		STREET			= 170 //value of type String, that identifies the street name
		ROAD_NUMBER		= 182 //value of type String, that identifies the road number
		HOUSENUMBER		= 171 //value of type String, that identifies the house number
		HOUSENAME		= 180 //value of type String, that identifies the house name
		CROSSING		= 172 //value of type String, that identifies the crossing
		DISTRICT		= 173 //value of type String, that identifies the district name
		PHONENUMBER		= 174 //value of type String, that identifies a phone number
		POINAME			= 175 //value of type String, that identifies a POI name
		TOWNCENTER		= 176
		LOCATION_INPUT  = 177
		FULL_ADDRESS	= 178
		POSTAL_CODE		= 181
		ROADSHIELDS		= 182
	}

    union AddressValue {
	    Int32 intValue
	    Double doubleValue
	    String stringValue
	    Coordinate3D coordinate3DValue
	    UInt8[] internalData
	    RoadShield[] roadShields
    }

	map Address {
		AddressAttribute to AddressValue
	}

	map ValidationStatus {
		AddressAttribute to ValidationType
	}	

	<**
		@description : getVersion = This method returns the API version implemented by the server application
	**>
	method getVersion {
		out {
			Version ^version
		}
	}

	<**
		@description : createLocationInput = This method creates a new location input and retrieves a handle
	**>
	method createLocationInput {
		in {

			<**
				@description : Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle
		}
		out {

			<**
				@description : Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle
		}
		error {
			OK
			LOCATIONINPUT_ERROR_NOMORELOCATIONINPUTHANDLES //no more location input handles are available
		}
	}

	<**
		@description : deleteLocationInput = This method deletes a location input and its associated resources
	**>
	method deleteLocationInput {
		in {

			<**
				@description : sessionHandle = Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle
		}
		error {
			OK
			LOCATIONINPUT_ERROR_LOCATIONINPUTNOTAVAILABLE //an application tries to delete a location input handle that is not available
		}
	}

	<**
		@description : getSupportedAddressAttributes = This method retrieves the supported address attributes
	**>
	method getSupportedAddressAttributes {
		out {
			AddressAttributeList addressAttributesList
		}
	}

	<**
		@description : setAddress = This method sets the address to start with for the LocationInput identified by the given handle
	**>
	method setAddress {
		in {

			<**
				@description : sessionHandle = Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle
			
			Address address
		}
	}

	<**
		@description : setSelectionCriterion = This method sets the selection criterion for the current speller, search input and the corresponding result-lists for the current session
	**>
	method setSelectionCriterion {
		in {

			<**
				@description : sessionHandle = Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : selectionCriterion = enum(INVALID,LATITUDE,LONGITUDE,ALTITUDE,FULL_ADDRESS,COUNTRY,COUNTRYCODE,STATE,CITY,STREET,ROAD_NUMBER,HOUSENUMBER,HOUSENAME,CROSSING,DISTRICT,PHONENUMBER,POINAME,TOWNCENTER, ... )
			**>
			AddressAttribute selectionCriterion
		}
	}

	<**
		@description : spell = This method sends the next spell input for the current session
		Note: when a spell is started the entries of the search are removed
	**>
	method spell {
		in {

			<**
				@description : sessionHandle = Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : inputString = last input character (UTF-8) (0x08(Backspace) for delete last character, 0x0D(Carriage Return) for delete entire input)
			**>
			String inputCharacter

			<**
				@description : maxWindowSize = maximum number of elements that should be returned as result
			**>
			UInt16 maxWindowSize
		}
	}

	<**
		@description : search = This method sends the search input for the current session
		Note: when a search is started the entries of the spell input are removed
	**>
	method search {
		in {

			<**
				@description : sessionHandle = Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : inputString = contains the String, that is searched
			**>
			String inputString

			<**
				@description : maxWindowSize = maximum number of elements that should be returned as result
			**>
			UInt16 maxWindowSize
		}
	}

	<**
		@description : requestListUpdate = This method sends a request for more list elements for the current session
	**>
	method requestListUpdate {
		in {

			<**
				@description : sessionHandle = Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : offset = starting offset of the newly requested list elements
			**>
			UInt16 offset

			<**
				@description : maxWindowSize = maximum number of elements that should be returned as result
			**>
			UInt16 maxWindowSize
		}
	}

	<**
		@description : selectEntry = This method triggers selection of a result list entry by index
		Note: the update of the input content will be notified in signal ContentUpdated
	**>
	method selectEntry {
		in {

			<**
				@description : sessionHandle = Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : index = absolute list index of the entry to be selected
			**>
			UInt16 index
		}
	}

	<**
		@description : getEntry = This method synchronously gets the address for the given result list entry
	**>
	method getEntry {
		in {

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : index = list index of the entry to be returned
			**>
			UInt16 index
		}
		out {
			Address address
		}
	}

	<**
		@description : validateAddress = This method validates an address from different sources than Navigation
	**>
	method validateAddress {
		in {

			<**
				@description : sessionHandle = Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle
			
			Address inputAddress
		}
	}

	<**
		@description : reverseGeocode = This method transforms a geocoordinate into an address
		Note: the update of the input content will be notified in signal ContentUpdated
	**>
	method reverseGeocode {
		in {

			<**
				@description : sessionHandle = Session handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			Handle sessionHandle

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle
			
			Coordinate2D coordinate
		}
	}

	<**
		@description : currentSelectionCriterion = This signal notifies the SelectionCriterion for the current speller input or search.
	**>
	broadcast currentSelectionCriterion {
		out {

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : selectionCriterion = enum(INVALID,LATITUDE,LONGITUDE,ALTITUDE,FULL_ADDRESS,COUNTRY,COUNTRYCODE,STATE,CITY,STREET,ROAD_NUMBER,HOUSENUMBER,HOUSENAME,CROSSING,DISTRICT,PHONENUMBER,POINAME,TOWNCENTER, ... )
			**>
			AddressAttribute selectionCriterion
		}
	}

	<**
		@description : searchStatus = This signal updates the search status of the specified session
	**>
	broadcast searchStatus {
		out {

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : statusValue = enum(INVALID,NOT_STARTED,SEARCHING,FINISHED, ... )
			**>
			SearchStatus statusValue
		}
	}

	<**
		@description : spellResult = This signal notifies the result of the previous Spell method
	**>
	broadcast spellResult {
		out {

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : uniqueString = unique string derived from spell input (i.e. including auto-completion if applicable)
			**>
			String uniqueString

			<**
				@description : validCharacters = set of (UTF-8 encoded) characters valid for next input (unified in a single string). A Backspace(0x08) is returned if the input character passed to the Spell method was invalid
			**>
			String validCharacters

			<**
				@description : fullMatch = flag indicating whether the value in UniqueCharacters is already a full match for an existing list entry
			**>
			Boolean fullMatch
		}
	}

	<**
		@description : searchResultList = This signal updates the address result list (e.g. after a Search/Spell/Scroll call)
	**>
	broadcast searchResultList {
		out {

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : totalSize = total size of the result list
			**>
			UInt16 totalSize

			<**
				@description : windowOffset = window offset within the complete list
			**>
			UInt16 windowOffset

			<**
				@description : windowSize = size of the provided window
			**>
			UInt16 windowSize
			
			Address [] resultListWindow
		}
	}

	<**
		@description : searchResultListSizeChanged = This signal updates the size of the address result list
	**>
	broadcast searchResultListSizeChanged {
		out {

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : totalSize = total size of the result list
			**>
			UInt16 totalSize
		}
	}

	<**
		@description : contentUpdated = This signal updates the input content data for the specified session
	**>
	broadcast contentUpdated {
		out {

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle

			<**
				@description : guidable = flag indicating whether the current address is guidable
			**>
			Boolean guidable
			
			AddressAttribute [] availableSelectionCriteria
			
			Address address
		}
	}

	<**
		@description : addressValidationResult = This signal notifies the validation result of a former ValidateAddress call
	**>
	broadcast addressValidationResult {
		out {

			<**
				@description : locationInpuHandle = Location input handle. Range[0x0:0x7fffffff]. 0x0 is reserved as an invalid handle value
			**>
			LocationHandle locationInputHandle
			
			Address [] validatedAddressList
			
			ValidationStatus [] validationStatusList
		}
	}
}