net.eledge.android.europeana.search.task.SearchTask.java Source code

Java tutorial

Introduction

Here is the source code for net.eledge.android.europeana.search.task.SearchTask.java

Source

/*
 * Copyright (c) 2013-2015 eLedge.net and the original author or authors.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package net.eledge.android.europeana.search.task;

import android.app.Activity;
import android.os.AsyncTask;

import com.google.android.gms.analytics.HitBuilders;
import com.google.android.gms.analytics.Tracker;

import net.eledge.android.europeana.EuropeanaApplication;
import net.eledge.android.europeana.search.SearchController;
import net.eledge.android.europeana.search.listeners.SearchTaskListener;
import net.eledge.android.europeana.search.model.SearchItems;
import net.eledge.android.europeana.tools.UriHelper;

import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.web.client.RestTemplate;

import java.util.Date;

public class SearchTask extends AsyncTask<String, Void, SearchItems> {

    private int pageLoad = 1;

    private long startTime;

    private final SearchController searchController = SearchController._instance;
    private final Activity mActivity;

    public SearchTask(Activity activity, int pageLoad) {
        super();
        mActivity = activity;
        this.pageLoad = pageLoad;
    }

    @Override
    protected void onPreExecute() {
        for (SearchTaskListener l : searchController.listeners.values()) {
            if (isCancelled()) {
                return;
            }
            if (l != null) {
                l.onSearchStart(false);
            }
        }
        startTime = new Date().getTime();
    }

    @Override
    protected SearchItems doInBackground(String... terms) {
        String url = UriHelper.getSearchUrl(
                ((EuropeanaApplication) mActivity.getApplication()).getEuropeanaPublicKey(), terms, pageLoad,
                searchController.searchPageSize);
        RestTemplate restTemplate = new RestTemplate();
        restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
        return restTemplate.getForObject(url, SearchItems.class);
    }

    @Override
    protected void onPostExecute(SearchItems result) {
        Tracker tracker = ((EuropeanaApplication) mActivity.getApplication()).getAnalyticsTracker();
        tracker.send(new HitBuilders.TimingBuilder().setCategory("Tasks").setValue(new Date().getTime() - startTime)
                .setVariable("SearchTask").build());
        if (isCancelled()) {
            return;
        }
        mActivity.runOnUiThread(new ListenerNotifier(result));
    }

    private class ListenerNotifier implements Runnable {

        private final SearchItems result;

        public ListenerNotifier(SearchItems result) {
            this.result = result;
        }

        public void run() {
            searchController.onSearchFinish(result);
            for (SearchTaskListener l : searchController.listeners.values()) {
                if (l != null) {
                    l.onSearchItemsFinish(result);
                }
            }
        }
    }

}