Android Open Source - Mamytas List Processor






From Project

Back to project page Mamytas.

License

The source code is released under:

GNU General Public License

If you think the Android project Mamytas 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

package mn.aug.restfulandroid.service;
//  ww  w.j  a  v a2s  .  co  m
import android.content.Context;

import mn.aug.restfulandroid.provider.ListsDBAccess;
import mn.aug.restfulandroid.provider.OwnershipDBAccess;
import mn.aug.restfulandroid.rest.RestMethod;
import mn.aug.restfulandroid.rest.RestMethodFactory;
import mn.aug.restfulandroid.rest.RestMethodResult;
import mn.aug.restfulandroid.rest.resource.Listw;
import mn.aug.restfulandroid.security.AuthorizationManager;

/**
 * Created by Paul on 11/11/2014.
 */
public class ListProcessor {

    private ProcessorCallback mCallback;
    private Context mContext;
    private OwnershipDBAccess ownershipDBAccess;
    private ListsDBAccess listsDBAccess;


    public ListProcessor(Context context) {

        mContext = context;
        ownershipDBAccess = new OwnershipDBAccess(mContext);
        listsDBAccess = new ListsDBAccess(mContext);
    }


    public void putList(ProcessorCallback callback, long list_id, byte[] body) {

        /*
        Processor is a POJO
      - Processor for each resource type
      - Processor can handle each method on the resource that is supported.
      - Processor needs a callback (which is how the request gets back to the service)
      - Processor uses a RESTMethod - created through a RESTMethodFactory.create(parameterized) or .createGetTask()

      First iteration had a callback that updated the content provider
      with the resources. But the eventual implementation simply block
      for the response and do the update.
     */

        // (4) Insert-Update the ContentProvider with a status column and
        // results column
        // Look at ContentProvider example, and build a content provider
        // that tracks the necessary data.
        listsDBAccess.open();
        listsDBAccess.setStatus(list_id, "post_update");
        listsDBAccess.close();
        // (5) Call the REST method
        // Create a RESTMethod class that knows how to assemble the URL,
        // and performs the HTTP operation.

        RestMethod<Listw> putListMethod = RestMethodFactory.getInstance(mContext).getRestMethod(
                Listw.CONTENT_URI, RestMethodFactory.Method.PUT, null, body, list_id);
        RestMethodResult<Listw> result = putListMethod.execute();

        /*
                 * (8) Insert-Update the ContentProvider status, and insert the result
         * on success Parsing the JSON response (on success) and inserting into
         * the content provider
         */
         Listw list = result.getResource();

        if (result.getStatusCode() == 200 && list_id ==list.getId()) {

            listsDBAccess.open();
            listsDBAccess.setStatus(list_id, "up_to_date");
            listsDBAccess.close();


        }

        // (9) Operation complete callback to Service

        callback.send(result.getStatusCode());

    }

    public void deleteList(ProcessorCallback callback, long list_id) {

        /*
        Processor is a POJO
      - Processor for each resource type
      - Processor can handle each method on the resource that is supported.
      - Processor needs a callback (which is how the request gets back to the service)
      - Processor uses a RESTMethod - created through a RESTMethodFactory.create(parameterized) or .createGetTask()

      First iteration had a callback that updated the content provider
      with the resources. But the eventual implementation simply block
      for the response and do the update.
     */

        // (4) Insert-Update the ContentProvider with a status column and
        // results column
        // Look at ContentProvider example, and build a content provider
        // that tracks the necessary data.
        listsDBAccess.open();
        listsDBAccess.setStatus(list_id, "deleting");
        listsDBAccess.close();
        // (5) Call the REST method
        // Create a RESTMethod class that knows how to assemble the URL,
        // and performs the HTTP operation.

        RestMethod<Listw> deleteListMethod = RestMethodFactory.getInstance(mContext).getRestMethod(
                Listw.CONTENT_URI, RestMethodFactory.Method.DELETE, null,null,list_id);
        RestMethodResult<Listw> result = deleteListMethod.execute();

        /*
                 * (8) Insert-Update the ContentProvider status, and insert the result
         * on success Parsing the JSON response (on success) and inserting into
         * the content provider
         */

        if (result.getStatusCode() == 200) {

            String user = AuthorizationManager.getInstance(mContext).getUser();
            ownershipDBAccess.open();
            ownershipDBAccess.removeListFromUser(user, list_id);
            ownershipDBAccess.close();

        }

        // (9) Operation complete callback to Service

        callback.send(result.getStatusCode());

    }



}




Java Source Code List

mn.aug.restfulandroid.activity.AboutActivity.java
mn.aug.restfulandroid.activity.LoginActivity.java
mn.aug.restfulandroid.activity.ProjectEditor.java
mn.aug.restfulandroid.activity.ProjectsActivity.java
mn.aug.restfulandroid.activity.ProjectsArrayAdapter.java
mn.aug.restfulandroid.activity.TaskActivity.java
mn.aug.restfulandroid.activity.TaskEditor.java
mn.aug.restfulandroid.activity.TasksActivity.java
mn.aug.restfulandroid.activity.TasksArrayAdapter.java
mn.aug.restfulandroid.activity.TimerServiceHelper.java
mn.aug.restfulandroid.activity.TimerService.java
mn.aug.restfulandroid.activity.TimersArrayAdapter.java
mn.aug.restfulandroid.activity.base.RESTfulActivity.java
mn.aug.restfulandroid.activity.base.RESTfulListActivity.java
mn.aug.restfulandroid.activity.base.UndoBarController.java
mn.aug.restfulandroid.provider.CommentsDBAccess.java
mn.aug.restfulandroid.provider.ListsDBAccess.java
mn.aug.restfulandroid.provider.OwnershipDBAccess.java
mn.aug.restfulandroid.provider.ProviderDbHelper.java
mn.aug.restfulandroid.provider.RemindersDBAccess.java
mn.aug.restfulandroid.provider.TasksDBAccess.java
mn.aug.restfulandroid.provider.UsersDBAccess.java
mn.aug.restfulandroid.rest.AbstractRestMethod.java
mn.aug.restfulandroid.rest.DeleteListRestMethod.java
mn.aug.restfulandroid.rest.DeleteTaskRestMethod.java
mn.aug.restfulandroid.rest.GetListsRestMethod.java
mn.aug.restfulandroid.rest.GetTasksRestMethod.java
mn.aug.restfulandroid.rest.GetTimersRestMethod.java
mn.aug.restfulandroid.rest.LoginRestMethod.java
mn.aug.restfulandroid.rest.PostListRestMethod.java
mn.aug.restfulandroid.rest.PostTaskRestMethod.java
mn.aug.restfulandroid.rest.PostTimerRestMethod.java
mn.aug.restfulandroid.rest.PutListRestMethod.java
mn.aug.restfulandroid.rest.PutTaskRestMethod.java
mn.aug.restfulandroid.rest.PutTimerRestMethod.java
mn.aug.restfulandroid.rest.Request.java
mn.aug.restfulandroid.rest.Response.java
mn.aug.restfulandroid.rest.RestClient.java
mn.aug.restfulandroid.rest.RestMethodFactory.java
mn.aug.restfulandroid.rest.RestMethodResult.java
mn.aug.restfulandroid.rest.RestMethod.java
mn.aug.restfulandroid.rest.ShareListRestMethod.java
mn.aug.restfulandroid.rest.resource.Comment.java
mn.aug.restfulandroid.rest.resource.Lists.java
mn.aug.restfulandroid.rest.resource.Listw.java
mn.aug.restfulandroid.rest.resource.Login.java
mn.aug.restfulandroid.rest.resource.Reminder.java
mn.aug.restfulandroid.rest.resource.Resource.java
mn.aug.restfulandroid.rest.resource.TaskList.java
mn.aug.restfulandroid.rest.resource.Task.java
mn.aug.restfulandroid.rest.resource.Tasks.java
mn.aug.restfulandroid.rest.resource.Timer.java
mn.aug.restfulandroid.rest.resource.Timers.java
mn.aug.restfulandroid.security.AuthorizationManager.java
mn.aug.restfulandroid.security.RequestSigner.java
mn.aug.restfulandroid.service.ListProcessor.java
mn.aug.restfulandroid.service.ListsProcessor.java
mn.aug.restfulandroid.service.LoginProcessor.java
mn.aug.restfulandroid.service.ProcessorCallback.java
mn.aug.restfulandroid.service.ShareProcessor.java
mn.aug.restfulandroid.service.TaskProcessor.java
mn.aug.restfulandroid.service.TasksProcessor.java
mn.aug.restfulandroid.service.TimersProcessor.java
mn.aug.restfulandroid.service.WunderlistServiceHelper.java
mn.aug.restfulandroid.service.WunderlistService.java
mn.aug.restfulandroid.util.DateHelper.java
mn.aug.restfulandroid.util.DatePickerFragment.java
mn.aug.restfulandroid.util.Logger.java
mn.aug.restfulandroid.util.TimePickerFragment.java