Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Maps / Tizen.Maps / MultiReverseGeocodeRequest.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     /// Multiple Reverse geocode Request for Tizen map service
24     /// </summary>
25     /// <since_tizen>3</since_tizen>
26     public class MultiReverseGeocodeRequest : MapServiceRequest<PlaceAddress>
27     {
28         private Interop.MultiReverseGeocodeCallback _geocodeCallback;
29         private List<PlaceAddress> _addressesList = new List<PlaceAddress>();
30
31         internal MultiReverseGeocodeRequest(MapService service, IEnumerable<Geocoordinates> coordinates) : base(service, ServiceRequestType.ReverseGeocode)
32         {
33             // The Maps Service invokes this callback once when gets the response from map service provider
34             // The value of total is same with requested coordinates list size. Even though one of address is not provided valid address handle is retrieved.
35             _geocodeCallback = (result, id, total, handle, userData) =>
36             {
37                 errorCode = result;
38                 if (result.IsSuccess())
39                 {
40                     var addressListHandle = new Interop.AddressListHandle(handle, needToRelease: true);
41                     var addressList = new PlaceAddressList(addressListHandle);
42                     _addressesList = addressList.Addresses as List<PlaceAddress>;
43                     _requestTask?.TrySetResult(_addressesList);
44                     return true;
45                 }
46                 else
47                 {
48                     _requestTask?.TrySetException(errorCode.GetException(errMessage));
49                     return false;
50                 }
51             };
52
53             var coordinateList = new GeocoordinatesList(coordinates);
54             startExecutionAction = new Action(() =>
55             {
56                 int requestID;
57                 errMessage = "Failed to get address list for given co-ordinate list";
58                 errorCode = _service.handle.MultiReverseGeocode(coordinateList.handle, _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 }