Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Maps / Tizen.Maps / ReverseGeocodeRequest.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18 using System.Collections.Generic;
19
20 namespace Tizen.Maps
21 {
22     /// <summary>
23     /// Reverse geocode request for map service.
24     /// </summary>
25     /// <since_tizen>3</since_tizen>
26     public class ReverseGeocodeRequest : MapServiceRequest<PlaceAddress>
27     {
28         private Interop.ReverseGeocodeCallback _geocodeCallback;
29         private List<PlaceAddress> _addressList = new List<PlaceAddress>();
30
31         internal ReverseGeocodeRequest(MapService service, double latitude, double longitute) : base(service, ServiceRequestType.ReverseGeocode)
32         {
33             // The Maps Service invokes this callback when the address is obtained from the specified coordinates.
34             _geocodeCallback = (result, id, index, total, address, userData) =>
35             {
36                 errorCode = result;
37                 if (result.IsSuccess())
38                 {
39                     // The parameter address must be released using maps_address_destroy().
40                     var addressHandle = new Interop.AddressHandle(address, needToRelease: true);
41                     _addressList.Add(new PlaceAddress(addressHandle));
42                     if (_addressList.Count == total)
43                     {
44                         _requestTask?.TrySetResult(_addressList);
45                     }
46                 }
47                 else
48                 {
49                     // If search is failed, the value of total is 0 and address is NULL
50                     _requestTask?.TrySetException(errorCode.GetException(errMessage));
51                 }
52             };
53
54             startExecutionAction = new Action(() =>
55             {
56                 int requestID;
57                 errMessage = $"Failed to get coordinates for given coordinates: {latitude}:{longitute}";
58                 errorCode = _service.handle.ReverseGeocode(latitude, longitute, _service.Preferences.handle, _geocodeCallback, IntPtr.Zero, out requestID);
59                 if (errorCode.IsFailed() && errorCode != Interop.ErrorCode.Canceled)
60                 {
61                     _requestTask?.TrySetException(errorCode.GetException(errMessage));
62                 }
63                 _requestID = requestID;
64             });
65         }
66     }
67 }