DbHandler.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* ownCloud Android client application
  2. * Copyright (C) 2011-2012 Bartek Przybylski
  3. * Copyright (C) 2012-2013 ownCloud Inc.
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2,
  7. * as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.db;
  19. import com.owncloud.android.Log_OC;
  20. import android.content.ContentValues;
  21. import android.content.Context;
  22. import android.database.Cursor;
  23. import android.database.sqlite.SQLiteDatabase;
  24. import android.database.sqlite.SQLiteOpenHelper;
  25. /**
  26. * Custom database helper for ownCloud
  27. *
  28. * @author Bartek Przybylski
  29. *
  30. */
  31. public class DbHandler {
  32. private SQLiteDatabase mDB;
  33. private OpenerHelper mHelper;
  34. private final String mDatabaseName = "ownCloud";
  35. private final int mDatabaseVersion = 3;
  36. private final String TABLE_INSTANT_UPLOAD = "DbHandler";
  37. public static final int UPLOAD_STATUS_UPLOAD_LATER = 0;
  38. public static final int UPLOAD_STATUS_UPLOAD_FAILED = 1;
  39. public DbHandler(Context context) {
  40. mHelper = new OpenerHelper(context);
  41. mDB = mHelper.getWritableDatabase();
  42. }
  43. public void close() {
  44. mDB.close();
  45. }
  46. public boolean putFileForLater(String filepath, String account, String message) {
  47. ContentValues cv = new ContentValues();
  48. cv.put("path", filepath);
  49. cv.put("account", account);
  50. cv.put("attempt", UPLOAD_STATUS_UPLOAD_LATER);
  51. cv.put("message", message);
  52. long result = mDB.insert(TABLE_INSTANT_UPLOAD, null, cv);
  53. Log_OC.d(TABLE_INSTANT_UPLOAD, "putFileForLater returns with: " + result + " for file: " + filepath);
  54. return result != -1;
  55. }
  56. public int updateFileState(String filepath, Integer status, String message) {
  57. ContentValues cv = new ContentValues();
  58. cv.put("attempt", status);
  59. cv.put("message", message);
  60. int result = mDB.update(TABLE_INSTANT_UPLOAD, cv, "path=?", new String[] { filepath });
  61. Log_OC.d(TABLE_INSTANT_UPLOAD, "updateFileState returns with: " + result + " for file: " + filepath);
  62. return result;
  63. }
  64. public Cursor getAwaitingFiles() {
  65. return mDB.query(TABLE_INSTANT_UPLOAD, null, "attempt=" + UPLOAD_STATUS_UPLOAD_LATER, null, null, null, null);
  66. }
  67. public Cursor getFailedFiles() {
  68. return mDB.query(TABLE_INSTANT_UPLOAD, null, "attempt>" + UPLOAD_STATUS_UPLOAD_LATER, null, null, null, null);
  69. }
  70. public void clearFiles() {
  71. mDB.delete(TABLE_INSTANT_UPLOAD, null, null);
  72. }
  73. /**
  74. *
  75. * @param localPath
  76. * @return true when one or more pending files was removed
  77. */
  78. public boolean removeIUPendingFile(String localPath) {
  79. long result = mDB.delete(TABLE_INSTANT_UPLOAD, "path = ?", new String[] { localPath });
  80. Log_OC.d(TABLE_INSTANT_UPLOAD, "delete returns with: " + result + " for file: " + localPath);
  81. return result != 0;
  82. }
  83. private class OpenerHelper extends SQLiteOpenHelper {
  84. public OpenerHelper(Context context) {
  85. super(context, mDatabaseName, null, mDatabaseVersion);
  86. }
  87. @Override
  88. public void onCreate(SQLiteDatabase db) {
  89. db.execSQL("CREATE TABLE " + TABLE_INSTANT_UPLOAD + " (" + " _id INTEGER PRIMARY KEY, " + " path TEXT,"
  90. + " account TEXT,attempt INTEGER,message TEXT);");
  91. }
  92. @Override
  93. public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
  94. if (oldVersion < 2) {
  95. db.execSQL("ALTER TABLE " + TABLE_INSTANT_UPLOAD + " ADD COLUMN attempt INTEGER;");
  96. }
  97. db.execSQL("ALTER TABLE " + TABLE_INSTANT_UPLOAD + " ADD COLUMN message TEXT;");
  98. }
  99. }
  100. }