1 /* ownCloud Android client application
2 * Copyright (C) 2011-2012 Bartek Przybylski
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
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.
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/>.
18 package com
.owncloud
.android
.db
;
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
;
27 * Custom database helper for ownCloud
29 * @author Bartek Przybylski
32 public class DbHandler
{
33 private SQLiteDatabase mDB
;
34 private OpenerHepler mHelper
;
35 private final String mDatabaseName
= "ownCloud";
36 private final int mDatabaseVersion
= 1;
38 private final String TABLE_INSTANT_UPLOAD
= "instant_upload";
40 public DbHandler(Context context
) {
41 mHelper
= new OpenerHepler(context
);
42 mDB
= mHelper
.getWritableDatabase();
49 public boolean putFileForLater(String filepath
, String account
) {
50 ContentValues cv
= new ContentValues();
51 cv
.put("path", filepath
);
52 cv
.put("account", account
);
53 return mDB
.insert(TABLE_INSTANT_UPLOAD
, null
, cv
) != -1;
56 public Cursor
getAwaitingFiles() {
57 return mDB
.query(TABLE_INSTANT_UPLOAD
, null
, null
, null
, null
, null
, null
);
60 public void clearFiles() {
61 mDB
.delete(TABLE_INSTANT_UPLOAD
, null
, null
);
68 * @return true when one or more pendin files was removed
70 public boolean removeIUPendingFile(String localPath
, String accountName
) {
71 return mDB
.delete(TABLE_INSTANT_UPLOAD
,
73 new String
[]{ localPath
}) != 0;
77 private class OpenerHepler
extends SQLiteOpenHelper
{
78 public OpenerHepler(Context context
) {
79 super(context
, mDatabaseName
, null
, mDatabaseVersion
);
83 public void onCreate(SQLiteDatabase db
) {
84 db
.execSQL("CREATE TABLE " + TABLE_INSTANT_UPLOAD
+ " ("
85 + " _id INTEGER PRIMARY KEY, "
91 public void onUpgrade(SQLiteDatabase db
, int oldVersion
, int newVersion
) {