Android Open Source - Todo Task Io






From Project

Back to project page Todo.

License

The source code is released under:

GNU General Public License

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

/**
 * This file is part of Todo.txt for Android, an app for managing your todo.txt file (http://todotxt.com).
 */* w  w w  .  j a v a 2 s. c o  m*/
 * Copyright (c) 2009-2013 Todo.txt for Android contributors (http://todotxt.com)
 *
 * LICENSE:
 *
 * Todo.txt for Android 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 2 of the License, or (at your option) any
 * later version.
 *
 * Todo.txt for Android 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 Todo.txt for Android. If not, see
 * <http://www.gnu.org/licenses/>.
 *
 * Todo.txt for Android's source code is available at https://github.com/ginatrapani/todo.txt-android
 *
 * @author Todo.txt for Android contributors <todotxt@yahoogroups.com>
 * @license http://www.gnu.org/licenses/gpl.html
 * @copyright 2009-2013 Todo.txt for Android contributors (http://todotxt.com)
 */

package com.todotxt.todotxttouch.util;

import android.util.Log;
import com.todotxt.todotxttouch.task.Task;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

/**
 * A utility class for performing Task level I/O
 * @author Tim Barlotta
 */
public class TaskIo {
  private final static String TAG = TaskIo.class.getSimpleName();

  private static boolean sWindowsLineBreaks = false;

  public static ArrayList<Task> loadTasksFromFile(File file) throws IOException {
    ArrayList<Task> items = new ArrayList<Task>();
    BufferedReader in = null;

    if (!file.exists()) {
      Log.w(TAG, file.getAbsolutePath() + " does not exist!");
    } else {
      InputStream is = new FileInputStream(file);

      try {
        in = new BufferedReader(new InputStreamReader(is));
        String line;
        long counter = 0L;
        sWindowsLineBreaks = false;

        while ((line = readLine(in)) != null) {
          line = line.trim();

          if (line.length() > 0) {
            items.add(new Task(counter, line));
          }

          counter++;
        }
      } finally {
        Util.closeStream(in);
        Util.closeStream(is);
      }
    }

    return items;
  }

  private static String readLine(BufferedReader r) throws IOException {
    StringBuilder sb = new StringBuilder();
    boolean eol = false;
    int c;

    while (!eol && (c = r.read()) >= 0) {
      sb.append((char) c);
      eol = (c == '\r' || c == '\n');

      // check for \r\n
      if (c == '\r') {
        r.mark(1);
        c = r.read();

        if (c != '\n') {
          r.reset();
        } else {
          sWindowsLineBreaks = true;
          sb.append((char) c);
        }
      }
    }

    return sb.length() == 0 ? null : sb.toString();
  }

  public static ArrayList<String> loadTasksStrFromFile(File file) throws IOException {
    ArrayList<String> items = new ArrayList<String>();
    BufferedReader in = null;

    if (!file.exists()) {
      Log.w(TAG, file.getAbsolutePath() + " does not exist!");
    } else {
      InputStream is = new FileInputStream(file);

      try {
        in = new BufferedReader(new InputStreamReader(is));
        String line;
        long counter = 0L;
        sWindowsLineBreaks = false;

        while ((line = readLine(in)) != null) {
          line = line.trim();

          if (line.length() > 0) {
            items.add(line);
          }

          counter++;
        }
      } finally {
        Util.closeStream(in);
        Util.closeStream(is);
      }
    }

    return items;
  }

  public static void writeToFile(List<Task> tasks, File file) {
    writeToFile(tasks, file, false);
  }

  public static void writeToFile(List<Task> tasks, File file, boolean append) {
    try {
      if (!Util.isDeviceWritable()) {
        throw new IOException("Device is not writable!");
      }

      Util.createParentDirectory(file);
      FileWriter fw = new FileWriter(file, append);

      for (int i = 0; i < tasks.size(); ++i) {
        String fileFormat = tasks.get(i).inFileFormat();
        fw.write(fileFormat);

        if (sWindowsLineBreaks) {
          // Log.v(TAG, "Using Windows line breaks");
          fw.write("\r\n");
        } else {
          // Log.v(TAG, "NOT using Windows line breaks");
          fw.write("\n");
        }
      }

      fw.close();
    } catch (Exception e) {
      Log.e(TAG, e.getMessage());
    }
  }
}




Java Source Code List

.MainActivity.java
com.todotxt.todotxttouch.AddTask.java
com.todotxt.todotxttouch.Constants.java
com.todotxt.todotxttouch.HelpActivity.java
com.todotxt.todotxttouch.PeriodicSyncStarter.java
com.todotxt.todotxttouch.Preferences.java
com.todotxt.todotxttouch.RelativeLayoutCheckable.java
com.todotxt.todotxttouch.SyncerService.java
com.todotxt.todotxttouch.TodoApplication.java
com.todotxt.todotxttouch.TodoException.java
com.todotxt.todotxttouch.TodoLocationPreference.java
com.todotxt.todotxttouch.TodoPreferences.java
com.todotxt.todotxttouch.TodoTxtTouch.java
com.todotxt.todotxttouch.TodoWidgetProvider.java
com.todotxt.todotxttouch.UpgradeHandler.java
com.todotxt.todotxttouch.remote.Client.java
com.todotxt.todotxttouch.remote.PullTodoResult.java
com.todotxt.todotxttouch.remote.RemoteClientManager.java
com.todotxt.todotxttouch.remote.RemoteClient.java
com.todotxt.todotxttouch.remote.RemoteConflictException.java
com.todotxt.todotxttouch.remote.RemoteException.java
com.todotxt.todotxttouch.remote.RemoteFolderImpl.java
com.todotxt.todotxttouch.remote.RemoteFolder.java
com.todotxt.todotxttouch.task.AndFilter.java
com.todotxt.todotxttouch.task.ByContextFilter.java
com.todotxt.todotxttouch.task.ByPriorityFilter.java
com.todotxt.todotxttouch.task.ByProjectFilter.java
com.todotxt.todotxttouch.task.ByTextFilter.java
com.todotxt.todotxttouch.task.ContextParser.java
com.todotxt.todotxttouch.task.EndpointsTaskBagImpl.java
com.todotxt.todotxttouch.task.FilterFactory.java
com.todotxt.todotxttouch.task.Filter.java
com.todotxt.todotxttouch.task.LinkParser.java
com.todotxt.todotxttouch.task.LocalFileTaskRepository.java
com.todotxt.todotxttouch.task.LocalTaskRepository.java
com.todotxt.todotxttouch.task.MailAddressParser.java
com.todotxt.todotxttouch.task.OrFilter.java
com.todotxt.todotxttouch.task.PhoneNumberParser.java
com.todotxt.todotxttouch.task.PriorityTextSplitter.java
com.todotxt.todotxttouch.task.Priority.java
com.todotxt.todotxttouch.task.ProjectParser.java
com.todotxt.todotxttouch.task.Sort.java
com.todotxt.todotxttouch.task.TaskBagFactory.java
com.todotxt.todotxttouch.task.TaskBagImpl.java
com.todotxt.todotxttouch.task.TaskBag.java
com.todotxt.todotxttouch.task.TaskPersistException.java
com.todotxt.todotxttouch.task.Task.java
com.todotxt.todotxttouch.task.TextSplitter.java
com.todotxt.todotxttouch.util.CursorPositionCalculator.java
com.todotxt.todotxttouch.util.Path.java
com.todotxt.todotxttouch.util.RelativeDate.java
com.todotxt.todotxttouch.util.Strings.java
com.todotxt.todotxttouch.util.TaskIo.java
com.todotxt.todotxttouch.util.Tree.java
com.todotxt.todotxttouch.util.Util.java
com.todotxt.todotxttouch.widget.ListWidgetProvider.java
com.todotxt.todotxttouch.widget.ListWidgetService.java
de.timroes.swipetodismiss.SwipeDismissList.java
uk.co.senab.actionbarpulltorefresh.extras.actionbarsherlock.AbsDefaultHeaderTransformer.java
uk.co.senab.actionbarpulltorefresh.extras.actionbarsherlock.PullToRefreshAttacher.java
uk.co.senab.actionbarpulltorefresh.library.DefaultHeaderTransformer.java
uk.co.senab.actionbarpulltorefresh.library.InstanceCreationUtils.java
uk.co.senab.actionbarpulltorefresh.library.PullToRefreshAttacher.java
uk.co.senab.actionbarpulltorefresh.library.PullToRefreshLayout.java
uk.co.senab.actionbarpulltorefresh.library.viewdelegates.AbsListViewDelegate.java
uk.co.senab.actionbarpulltorefresh.library.viewdelegates.ScrollYDelegate.java
uk.co.senab.actionbarpulltorefresh.library.viewdelegates.WebViewDelegate.java
voodsingular.todo.MyEndpointEndpoint.java
voodsingular.todo.MyEndpoint.java
voodsingular.todo.TaskBean.java