FilesystemDataProvider.java 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /**
  2. * Nextcloud Android client application
  3. *
  4. * Copyright (C) 2017 Mario Danic
  5. * Copyright (C) 2017 Nextcloud.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  9. * License as published by the Free Software Foundation; either
  10. * version 3 of the License, or any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public
  18. * License along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. package com.owncloud.android.datamodel;
  21. import android.content.ContentResolver;
  22. import android.content.ContentValues;
  23. import android.database.Cursor;
  24. import android.net.Uri;
  25. import com.owncloud.android.db.ProviderMeta;
  26. import com.owncloud.android.lib.common.utils.Log_OC;
  27. import java.util.Arrays;
  28. import java.util.HashSet;
  29. import java.util.Set;
  30. public class FilesystemDataProvider {
  31. static private final String TAG = FilesystemDataProvider.class.getSimpleName();
  32. private ContentResolver contentResolver;
  33. public FilesystemDataProvider(ContentResolver contentResolver) {
  34. if (contentResolver == null) {
  35. throw new IllegalArgumentException("Cannot create an instance with a NULL contentResolver");
  36. }
  37. this.contentResolver = contentResolver;
  38. }
  39. public void updateFilesInList(Object[] paths, String syncedFolderId) {
  40. ContentValues cv = new ContentValues();
  41. cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_SENT_FOR_UPLOAD, 1);
  42. String[] stringPaths = new String[paths.length];
  43. for (int i = 0; i < paths.length; i++) {
  44. stringPaths[i] = (String) paths[i];
  45. }
  46. contentResolver.update(
  47. ProviderMeta.ProviderTableMeta.CONTENT_URI_FILESYSTEM,
  48. cv,
  49. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_LOCAL_PATH + " IN (?) and " +
  50. ProviderMeta.ProviderTableMeta.FILESYSTEM_SYNCED_FOLDER_ID + " = ?",
  51. new String[]{Arrays.toString(stringPaths), syncedFolderId}
  52. );
  53. }
  54. public Set<String> getFilesForUpload(String localPath, String syncedFolderId) {
  55. Set<String> localPathsToUpload = new HashSet<>();
  56. String likeParam = localPath + "%";
  57. Cursor cursor = contentResolver.query(
  58. ProviderMeta.ProviderTableMeta.CONTENT_URI_FILESYSTEM,
  59. null,
  60. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_LOCAL_PATH + " LIKE ? and " +
  61. ProviderMeta.ProviderTableMeta.FILESYSTEM_SYNCED_FOLDER_ID + " = ? and " +
  62. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_SENT_FOR_UPLOAD + " = ? and " +
  63. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_IS_FOLDER + " = ?",
  64. new String[]{likeParam, syncedFolderId, "0", "0"},
  65. null);
  66. if (cursor != null && cursor.moveToFirst()) {
  67. do {
  68. String value = cursor.getString(cursor.getColumnIndex(
  69. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_LOCAL_PATH));
  70. if (value == null) {
  71. Log_OC.e(TAG, "Cannot get local path");
  72. } else {
  73. localPathsToUpload.add(value);
  74. }
  75. } while (cursor.moveToNext());
  76. cursor.close();
  77. }
  78. return localPathsToUpload;
  79. }
  80. public long countFilesThatNeedUploadInFolder(String localPath) {
  81. String likeParam = localPath + "%";
  82. Cursor cursor = contentResolver.query(
  83. ProviderMeta.ProviderTableMeta.CONTENT_URI_FILESYSTEM,
  84. new String[]{"count(*)"},
  85. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_LOCAL_PATH + " LIKE ?",
  86. new String[]{likeParam},
  87. null);
  88. if (cursor != null) {
  89. if (cursor.getCount() == 0) {
  90. cursor.close();
  91. return 0;
  92. } else {
  93. cursor.moveToFirst();
  94. int result = cursor.getInt(0);
  95. cursor.close();
  96. return result;
  97. }
  98. } else {
  99. return 0;
  100. }
  101. }
  102. public void storeOrUpdateFileValue(String localPath, long modifiedAt, boolean isFolder, SyncedFolder syncedFolder,
  103. boolean dryRun) {
  104. FileSystemDataSet data = getFilesystemDataSet(localPath, syncedFolder);
  105. int isFolderValue = 0;
  106. if (isFolder) {
  107. isFolderValue = 1;
  108. }
  109. ContentValues cv = new ContentValues();
  110. cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_FOUND_RECENTLY, System.currentTimeMillis());
  111. if (data == null) {
  112. cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_LOCAL_PATH, localPath);
  113. cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_MODIFIED, modifiedAt);
  114. cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_IS_FOLDER, isFolderValue);
  115. cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_SENT_FOR_UPLOAD, dryRun);
  116. cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_SYNCED_FOLDER_ID, syncedFolder.getId());
  117. Uri result = contentResolver.insert(ProviderMeta.ProviderTableMeta.CONTENT_URI_FILESYSTEM, cv);
  118. if (result == null) {
  119. Log_OC.v(TAG, "Failed to insert filesystem data with local path: " + localPath);
  120. }
  121. } else {
  122. if (data.getModifiedAt() != modifiedAt) {
  123. cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_SENT_FOR_UPLOAD, 0);
  124. }
  125. int result = contentResolver.update(
  126. ProviderMeta.ProviderTableMeta.CONTENT_URI_FILESYSTEM,
  127. cv,
  128. ProviderMeta.ProviderTableMeta._ID + "=?",
  129. new String[]{String.valueOf(data.getId())}
  130. );
  131. if (result == 0) {
  132. Log_OC.v(TAG, "Failed to update filesystem data with local path: " + localPath);
  133. }
  134. }
  135. }
  136. private FileSystemDataSet getFilesystemDataSet(String localPathParam, SyncedFolder syncedFolder) {
  137. Cursor cursor = contentResolver.query(
  138. ProviderMeta.ProviderTableMeta.CONTENT_URI_FILESYSTEM,
  139. null,
  140. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_LOCAL_PATH + " = ? and " +
  141. ProviderMeta.ProviderTableMeta.FILESYSTEM_SYNCED_FOLDER_ID + " = ?",
  142. new String[]{localPathParam, Long.toString(syncedFolder.getId())},
  143. null
  144. );
  145. FileSystemDataSet dataSet = null;
  146. if (cursor != null) {
  147. if (cursor.moveToFirst()) {
  148. int id = cursor.getInt(cursor.getColumnIndex(ProviderMeta.ProviderTableMeta._ID));
  149. String localPath = cursor.getString(cursor.getColumnIndex(
  150. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_LOCAL_PATH));
  151. long modifiedAt = cursor.getLong(cursor.getColumnIndex(
  152. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_MODIFIED));
  153. boolean isFolder = false;
  154. if (cursor.getInt(cursor.getColumnIndex(
  155. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_MODIFIED)) != 0) {
  156. isFolder = true;
  157. }
  158. long foundAt = cursor.getLong(cursor.getColumnIndex(ProviderMeta.
  159. ProviderTableMeta.FILESYSTEM_FILE_FOUND_RECENTLY));
  160. boolean isSentForUpload = false;
  161. if (cursor.getInt(cursor.getColumnIndex(
  162. ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_SENT_FOR_UPLOAD)) != 0) {
  163. isSentForUpload = true;
  164. }
  165. if (id == -1) {
  166. Log_OC.e(TAG, "Arbitrary value could not be created from cursor");
  167. } else {
  168. dataSet = new FileSystemDataSet(id, localPath, modifiedAt, isFolder, isSentForUpload, foundAt,
  169. syncedFolder.getId());
  170. }
  171. }
  172. cursor.close();
  173. } else {
  174. Log_OC.e(TAG, "DB error restoring arbitrary values.");
  175. }
  176. return dataSet;
  177. }
  178. }