Android Open Source - syncarnet Task






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  .java  2 s .co  m*/
 * 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 java.text.DateFormat; // Use theses two classes for any other manipulations with dates

import android.util.Log;

import java.util.Date; // rightNow = new Date().getTime(); (In Unix Time)
import java.util.UUID;
import java.util.Calendar;
import java.util.Comparator;

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

import java.io.Serializable;

/**
 * Each task in our todo list is an instance of this class
 */
public class Task implements Serializable {
  private static final String TAG = "SynCarnet";
  private String description;
  private String project=null;
  private Priority priority=Priority.MEDIUM;
  private UUID uuid;

  // Dates as Unix Time integers
  private Calendar due=null;
  private long entry;
  private long modified=-1;

  private DateFormat dateFormat = DateFormat.getDateInstance();

  /* Constructors */
  /** 
   * Builds a task object giving it a unique UUID and storing the current time as entry date.
   * @param description
   *   The description of the task
   * @param due
   *   Set it to <b>null</b> if not used
   * @param project
   *   Set it to <b>null</b> if not used
   * @param priority
   *   Set it to <b>MEDIUM</b> if not used
   */
  public Task(String description, Calendar due, String project, Priority priority) {
    this.entry = new Date().getTime();
    this.uuid = UUID.randomUUID();
    this.description = description;
    if(due != null) {
      due.set(Calendar.HOUR_OF_DAY, 0);
      due.set(Calendar.MINUTE, 0);
      due.set(Calendar.SECOND, 0);
      due.set(Calendar.MILLISECOND, 0);
    }
    this.due = due;
    if(project != null && !project.equals("")) {
      this.project = project;
    }
    this.priority = priority;
  }

  public Task() {
  }

  /* Setters */ 

  public void setDescription(String description) {
    this.modified = new Date().getTime();
    this.description = description;
  }

  /**
   * @param date
   *   The new date in UNIX time
   */
  public void setDue(Calendar date) {
    this.modified = new Date().getTime();
    if(date != null) {
      date.set(Calendar.HOUR_OF_DAY, 0);
      date.set(Calendar.MINUTE, 0);
      date.set(Calendar.SECOND, 0);
      date.set(Calendar.MILLISECOND, 0);
    }
    this.due = date;
  }

  public void setProject(String project) {
    this.modified = new Date().getTime();
    if(project != null && project.equals("")) {
      this.project = null;
    } else {
      this.project = project;
    }
  }

  /**
   * @param priority
   *   LOW - MEDIUM - HIGH
   */
  public void setPriority(Priority priority) {
    this.modified = new Date().getTime();
    this.priority = priority;
  }

  /* Getters */
  public String getDescription() {
    return this.description;
  }

  public String getFormattedDue() {
    if(due != null) {
      return dateFormat.format(due.getTime()); 
    } else {
      return "";
    }
  }

  public Calendar getDue() {
    return due;
  }

  public String getProject() {
    return project;
  }

  public Priority getPriority() {
    return priority;
  }

  public long getEntry() {
    return entry;
  }

  public long getModified() {
    return modified;
  }
  public UUID getUUID() {
    return uuid;
  }

  /* Comparators */
  public static class CompareWithDueAndPriority implements Comparator<Task> {
    /**
     * Note : not consistent with task's .equals
     */
    public int compare(Task t1, Task t2) {
      Calendar d1 = t1.getDue();
      Calendar d2 = t2.getDue();
      if(d1!=null && d2!=null) {
        int c = d1.compareTo(d2);
        if(c==0) {
          return t1.getPriority().compareTo(t2.getPriority());
        } else {
          return c;
        }
      } else if(d1==null && d2!=null) {
        return 1;
      } else if(d1!= null && d2==null) {
        return -1;
      } else {
        return t1.getPriority().compareTo(t2.getPriority());
      }
    }
  }

  /**
   * Compares two tasks whith their UUID.
   */
  public boolean equals(Object o) {
    if(!(o instanceof Task))
      return false;
    return uuid.equals(((Task)o).getUUID());
  }

  public int hashCode() {
    return uuid.hashCode();
  }

  public String jsonify() {
    JSONObject jsonTask = new JSONObject();
    try {
      jsonTask.put("description", this.description);
      String project = this.project != null ? this.project : "VAR_NULL";
      jsonTask.put("project", project);
      String priority = this.priority.toString();
      jsonTask.put("priority", priority);
      String uuid = this.uuid.toString();
      jsonTask.put("uuid", uuid);
      long due = this.due != null ? this.due.getTimeInMillis() : 0;
      jsonTask.put("due", due);
      jsonTask.put("entry", this.entry);
      jsonTask.put("modified", this.modified);
      return jsonTask.toString();
    } catch (JSONException e) {
      Log.e(TAG, "Exception while jsonifying");
      return "";
    }
  }

  public void unJsonify(String json) {
    try {
      JSONObject jsonTask = new JSONObject(json);
      this.description = jsonTask.getString("description");
      String project = jsonTask.getString("project");
      this.project = !project.equals("VAR_NULL") ? project : null;
      this.priority = Priority.valueOf(jsonTask.getString("priority"));
      this.uuid = UUID.fromString(jsonTask.getString("uuid"));
      Calendar due = null;
      long dueMillis = jsonTask.getLong("due");
      if (dueMillis != 0) {
        due = Calendar.getInstance();
        due.setTimeInMillis(dueMillis);
      }
      this.due = due;
      this.entry = jsonTask.getLong("entry");
      this.modified = jsonTask.getLong("modified");
    } 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