package cgeo.geocaching.location;
import cgeo.geocaching.utils.Log;
import cgeo.geocaching.utils.RxUtils;
import org.apache.commons.collections4.CollectionUtils;
import org.eclipse.jdt.annotation.NonNull;
import rx.Observable;
import rx.functions.Func0;
import android.content.Context;
import android.location.Address;
import android.location.Geocoder;
import java.util.List;
import java.util.Locale;
public class AndroidGeocoder {
private final Geocoder geocoder;
public AndroidGeocoder(final Context context) {
geocoder = new Geocoder(context, Locale.getDefault());
}
/**
* Retrieve addresses from a textual location using Android geocoding API. The work happens on the network
* scheduler.
*
* @param keyword
* the location
* @return an observable containing zero or more locations
*
* @see Geocoder#getFromLocationName(String, int)
*/
public Observable
getFromLocationName(@NonNull final String keyword) {
if (!Geocoder.isPresent()) {
return Observable.error(new RuntimeException("no Android geocoder"));
}
return Observable.defer(new Func0>() {
@Override
public Observable call() {
try {
return addressesToObservable(geocoder.getFromLocationName(keyword, 20));
} catch (final Exception e) {
Log.i("Unable to use Android reverse geocoder: " + e.getMessage());
return Observable.error(e);
}
}
}).subscribeOn(RxUtils.networkScheduler);
}
/**
* Retrieve the physical address for coordinates. The work happens on the network scheduler.
*
* @param coords the coordinates
* @return an observable containing one location or an error
*/
public Observable getFromLocation(@NonNull final Geopoint coords) {
if (!Geocoder.isPresent()) {
return Observable.error(new RuntimeException("no Android reverse geocoder"));
}
return Observable.defer(new Func0>() {
@Override
public Observable call() {
try {
return addressesToObservable(geocoder.getFromLocation(coords.getLatitude(), coords.getLongitude(), 1));
} catch (final Exception e) {
Log.i("Unable to use Android reverse geocoder: " + e.getMessage());
return Observable.error(e);
}
}
}).subscribeOn(RxUtils.networkScheduler).first();
}
private static Observable addressesToObservable(final List addresses) {
return CollectionUtils.isEmpty(addresses) ?
Observable.error(new RuntimeException("no result from Android geocoder")) :
Observable.from(addresses);
}
}