Google places duplicated items issue fixed.
parent
203774e24f
commit
21854fee7e
|
@ -4,9 +4,11 @@ import android.support.v4.app.FragmentActivity;
|
||||||
import android.widget.ListView;
|
import android.widget.ListView;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
import org.greenrobot.eventbus.EventBus;
|
import org.greenrobot.eventbus.EventBus;
|
||||||
|
import org.greenrobot.eventbus.Subscribe;
|
||||||
import pl.tpolgrabia.urbanexplorer.MainActivity;
|
import pl.tpolgrabia.urbanexplorer.MainActivity;
|
||||||
import pl.tpolgrabia.urbanexplorer.R;
|
import pl.tpolgrabia.urbanexplorer.R;
|
||||||
import pl.tpolgrabia.urbanexplorer.adapters.WikiLocationsAdapter;
|
import pl.tpolgrabia.urbanexplorer.adapters.WikiLocationsAdapter;
|
||||||
|
import pl.tpolgrabia.urbanexplorerutils.events.RefreshEvent;
|
||||||
import pl.tpolgrabia.wikibinding.callback.WikiStatus;
|
import pl.tpolgrabia.wikibinding.callback.WikiStatus;
|
||||||
import pl.tpolgrabia.wikibinding.dto.app.WikiAppObject;
|
import pl.tpolgrabia.wikibinding.dto.app.WikiAppObject;
|
||||||
import pl.tpolgrabia.urbanexplorerutils.events.DataLoadingFinishEvent;
|
import pl.tpolgrabia.urbanexplorerutils.events.DataLoadingFinishEvent;
|
||||||
|
@ -57,4 +59,5 @@ public class WikiFetchAppDataCallback implements WikiAppResponseCallback {
|
||||||
|
|
||||||
EventBus.getDefault().post(new DataLoadingFinishEvent(this));
|
EventBus.getDefault().post(new DataLoadingFinishEvent(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,7 @@ public class GooglePlacesState {
|
||||||
private List<GooglePlaceResult> places;
|
private List<GooglePlaceResult> places;
|
||||||
private String nextPageToken;
|
private String nextPageToken;
|
||||||
private boolean noMoreResults;
|
private boolean noMoreResults;
|
||||||
|
private Long pageId;
|
||||||
|
|
||||||
public void setPlaces(List<GooglePlaceResult> places) {
|
public void setPlaces(List<GooglePlaceResult> places) {
|
||||||
this.places = places;
|
this.places = places;
|
||||||
|
@ -37,12 +38,21 @@ public class GooglePlacesState {
|
||||||
return noMoreResults;
|
return noMoreResults;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setPageId(Long pageId) {
|
||||||
|
this.pageId = pageId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getPageId() {
|
||||||
|
return pageId;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "GooglePlacesState{" +
|
return "GooglePlacesState{" +
|
||||||
"places=" + places +
|
"places=" + places +
|
||||||
", nextPageToken='" + nextPageToken + '\'' +
|
", nextPageToken='" + nextPageToken + '\'' +
|
||||||
", noMoreResults=" + noMoreResults +
|
", noMoreResults=" + noMoreResults +
|
||||||
|
", pageId=" + pageId +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,7 @@ import pl.tpolgrabia.urbanexplorer.dto.GooglePlacesState;
|
||||||
import pl.tpolgrabia.urbanexplorer.handlers.GooglePlacesScrollListener;
|
import pl.tpolgrabia.urbanexplorer.handlers.GooglePlacesScrollListener;
|
||||||
import pl.tpolgrabia.urbanexplorer.worker.GooglePlacesWorker;
|
import pl.tpolgrabia.urbanexplorer.worker.GooglePlacesWorker;
|
||||||
import pl.tpolgrabia.urbanexplorerutils.callbacks.StandardLocationListenerCallback;
|
import pl.tpolgrabia.urbanexplorerutils.callbacks.StandardLocationListenerCallback;
|
||||||
|
import pl.tpolgrabia.urbanexplorerutils.events.RefreshEvent;
|
||||||
import pl.tpolgrabia.urbanexplorerutils.utils.LocationUtils;
|
import pl.tpolgrabia.urbanexplorerutils.utils.LocationUtils;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
|
@ -50,6 +51,7 @@ public class PlacesFragment extends Fragment {
|
||||||
private PlacesUtils placesUtils;
|
private PlacesUtils placesUtils;
|
||||||
private GeocoderUtils geocoderUtils;
|
private GeocoderUtils geocoderUtils;
|
||||||
private String nextPageToken;
|
private String nextPageToken;
|
||||||
|
private Long pageId = 0L;
|
||||||
private List<GooglePlaceResult> places = new ArrayList<>();
|
private List<GooglePlaceResult> places = new ArrayList<>();
|
||||||
|
|
||||||
private Semaphore semaphore = new Semaphore(1);
|
private Semaphore semaphore = new Semaphore(1);
|
||||||
|
@ -97,6 +99,7 @@ public class PlacesFragment extends Fragment {
|
||||||
places = null;
|
places = null;
|
||||||
nextPageToken = null;
|
nextPageToken = null;
|
||||||
noMoreResults = false;
|
noMoreResults = false;
|
||||||
|
pageId = 0L;
|
||||||
fetchNearbyPlacesAndPresent(location);
|
fetchNearbyPlacesAndPresent(location);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -128,23 +131,38 @@ public class PlacesFragment extends Fragment {
|
||||||
});
|
});
|
||||||
|
|
||||||
geocoderUtils = new GeocoderUtils(getActivity(), AppConstants.GOOGLE_API_KEY);
|
geocoderUtils = new GeocoderUtils(getActivity(), AppConstants.GOOGLE_API_KEY);
|
||||||
|
BufferedReader br = null;
|
||||||
try (BufferedReader br = new BufferedReader(
|
try {
|
||||||
new InputStreamReader(
|
br = new BufferedReader(
|
||||||
new FileInputStream(
|
new InputStreamReader(
|
||||||
new File(getActivity().getCacheDir(),
|
new FileInputStream(
|
||||||
GooglePlacesConstants.GOOGLE_PLACES_CACHE_FILE))))) {
|
new File(getActivity().getCacheDir(),
|
||||||
|
GooglePlacesConstants.GOOGLE_PLACES_CACHE_FILE))));
|
||||||
|
|
||||||
Gson g = new GsonBuilder().create();
|
Gson g = new GsonBuilder().create();
|
||||||
GooglePlacesState state = g.fromJson(br, GooglePlacesState.class);
|
GooglePlacesState state = g.fromJson(br, GooglePlacesState.class);
|
||||||
places = state.getPlaces();
|
places = state.getPlaces();
|
||||||
nextPageToken = state.getNextPageToken();
|
nextPageToken = state.getNextPageToken();
|
||||||
noMoreResults = state.isNoMoreResults();
|
noMoreResults = state.isNoMoreResults();
|
||||||
|
pageId = state.getPageId();
|
||||||
|
|
||||||
|
if (places != null && !places.isEmpty()) {
|
||||||
|
ListView placesWidget = (ListView) getView().findViewById(R.id.google_places);
|
||||||
|
placesWidget.setAdapter(new PlacesAdapter(getActivity(), places));
|
||||||
|
}
|
||||||
|
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
// no cache, ok, it can happen
|
// no cache, ok, it can happen
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
lg.error("I/O error during reading cache file", e);
|
lg.error("I/O error during reading cache file", e);
|
||||||
|
} finally {
|
||||||
|
if (br != null) {
|
||||||
|
try {
|
||||||
|
br.close();
|
||||||
|
} catch (IOException e) {
|
||||||
|
lg.error("I/O error", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -157,6 +175,8 @@ public class PlacesFragment extends Fragment {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getActivity().setTitle("Google places search");
|
||||||
|
|
||||||
Location location = LocationUtils.getLastKnownLocation(getActivity());
|
Location location = LocationUtils.getLastKnownLocation(getActivity());
|
||||||
if (location == null) {
|
if (location == null) {
|
||||||
return;
|
return;
|
||||||
|
@ -227,7 +247,9 @@ public class PlacesFragment extends Fragment {
|
||||||
|
|
||||||
@Subscribe
|
@Subscribe
|
||||||
public void handleGooglePlacesResult(GooglePlacesResponse response) {
|
public void handleGooglePlacesResult(GooglePlacesResponse response) {
|
||||||
lg.debug("Handling google places results with original {} and next page token {}",
|
++pageId;
|
||||||
|
lg.debug("Page {}. Handling google places results with original {} and next page token {}",
|
||||||
|
pageId,
|
||||||
response.getOriginalPageToken(),
|
response.getOriginalPageToken(),
|
||||||
response.getNextPageToken());
|
response.getNextPageToken());
|
||||||
|
|
||||||
|
@ -239,7 +261,7 @@ public class PlacesFragment extends Fragment {
|
||||||
} else {
|
} else {
|
||||||
places.addAll(response.getPlaces());
|
places.addAll(response.getPlaces());
|
||||||
PlacesAdapter adapter = (PlacesAdapter)placesWidget.getAdapter();
|
PlacesAdapter adapter = (PlacesAdapter)placesWidget.getAdapter();
|
||||||
adapter.addAll(places);
|
adapter.addAll(response.getPlaces());
|
||||||
}
|
}
|
||||||
|
|
||||||
nextPageToken = response.getNextPageToken();
|
nextPageToken = response.getNextPageToken();
|
||||||
|
@ -258,22 +280,40 @@ public class PlacesFragment extends Fragment {
|
||||||
state.setPlaces(places);
|
state.setPlaces(places);
|
||||||
state.setNextPageToken(nextPageToken);
|
state.setNextPageToken(nextPageToken);
|
||||||
state.setNoMoreResults(noMoreResults);
|
state.setNoMoreResults(noMoreResults);
|
||||||
|
state.setPageId(pageId);
|
||||||
|
|
||||||
Gson g = new GsonBuilder().create();
|
Gson g = new GsonBuilder().create();
|
||||||
try (BufferedWriter bw = new BufferedWriter(
|
BufferedWriter bw = null;
|
||||||
|
try {
|
||||||
|
bw = new BufferedWriter(
|
||||||
new OutputStreamWriter(
|
new OutputStreamWriter(
|
||||||
new FileOutputStream(
|
new FileOutputStream(
|
||||||
new File(getActivity().getCacheDir(),
|
new File(getActivity().getCacheDir(),
|
||||||
GooglePlacesConstants.GOOGLE_PLACES_CACHE_FILE))))) {
|
GooglePlacesConstants.GOOGLE_PLACES_CACHE_FILE))));
|
||||||
|
|
||||||
g.toJson(state, bw);
|
g.toJson(state, bw);
|
||||||
bw.close();
|
|
||||||
|
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
lg.error("File not found error during saving a state", e);
|
lg.error("File not found error during saving a state", e);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
lg.error("I/O error during saving a state");
|
lg.error("I/O error during saving a state");
|
||||||
|
} finally {
|
||||||
|
if (bw != null) {
|
||||||
|
try {
|
||||||
|
bw.close();
|
||||||
|
} catch (IOException e) {
|
||||||
|
lg.error("I/O Error", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Subscribe
|
||||||
|
public void refresh(RefreshEvent event) {
|
||||||
|
places = null;
|
||||||
|
nextPageToken = null;
|
||||||
|
noMoreResults = false;
|
||||||
|
fetchNearbyPlacesAndPresent(LocationUtils.getLastKnownLocation(getActivity()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue