Android Open Source - khandroid Fragment Kat Executor Functionality






From Project

Back to project page khandroid.

License

The source code is released under:

Apache License

If you think the Android project khandroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2012-2014 Ognyan Bankov
 *//from  www .  jav  a  2s.c om
 * 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 com.github.khandroid.kat;

import org.slf4j.LoggerFactory;

import android.app.Fragment;
import android.os.AsyncTask;
import android.os.Bundle;

import com.github.khandroid.kat.KhandroidAsyncTask.KatListener;
import com.github.khandroid.ui_functionality.FragmentAttachedFunctionality;
import com.github.khandroid.ui_functionality.HostFragment;


public class FragmentKatExecutorFunctionality<T, U, V> extends FragmentAttachedFunctionality
        implements KatExecutor<T, U, V>, KatListener<U, V> {
    private TaskExecutorListener<U, V> mExecutorListener;
    private String mTaskFragmentTag;
    private KatFragment mTaskFragment;

    private final org.slf4j.Logger mLogger = LoggerFactory
            .getLogger(FragmentKatExecutorFunctionality.class.getSimpleName());


    public FragmentKatExecutorFunctionality() {
        super();
    }


    public FragmentKatExecutorFunctionality(TaskExecutorListener<U, V> executorListener,
            String customTaskTag) {
        super();
        mTaskFragmentTag = customTaskTag;
        mExecutorListener = executorListener;
    }


    @Override
    public void attachTo(HostFragment fragment) {
        super.attachTo(fragment);
        mTaskFragmentTag = fragment.getClass().getSimpleName();
    }


    @SuppressWarnings("unchecked")
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        mTaskFragment = (KatFragment) getFragment().getFragmentManager()
                .findFragmentByTag(mTaskFragmentTag);

        if (mTaskFragment != null) {
            mLogger.debug("Found previous TaskFragment");
            mTaskFragment.attach(this);

            AsyncTask.Status status = mTaskFragment.getTaskStatus();
            if (status == AsyncTask.Status.RUNNING) {
                onContinueWithTask();
            }
        }
    }


    @Override
    public void onDestroy() {
        super.onDestroy();

        if (mTaskFragment != null) {
            if (getFragment().getActivity().isFinishing()) {
                mTaskFragment.cancelTask(true);
            }

            mTaskFragment.detach();
        }
    }


    protected void onContinueWithTask() {
        if (mExecutorListener != null) {
            mExecutorListener.onContinueWithTask();
        }
    }


    private void closeTaskFragment() {
        if (mTaskFragment != null) {
            getFragment().getFragmentManager().beginTransaction().remove(mTaskFragment)
                    .commitAllowingStateLoss();
            mTaskFragment = null;
        }
    }


    @Override
    public void onTaskCompleted(V result) {
        mLogger.debug("About to close task fragment");
        closeTaskFragment();

        if (mExecutorListener != null) {
            mExecutorListener.onTaskCompleted(result);
        }
    }


    @Override
    public void onTaskCancelled() {
        closeTaskFragment();

        if (mExecutorListener != null) {
            mExecutorListener.onTaskCancelled();
        }
    }


    @Override
    public void onTaskPublishProgress(U[] progress) {
        if (mExecutorListener != null) {
            mExecutorListener.onTaskPublishProgress(progress);
        }
    }


    @Override
    public void execute(KhandroidAsyncTask<T, U, V> task,
                        TaskExecutorListener<U, V> executorListener,
                        T... params) {
        mExecutorListener = executorListener;

        execute(task, params);
    }


    @Override
    public void execute(KhandroidAsyncTask<T, U, V> task, T... params) {
        mTaskFragment = new KatFragment(task, params);
        mTaskFragment.setTargetFragment(getFragment(), 0);
        mTaskFragment.attach(this);
        getFragment().getFragmentManager().beginTransaction().add(mTaskFragment, mTaskFragmentTag)
                .commit();
    }

    private class KatFragment extends Fragment implements KatListener<U, V> {
        private KhandroidAsyncTask<T, U, V> mTask;
        private KatListener<U, V> mTaskListener;


        public KatFragment(KhandroidAsyncTask<T, U, V> task, T... params) {
            super();
            setRetainInstance(true);
            mTask = task;
            mTask.execute(this, params);
            mLogger.debug("Creating TaskFragment");
        }


        public void attach(FragmentKatExecutorFunctionality<T, U, V> executorFunc) {
            if (executorFunc != null) {
                if (mTaskListener == null && mTaskListener != executorFunc) {
                    mLogger.debug("Attaching TaskFragment to executor");
                    mTaskListener = executorFunc;
                } else {
                    throw new IllegalStateException("There is another executor functionality already attached");
                }
            } else {
                throw new IllegalArgumentException("executorFunc is null");
            }
        }


        public void detach() {
            mLogger.debug("Detaching TaskFragment");
            mTaskListener = null;
        }


        @Override
        public void onDestroy() {
            super.onDestroy();
            mTask.cancel(true);
            mLogger.debug("Destroying TaskFragment");
        }


        @Override
        public void onTaskPublishProgress(U[] progress) {
            if (mTaskListener != null) {
                mTaskListener.onTaskPublishProgress(progress);
            }

        }


        @Override
        public void onTaskCancelled() {
            if (mTaskListener != null) {
                mTaskListener.onTaskCancelled();
            }
        }


        @Override
        public void onTaskCompleted(V result) {
            if (mTaskListener != null) {
                mTaskListener.onTaskCompleted(result);
            }
        }


        public AsyncTask.Status getTaskStatus() {
            return mTask.getStatus();
        }


        public boolean cancelTask(boolean mayInterruptIfRunning) {
            return mTask.cancel(mayInterruptIfRunning);
        }
    }


    @Override
    public boolean cancelTask(boolean mayInterruptIfRunning) {
        boolean ret = false;

        if (mTaskFragment != null) {
            ret = mTaskFragment.cancelTask(mayInterruptIfRunning);
        }

        return ret;
    }


    @Override
    public boolean isExecuting() {
        boolean ret = false;

        if (mTaskFragment != null) {
            ret = true;
        }

        return ret;
    }
}




Java Source Code List

com.github.khandroid.JsonFunctionality.java
com.github.khandroid.http.functionality.HttpFunctionalityImpl.java
com.github.khandroid.http.functionality.HttpFunctionalityWCookiesImpl.java
com.github.khandroid.http.functionality.HttpFunctionalityWCookies.java
com.github.khandroid.http.functionality.HttpFunctionality.java
com.github.khandroid.http.misc.FileDownloader.java
com.github.khandroid.http.misc.KhandroidBasicResponseHandler.java
com.github.khandroid.http.misc.SynchronizedCookieStore.java
com.github.khandroid.http.request.GetRequestBuilder.java
com.github.khandroid.http.request.PostRequestBuilder.java
com.github.khandroid.http.request.RequestBuilder.java
com.github.khandroid.http.ssl.DefaultSslHttpClient.java
com.github.khandroid.http.ssl.KhandroidX509TrustManager.java
com.github.khandroid.http.ssl.SslSocketFactory.java
com.github.khandroid.kat.ActivityKatExecutorFunctionality.java
com.github.khandroid.kat.FragmentKatExecutorFunctionality.java
com.github.khandroid.kat.KatExecutor.java
com.github.khandroid.kat.KhandroidAsyncTask.java
com.github.khandroid.misc.ActivityUtils.java
com.github.khandroid.misc.DateTimeHelper.java
com.github.khandroid.misc.ImageUtils.java
com.github.khandroid.misc.LocationUtils.java
com.github.khandroid.misc.NetUtils.java
com.github.khandroid.misc.StringUtils.java
com.github.khandroid.misc.ViewUtils.java
com.github.khandroid.rest.InvalidJsonString.java
com.github.khandroid.rest.InvalidResponseException.java
com.github.khandroid.rest.KhRestExchangeBuilder.java
com.github.khandroid.rest.KhRestFunctionalityImpl.java
com.github.khandroid.rest.KhRestFunctionality.java
com.github.khandroid.rest.KhRestResult.java
com.github.khandroid.rest.MalformedResponseException.java
com.github.khandroid.rest.RawRestResult.java
com.github.khandroid.rest.RestAsyncTask.java
com.github.khandroid.rest.RestExchangeBuilder.java
com.github.khandroid.rest.RestExchangeFailedException.java
com.github.khandroid.rest.RestExchangeOutcome.java
com.github.khandroid.rest.RestExchange.java
com.github.khandroid.rest.RestFragmentFunctionality.java
com.github.khandroid.rest.RestFunctionalityImpl.java
com.github.khandroid.rest.RestFunctionality.java
com.github.khandroid.rest.RestPersistFragment.java
com.github.khandroid.rest.RestResponse.java
com.github.khandroid.rest.RestResult.java
com.github.khandroid.rest.UnexpectedResponseException.java
com.github.khandroid.state.StateEvent.java
com.github.khandroid.state.StateMachineImpl.java
com.github.khandroid.state.StateMachine.java
com.github.khandroid.state.StateSkeleton.java
com.github.khandroid.state.State.java
com.github.khandroid.state_app.AppStateContextImpl.java
com.github.khandroid.state_app.AppStateContext.java
com.github.khandroid.state_app.AppState.java
com.github.khandroid.state_app.InvalidAppStateException.java
com.github.khandroid.state_app.SkeletonAppState.java
com.github.khandroid.state_app.StateEvent.java
com.github.khandroid.ui_functionality.ActivityAttachable.java
com.github.khandroid.ui_functionality.ActivityAttachedFunctionality.java
com.github.khandroid.ui_functionality.ActivityUniqueAttachedFunctionality.java
com.github.khandroid.ui_functionality.FragmentAttachable.java
com.github.khandroid.ui_functionality.FragmentAttachedFunctionality.java
com.github.khandroid.ui_functionality.FragmentUniqueAttachedFunctionality.java
com.github.khandroid.ui_functionality.HostActivity.java
com.github.khandroid.ui_functionality.HostFragment.java
com.github.khandroid.ui_functionality.SuperNotCalledException.java
com.github.khandroid.views.ImageViewWithContextMenuInfo.java
com.github.khandroid.volley.GetJsonObjectRequestBuilder.java
com.github.khandroid.volley.GetStringRequestBuilder.java
com.github.khandroid.volley.GetVRestRequestBuilder.java
com.github.khandroid.volley.PostJsonObjectRequestBuilder.java
com.github.khandroid.volley.PostRequestBuilderImpl.java
com.github.khandroid.volley.PostRequestBuilder.java
com.github.khandroid.volley.PostStringRequestBuilder.java
com.github.khandroid.volley.PostVRestRequestBuilder.java
com.github.khandroid.volley.RequestBuilder.java
com.github.khandroid.volley.VRestRequestBuilder.java
com.github.khandroid.volley.VRestRequest.java