Android Open Source - syncarnet Task List






From Project

Back to project page syncarnet.

License

The source code is released under:

GNU General Public License

If you think the Android project syncarnet 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) 2013-14 Nicolas Miller, Florian Paindorge
 *// w  w w .  j  a va2s.  c om
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

package fr.syncarnet.tasks;

import android.util.Log;

import java.util.UUID;
import java.util.ArrayList;
import java.util.Collections;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import java.io.Serializable;

public class TaskList extends ArrayList<Task> implements Serializable {
  private static final String TAG = "SynCarnet";
  private DeletedTasks deletedTasks = new DeletedTasks();
  private ArrayList<String> projects = new ArrayList<String>();

  /**
   * Inserts a new task at the adequate position based on its due date and priority.
   */
  @Override
  public boolean add(Task task) {
    Task.CompareWithDueAndPriority comparator = new Task.CompareWithDueAndPriority();
    int i = Collections.binarySearch(this, task, comparator); 
    i = (i<0) ? (-i)-1 : ++i;
    super.add(i, task);
    if(!projects.contains(task.getProject()) && task.getProject() != null) {
      projects.add(task.getProject());
    }
    return true;
  }

  /**
   * Returns whether or not a Task has been deleted from the TaskList
   */
  public boolean deleted(Task task) {
    return deletedTasks.contains(task.getUUID());
  }

  /**
   * Clears the deleted Tasks 
   */
  public void clearDeleted() {
    deletedTasks.clear();
  }

  public ArrayList<String> getProjects() {
    return projects;
  }

  /**
   * Removes a task from the TaskList and stores its UUID
   */
  @Override
  public boolean remove(Object o) {
    boolean r = super.remove(o);
    deletedTasks.add(((Task)o).getUUID());
    cleanProjects(((Task)o).getProject());
    return r;
  }

  /**
   * Removes a task from the TaskList and stores its UUID, also
   * removes the given project from the project list (useful when changing
   * a task's project).
   */
  public boolean remove(Object o, String project) {
    boolean r = super.remove(o);
    deletedTasks.add(((Task)o).getUUID());
    cleanProjects(project);
    return r;
  }

  /**
   * Removes a task from the TaskList and stores its UUID
   */
  @Override
  public Task remove(int position) {
    Task task = super.remove(position);
    deletedTasks.add(task.getUUID());
    cleanProjects(task.getProject());
    return task;
  }

  private void cleanProjects(String project) {
    boolean finished = true;
    int i = 0;
    int len = this.size();
    while(i < len && finished) {
      Task t = get(i);
      if(t.getProject() != null && t.getProject().equals(project)) {
        finished = false;
      }
      i++;
    }
    if(finished) {
      projects.remove(project);
    }
  }

  /**
   * Merges two TaskLists into one
   */
  public static TaskList merge(TaskList tl1, TaskList tl2) {
    TaskList tf = tl2;
    Task t2;
    for(Task t : tf) {
      if(tl1.deleted(t)) {
        tf.remove(t);
      }
    }
    for(Task t : tl1) {
      int pos = tf.indexOf(t);
      if(pos == -1) {
        if(!tf.deleted(t)) {
          tf.add(t);
        }
      } else {
        t2 = tf.get(pos);
        if(t.getModified() != t2.getModified()) {
          if(t.getDue() != null && t.getDue().equals(t2.getDue()) &&
              t.getPriority().equals(t2.getPriority())) {
            tf.set(pos, (t.getModified()>t2.getModified()) ? t : t2);
          } else {
            tf.remove(pos);
            tf.add((t.getModified()>t2.getModified()) ? t : t2);
          }
        }
      }
    }
    return tf;
  }

  public void setDeletedTasks(DeletedTasks dt) {
    this.deletedTasks = dt;
  }

  public DeletedTasks getDeletedTasks() {
    return deletedTasks;
  }

  public String jsonify() {
    JSONObject jsonTL = new JSONObject();
    JSONArray jsonTasks = new JSONArray();
    JSONArray jsonProjects = new JSONArray();
    try {
      for (int i = 0; i < this.size(); i++)
        jsonTasks.put(this.get(i).jsonify());
      jsonTL.put("tasks", jsonTasks.toString());
      Log.d(TAG, "Added tasks to json");

      jsonTL.put("deletedTasks", deletedTasks.jsonify());
      Log.d(TAG, "Added deleted tasks to json");

      for (int i = 0; i < projects.size(); i++)
        jsonProjects.put(projects.get(i));
      jsonTL.put("projects", jsonProjects.toString());
      Log.d(TAG, "Added projects to json");
      return jsonTL.toString();
    } catch (JSONException e) {
      Log.e(TAG, "Exception while jsonifying");
      return "";
    }
  }

  public void unJsonify(String json) {
    try {
      JSONObject jsonTL = new JSONObject(json);
      JSONArray jsonTasks = new JSONArray(jsonTL.getString("tasks"));
      Task taskTemp;
      for (int i = 0; i< jsonTasks.length(); i++) {
        taskTemp = new Task();
        taskTemp.unJsonify(jsonTasks.getString(i));
        this.add(taskTemp);
      }
      Log.d(TAG, "Recreated tasks from json");

      deletedTasks.unJsonify(jsonTL.getString("deletedTasks"));
      Log.d(TAG, "Recreated deleted tasks from json");

      JSONArray jsonProjects = new JSONArray(jsonTL.getString("projects"));
      for (int i = 0; i< jsonProjects.length(); i++)
        this.projects.add(jsonProjects.getString(i));
      Log.d(TAG, "Recreated projects from json");
    } catch (JSONException e) {
      Log.e(TAG, "Exception while unjsonifying");
    }
  }
}




Java Source Code List

fr.syncarnet.ProjectsAdapter.java
fr.syncarnet.SynCarnet.java
fr.syncarnet.TaskAddFragment.java
fr.syncarnet.TaskEditFragment.java
fr.syncarnet.TaskListAdapter.java
fr.syncarnet.TaskListFragment.java
fr.syncarnet.helpers.PrioritySpinnerHelper.java
fr.syncarnet.sync.DeviceListActivity.java
fr.syncarnet.sync.PeerListAdapter.java
fr.syncarnet.sync.PeerListDialog.java
fr.syncarnet.sync.PeerList.java
fr.syncarnet.sync.PeerSelection.java
fr.syncarnet.sync.SynCarnetBroadcastReceiver.java
fr.syncarnet.sync.SyncBTService.java
fr.syncarnet.sync.SyncService.java
fr.syncarnet.sync.SyncedDevice.java
fr.syncarnet.sync.SyncedDevicesFragment.java
fr.syncarnet.sync.TaskListTransferService.java
fr.syncarnet.tasks.DeletedTasks.java
fr.syncarnet.tasks.Priority.java
fr.syncarnet.tasks.TaskList.java
fr.syncarnet.tasks.Task.java