|
|
/*
|
|
|
* Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
|
|
*
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
* You may obtain a copy of the License at
|
|
|
*
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
*
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
* See the License for the specific language governing permissions and
|
|
|
* limitations under the License.
|
|
|
*/
|
|
|
|
|
|
package net.micode.notes.tool;
|
|
|
|
|
|
import android.content.ContentProviderOperation;
|
|
|
import android.content.ContentProviderResult;
|
|
|
import android.content.ContentResolver;
|
|
|
import android.content.ContentUris;
|
|
|
import android.content.ContentValues;
|
|
|
import android.content.OperationApplicationException;
|
|
|
import android.database.Cursor;
|
|
|
import android.os.RemoteException;
|
|
|
import android.util.Log;
|
|
|
|
|
|
import net.micode.notes.data.Notes;
|
|
|
import net.micode.notes.data.Notes.CallNote;
|
|
|
import net.micode.notes.data.Notes.NoteColumns;
|
|
|
import net.micode.notes.ui.NotesListAdapter.AppWidgetAttribute;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.HashSet;
|
|
|
|
|
|
/*数据的集成工具类*/
|
|
|
public class DataUtils {
|
|
|
public static final String TAG = "DataUtils";//定义该自定义类标识
|
|
|
public static boolean batchDeleteNotes(ContentResolver resolver, HashSet<Long> ids) {
|
|
|
//处理批量删除便签的方法
|
|
|
if (ids == null) {
|
|
|
Log.d(TAG, "the ids is null");//输出debug调试,无note删除
|
|
|
return true;
|
|
|
}
|
|
|
if (ids.size() == 0) {
|
|
|
Log.d(TAG, "no id is in the hashset");//无note删除
|
|
|
return true;
|
|
|
}
|
|
|
//提供一个任务列表
|
|
|
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
|
|
|
for (long id : ids) {
|
|
|
if(id == Notes.ID_ROOT_FOLDER) {
|
|
|
Log.e(TAG, "Don't delete system folder root");//检测当前id是不是指向根目录,若是返回一个异常信息
|
|
|
continue;
|
|
|
}
|
|
|
//使用newDelete实现删除操作
|
|
|
ContentProviderOperation.Builder builder = ContentProviderOperation
|
|
|
.newDelete(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id));
|
|
|
//将操作添加至列表
|
|
|
operationList.add(builder.build());
|
|
|
}
|
|
|
try {
|
|
|
ContentProviderResult[] results = resolver.applyBatch(Notes.AUTHORITY, operationList);
|
|
|
if (results == null || results.length == 0 || results[0] == null) {
|
|
|
Log.d(TAG, "delete notes failed, ids:" + ids.toString());//删除失败
|
|
|
return false;
|
|
|
}
|
|
|
return true;
|
|
|
} catch (RemoteException e) {
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));//返回异常错误
|
|
|
} catch (OperationApplicationException e) {
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));//返回错误异常
|
|
|
}
|
|
|
return false;
|
|
|
}
|
|
|
//移动note到文件夹
|
|
|
public static void moveNoteToFoler(ContentResolver resolver, long id, long srcFolderId, long desFolderId) {
|
|
|
ContentValues values = new ContentValues();//获取note信息
|
|
|
values.put(NoteColumns.PARENT_ID, desFolderId);//设置父节点为目标文件夹id
|
|
|
values.put(NoteColumns.ORIGIN_PARENT_ID, srcFolderId);//设置原本的父节点为原本的文件夹的id
|
|
|
values.put(NoteColumns.LOCAL_MODIFIED, 1);//设置修改符号为1
|
|
|
resolver.update(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id), values, null, null);//对移动过的便签进行数据的更新
|
|
|
}
|
|
|
//与上述批量删除note相同,批量移到指定文件夹
|
|
|
public static boolean batchMoveToFolder(ContentResolver resolver, HashSet<Long> ids,
|
|
|
long folderId) {
|
|
|
if (ids == null) {
|
|
|
Log.d(TAG, "the ids is null");
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
|
|
|
for (long id : ids) {
|
|
|
ContentProviderOperation.Builder builder = ContentProviderOperation
|
|
|
.newUpdate(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id));
|
|
|
builder.withValue(NoteColumns.PARENT_ID, folderId);
|
|
|
builder.withValue(NoteColumns.LOCAL_MODIFIED, 1);
|
|
|
operationList.add(builder.build());
|
|
|
}
|
|
|
|
|
|
try {
|
|
|
//对于一些异常进行处理与汇报,applyBatch一次性处理一个操作列表
|
|
|
ContentProviderResult[] results = resolver.applyBatch(Notes.AUTHORITY, operationList);
|
|
|
if (results == null || results.length == 0 || results[0] == null) {
|
|
|
Log.d(TAG, "delete notes failed, ids:" + ids.toString());
|
|
|
return false;
|
|
|
}
|
|
|
return true;
|
|
|
} catch (RemoteException e) {
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
} catch (OperationApplicationException e) {
|
|
|
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
|
|
|
}
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* Get the all folder count except system folders {@link Notes#TYPE_SYSTEM}}(获取除了系统文件夹的所有文件夹数量)
|
|
|
*/
|
|
|
public static int getUserFolderCount(ContentResolver resolver) {
|
|
|
Cursor cursor =resolver.query(Notes.CONTENT_NOTE_URI,
|
|
|
new String[] { "COUNT(*)" },
|
|
|
NoteColumns.TYPE + "=? AND " + NoteColumns.PARENT_ID + "<>?",
|
|
|
new String[] { String.valueOf(Notes.TYPE_FOLDER), String.valueOf(Notes.ID_TRASH_FOLER)},
|
|
|
null);//在数据库中查询并用游标指向它
|
|
|
|
|
|
int count = 0;
|
|
|
if(cursor != null) {
|
|
|
if(cursor.moveToFirst()) {
|
|
|
try {
|
|
|
count = cursor.getInt(0);
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
Log.e(TAG, "get folder count failed:" + e.toString());//失败报告
|
|
|
} finally {
|
|
|
cursor.close();
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
return count;//返回数量
|
|
|
}
|
|
|
|
|
|
public static boolean visibleInNoteDatabase(ContentResolver resolver, long noteId, int type) {
|
|
|
//在数据库中是否可见
|
|
|
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId),
|
|
|
null,
|
|
|
NoteColumns.TYPE + "=? AND " + NoteColumns.PARENT_ID + "<>" + Notes.ID_TRASH_FOLER,
|
|
|
new String [] {String.valueOf(type)},
|
|
|
null);//查询note是否可以找到
|
|
|
|
|
|
boolean exist = false;
|
|
|
if (cursor != null) {
|
|
|
if (cursor.getCount() > 0) {
|
|
|
exist = true;//找到
|
|
|
}
|
|
|
cursor.close();
|
|
|
}
|
|
|
return exist;//可见
|
|
|
}
|
|
|
|
|
|
public static boolean existInNoteDatabase(ContentResolver resolver, long noteId) {
|
|
|
//在数据库中note是否存在
|
|
|
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId),
|
|
|
null, null, null, null);//查询数据是否存在
|
|
|
|
|
|
boolean exist = false;
|
|
|
if (cursor != null) {
|
|
|
if (cursor.getCount() > 0) {
|
|
|
exist = true;///找到
|
|
|
}
|
|
|
cursor.close();
|
|
|
}
|
|
|
return exist;//存在
|
|
|
}
|
|
|
|
|
|
public static boolean existInDataDatabase(ContentResolver resolver, long dataId) {
|
|
|
//在数据库中数据是否存在
|
|
|
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_DATA_URI, dataId),
|
|
|
null, null, null, null);//查找数据
|
|
|
|
|
|
boolean exist = false;
|
|
|
if (cursor != null) {
|
|
|
if (cursor.getCount() > 0) {
|
|
|
exist = true;//找到
|
|
|
}
|
|
|
cursor.close();
|
|
|
}
|
|
|
return exist;//存在
|
|
|
}
|
|
|
|
|
|
public static boolean checkVisibleFolderName(ContentResolver resolver, String name) {
|
|
|
//检查文件夹名字是否可见
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_NOTE_URI, null,
|
|
|
NoteColumns.TYPE + "=" + Notes.TYPE_FOLDER +
|
|
|
" AND " + NoteColumns.PARENT_ID + "<>" + Notes.ID_TRASH_FOLER +
|
|
|
" AND " + NoteColumns.SNIPPET + "=?",
|
|
|
new String[] { name }, null);//查询
|
|
|
boolean exist = false;
|
|
|
if(cursor != null) {
|
|
|
if(cursor.getCount() > 0) {
|
|
|
exist = true;//找到
|
|
|
}
|
|
|
cursor.close();
|
|
|
}
|
|
|
return exist;//可见
|
|
|
}
|
|
|
|
|
|
public static HashSet<AppWidgetAttribute> getFolderNoteWidget(ContentResolver resolver, long folderId) {
|
|
|
//使用hashset来存储不同窗口的id和type并且建立对应关系
|
|
|
Cursor c = resolver.query(Notes.CONTENT_NOTE_URI,
|
|
|
new String[] { NoteColumns.WIDGET_ID, NoteColumns.WIDGET_TYPE },
|
|
|
NoteColumns.PARENT_ID + "=?",
|
|
|
new String[] { String.valueOf(folderId) },
|
|
|
null);//父ID是否为传入的folderId
|
|
|
|
|
|
HashSet<AppWidgetAttribute> set = null;
|
|
|
if (c != null) {
|
|
|
if (c.moveToFirst()) {
|
|
|
set = new HashSet<AppWidgetAttribute>();
|
|
|
do {
|
|
|
try {
|
|
|
AppWidgetAttribute widget = new AppWidgetAttribute();
|
|
|
widget.widgetId = c.getInt(0);
|
|
|
widget.widgetType = c.getInt(1);
|
|
|
set.add(widget);//存储不同窗口的id和type
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
Log.e(TAG, e.toString());
|
|
|
}
|
|
|
} while (c.moveToNext());
|
|
|
}
|
|
|
c.close();
|
|
|
}
|
|
|
return set;
|
|
|
}
|
|
|
|
|
|
public static String getCallNumberByNoteId(ContentResolver resolver, long noteId) {
|
|
|
//通过noteid获取呼叫号码
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_DATA_URI,
|
|
|
new String [] { CallNote.PHONE_NUMBER },
|
|
|
CallNote.NOTE_ID + "=? AND " + CallNote.MIME_TYPE + "=?",
|
|
|
new String [] { String.valueOf(noteId), CallNote.CONTENT_ITEM_TYPE },
|
|
|
null);//在数据库查询
|
|
|
|
|
|
if (cursor != null && cursor.moveToFirst()) {
|
|
|
try {
|
|
|
return cursor.getString(0);//找到
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
Log.e(TAG, "Get call number fails " + e.toString());//没找到
|
|
|
} finally {
|
|
|
cursor.close();
|
|
|
}
|
|
|
}
|
|
|
return "";
|
|
|
}
|
|
|
|
|
|
public static long getNoteIdByPhoneNumberAndCallDate(ContentResolver resolver, String phoneNumber, long callDate) {
|
|
|
//通过映射关系,通过号码和日期获取ID
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_DATA_URI,
|
|
|
new String [] { CallNote.NOTE_ID },
|
|
|
CallNote.CALL_DATE + "=? AND " + CallNote.MIME_TYPE + "=? AND PHONE_NUMBERS_EQUAL("
|
|
|
+ CallNote.PHONE_NUMBER + ",?)",
|
|
|
new String [] { String.valueOf(callDate), CallNote.CONTENT_ITEM_TYPE, phoneNumber },
|
|
|
null);//在数据库查询
|
|
|
|
|
|
if (cursor != null) {
|
|
|
if (cursor.moveToFirst()) {
|
|
|
try {
|
|
|
return cursor.getLong(0);//找到
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
Log.e(TAG, "Get call note id fails " + e.toString());//失败
|
|
|
}
|
|
|
}
|
|
|
cursor.close();//关闭游标
|
|
|
}
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
public static String getSnippetById(ContentResolver resolver, long noteId) {
|
|
|
//进入清单模式后,note会分为若干段,该函数将每一个段返回对应的字符串
|
|
|
Cursor cursor = resolver.query(Notes.CONTENT_NOTE_URI,
|
|
|
new String [] { NoteColumns.SNIPPET },
|
|
|
NoteColumns.ID + "=?",
|
|
|
new String [] { String.valueOf(noteId)},
|
|
|
null);//查找
|
|
|
|
|
|
if (cursor != null) {
|
|
|
String snippet = "";
|
|
|
if (cursor.moveToFirst()) {
|
|
|
snippet = cursor.getString(0);//找到
|
|
|
}
|
|
|
cursor.close();//关闭游标
|
|
|
return snippet;
|
|
|
}
|
|
|
throw new IllegalArgumentException("Note is not found with id: " + noteId);//失败
|
|
|
}
|
|
|
|
|
|
public static String getFormattedSnippet(String snippet) {
|
|
|
//将文件名标准化
|
|
|
if (snippet != null) {
|
|
|
snippet = snippet.trim();
|
|
|
int index = snippet.indexOf('\n');
|
|
|
if (index != -1) {
|
|
|
snippet = snippet.substring(0, index);
|
|
|
}
|
|
|
}
|
|
|
return snippet;
|
|
|
}
|
|
|
}
|