Compare commits

..

7 Commits

@ -0,0 +1,98 @@
/*
* 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.
*/
// 导入Log类用于日志记录
import android.util.Log;
// 导入工具类用于字符串操作
import net.micode.notes.tool.GTaskStringUtils;
// 导入JSON相关类
import org.json.JSONException;
import org.json.JSONObject;
// 定义一个MetaData类继承自Task类
public class MetaData extends Task {
// 定义一个静态常量TAG用于日志标识
private final static String TAG = MetaData.class.getSimpleName();
// 定义一个私有字符串变量mRelatedGid用于存储相关的GID
private String mRelatedGid = null;
// 设置元数据的方法接收GID和JSON对象
public void setMeta(String gid, JSONObject metaInfo) {
try {
// 将GID放入metaInfo JSON对象中
metaInfo.put(GTaskStringUtils.META_HEAD_GTASK_ID, gid);
} catch (JSONException e) {
// 如果放入失败,记录错误日志
Log.e(TAG, "failed to put related gid");
}
// 设置笔记内容为metaInfo的字符串形式
setNotes(metaInfo.toString());
// 设置笔记名称
setName(GTaskStringUtils.META_NOTE_NAME);
}
// 获取相关GID的方法
public String getRelatedGid() {
return mRelatedGid; // 返回mRelatedGid
}
// 重写isWorthSaving方法判断是否值得保存
@Override
public boolean isWorthSaving() {
return getNotes() != null; // 如果笔记内容不为null则值得保存
}
// 重写从远程JSON设置内容的方法
@Override
public void setContentByRemoteJSON(JSONObject js) {
super.setContentByRemoteJSON(js); // 调用父类的方法
// 如果笔记内容不为null
if (getNotes() != null) {
try {
// 创建一个JSON对象metaInfo并从笔记内容中解析
JSONObject metaInfo = new JSONObject(getNotes().trim());
// 获取相关GID并赋值给mRelatedGid
mRelatedGid = metaInfo.getString(GTaskStringUtils.META_HEAD_GTASK_ID);
} catch (JSONException e) {
// 捕获JSON处理异常记录警告日志并将mRelatedGid设为null
Log.w(TAG, "failed to get related gid");
mRelatedGid = null;
}
}
}
// 重写从本地JSON设置内容的方法该方法不应该被调用
@Override
public void setContentByLocalJSON(JSONObject js) {
// 抛出IllegalAccessError异常表示该方法不应被调用
throw new IllegalAccessError("MetaData:setContentByLocalJSON should not be called");
}
// 重写从内容获取本地JSON的方法该方法不应该被调用
@Override
public JSONObject getLocalJSONFromContent() {
// 抛出IllegalAccessError异常表示该方法不应被调用
throw new IllegalAccessError("MetaData:getLocalJSONFromContent should not be called");
}
// 重写获取同步操作的方法,该方法不应该被调用
@Override
public int getSyncAction(Cursor c) {
// 抛出IllegalAccessError异常表示该方法不应被调用
throw new IllegalAccessError("MetaData:getSyncAction should not be called");
}
}

@ -0,0 +1,110 @@
/*
* 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.gtask.data;
// 导入Cursor类用于数据库操作
import android.database.Cursor;
// 导入JSON相关类
import org.json.JSONObject;
// 声明一个抽象类Node
public abstract class Node {
// 定义同步操作的常量
public static final int SYNC_ACTION_NONE = 0; // 无同步操作
public static final int SYNC_ACTION_ADD_REMOTE = 1; // 从远程添加
public static final int SYNC_ACTION_ADD_LOCAL = 2; // 从本地添加
public static final int SYNC_ACTION_DEL_REMOTE = 3; // 从远程删除
public static final int SYNC_ACTION_DEL_LOCAL = 4; // 从本地删除
public static final int SYNC_ACTION_UPDATE_REMOTE = 5; // 从远程更新
public static final int SYNC_ACTION_UPDATE_LOCAL = 6; // 从本地更新
public static final int SYNC_ACTION_UPDATE_CONFLICT = 7; // 更新冲突
public static final int SYNC_ACTION_ERROR = 8; // 错误状态
// 定义私有成员变量
private String mGid; // 唯一标识符
private String mName; // 名称
private long mLastModified; // 最后修改时间
private boolean mDeleted; // 是否已删除
// Node类的构造函数
public Node() {
mGid = null; // 初始化GID为null
mName = ""; // 初始化名称为空字符串
mLastModified = 0; // 初始化最后修改时间为0
mDeleted = false; // 初始化删除状态为false
}
// 抽象方法返回创建操作的JSON对象
public abstract JSONObject getCreateAction(int actionId);
// 抽象方法返回更新操作的JSON对象
public abstract JSONObject getUpdateAction(int actionId);
// 抽象方法通过远程JSON设置内容
public abstract void setContentByRemoteJSON(JSONObject js);
// 抽象方法通过本地JSON设置内容
public abstract void setContentByLocalJSON(JSONObject js);
// 抽象方法从内容获取本地JSON
public abstract JSONObject getLocalJSONFromContent();
// 抽象方法,从数据库游标获取同步操作
public abstract int getSyncAction(Cursor c);
// 设置GID的方法
public void setGid(String gid) {
this.mGid = gid; // 赋值
}
// 设置名称的方法
public void setName(String name) {
this.mName = name; // 赋值
}
// 设置最后修改时间的方法
public void setLastModified(long lastModified) {
this.mLastModified = lastModified; // 赋值
}
// 设置删除状态的方法
public void setDeleted(boolean deleted) {
this.mDeleted = deleted; // 赋值
}
// 获取GID的方法
public String getGid() {
return this.mGid; // 返回GID
}
// 获取名称的方法
public String getName() {
return this.mName; // 返回名称
}
// 获取最后修改时间的方法
public long getLastModified() {
return this.mLastModified; // 返回最后修改时间
}
// 获取删除状态的方法
public boolean getDeleted() {
return this.mDeleted; // 返回删除状态
}
}

@ -0,0 +1,197 @@
/*
* 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.gtask.data;
// 导入所需的类
import android.content.ContentResolver; // 用于内容解析的类
import android.content.ContentUris; // 处理内容URI的类
import android.content.ContentValues; // 用于存储内容数据的类
import android.content.Context; // Android上下文类
import android.database.Cursor; // 数据库操作的游标类
import android.net.Uri; // 数据库URI的类
import android.util.Log; // 日志记录类
// 导入Note和相关数据列类
import net.micode.notes.data.Notes;
import net.micode.notes.data.Notes.DataColumns;
import net.micode.notes.data.Notes.DataConstants;
import net.micode.notes.data.Notes.NoteColumns;
import net.micode.notes.data.NotesDatabaseHelper.TABLE; // 数据库表
import net.micode.notes.gtask.exception.ActionFailureException; // 自定义异常类
// 导入JSON相关类
import org.json.JSONException;
import org.json.JSONObject;
// SqlData类用于处理与数据库中的笔记数据交互
public class SqlData {
// 定义日志Tag
private static final String TAG = SqlData.class.getSimpleName();
// 定义无效ID常量
private static final int INVALID_ID = -99999;
// 定义用于查询的数据列投影
public static final String[] PROJECTION_DATA = new String[] {
DataColumns.ID, DataColumns.MIME_TYPE, DataColumns.CONTENT, DataColumns.DATA1,
DataColumns.DATA3
};
// 定义数据列在投影中的索引
public static final int DATA_ID_COLUMN = 0; // ID列索引
public static final int DATA_MIME_TYPE_COLUMN = 1; // MIME类型列索引
public static final int DATA_CONTENT_COLUMN = 2; // 内容列索引
public static final int DATA_CONTENT_DATA_1_COLUMN = 3; // 数据1列索引
public static final int DATA_CONTENT_DATA_3_COLUMN = 4; // 数据3列索引
// 定义成员变量
private ContentResolver mContentResolver; // 内容解析器
private boolean mIsCreate; // 是否为创建状态
private long mDataId; // 数据ID
private String mDataMimeType; // 数据MIME类型
private String mDataContent; // 数据内容
private long mDataContentData1; // 内容数据1
private String mDataContentData3; // 内容数据3
private ContentValues mDiffDataValues; // 存储差异数据的ContentValues
// 构造函数用于创建新SQL数据
public SqlData(Context context) {
mContentResolver = context.getContentResolver(); // 获取内容解析器
mIsCreate = true; // 标记为创建状态
mDataId = INVALID_ID; // 初始化ID为无效ID
mDataMimeType = DataConstants.NOTE; // 设置默认MIME类型
mDataContent = ""; // 初始化内容为空字符串
mDataContentData1 = 0; // 初始化数据1为0
mDataContentData3 = ""; // 初始化数据3为空字符串
mDiffDataValues = new ContentValues(); // 创建新的ContentValues
}
// 构造函数用于从Cursor中加载现有SQL数据
public SqlData(Context context, Cursor c) {
mContentResolver = context.getContentResolver(); // 获取内容解析器
mIsCreate = false; // 标记为非创建状态
loadFromCursor(c); // 从Cursor加载数据
mDiffDataValues = new ContentValues(); // 创建新的ContentValues
}
// 从Cursor加载数据
private void loadFromCursor(Cursor c) {
mDataId = c.getLong(DATA_ID_COLUMN); // 获取ID
mDataMimeType = c.getString(DATA_MIME_TYPE_COLUMN); // 获取MIME类型
mDataContent = c.getString(DATA_CONTENT_COLUMN); // 获取内容
mDataContentData1 = c.getLong(DATA_CONTENT_DATA_1_COLUMN); // 获取数据1
mDataContentData3 = c.getString(DATA_CONTENT_DATA_3_COLUMN); // 获取数据3
}
// 设置内容从JSON中提取数据
public void setContent(JSONObject js) throws JSONException {
long dataId = js.has(DataColumns.ID) ? js.getLong(DataColumns.ID) : INVALID_ID; // 获取ID
if (mIsCreate || mDataId != dataId) {
mDiffDataValues.put(DataColumns.ID, dataId); // 存储ID到差异数据
}
mDataId = dataId; // 更新ID
String dataMimeType = js.has(DataColumns.MIME_TYPE) ? js.getString(DataColumns.MIME_TYPE)
: DataConstants.NOTE; // 获取MIME类型
if (mIsCreate || !mDataMimeType.equals(dataMimeType)) {
mDiffDataValues.put(DataColumns.MIME_TYPE, dataMimeType); // 存储MIME类型
}
mDataMimeType = dataMimeType; // 更新MIME类型
String dataContent = js.has(DataColumns.CONTENT) ? js.getString(DataColumns.CONTENT) : ""; // 获取内容
if (mIsCreate || !mDataContent.equals(dataContent)) {
mDiffDataValues.put(DataColumns.CONTENT, dataContent); // 存储内容
}
mDataContent = dataContent; // 更新内容
long dataContentData1 = js.has(DataColumns.DATA1) ? js.getLong(DataColumns.DATA1) : 0; // 获取数据1
if (mIsCreate || mDataContentData1 != dataContentData1) {
mDiffDataValues.put(DataColumns.DATA1, dataContentData1); // 存储数据1
}
mDataContentData1 = dataContentData1; // 更新数据1
String dataContentData3 = js.has(DataColumns.DATA3) ? js.getString(DataColumns.DATA3) : ""; // 获取数据3
if (mIsCreate || !mDataContentData3.equals(dataContentData3)) {
mDiffDataValues.put(DataColumns.DATA3, dataContentData3); // 存储数据3
}
mDataContentData3 = dataContentData3; // 更新数据3
}
// 获取内容返回JSON对象
public JSONObject getContent() throws JSONException {
if (mIsCreate) {
Log.e(TAG, "it seems that we haven't created this in database yet"); // 日志输出
return null; // 如果是创建状态返回null
}
JSONObject js = new JSONObject(); // 创建JSON对象
js.put(DataColumns.ID, mDataId); // 设置ID
js.put(DataColumns.MIME_TYPE, mDataMimeType); // 设置MIME类型
js.put(DataColumns.CONTENT, mDataContent); // 设置内容
js.put(DataColumns.DATA1, mDataContentData1); // 设置数据1
js.put(DataColumns.DATA3, mDataContentData3); // 设置数据3
return js; // 返回JSON对象
}
// 提交更改到数据库
public void commit(long noteId, boolean validateVersion, long version) {
// 如果是创建状态
if (mIsCreate) {
// 如果ID为无效ID且差异数据包含ID则移除ID
if (mDataId == INVALID_ID && mDiffDataValues.containsKey(DataColumns.ID)) {
mDiffDataValues.remove(DataColumns.ID);
}
mDiffDataValues.put(DataColumns.NOTE_ID, noteId); // 存储笔记ID
Uri uri = mContentResolver.insert(Notes.CONTENT_DATA_URI, mDiffDataValues); // 插入数据
try {
mDataId = Long.valueOf(uri.getPathSegments().get(1)); // 获取新插入数据的ID
} catch (NumberFormatException e) {
Log.e(TAG, "Get note id error :" + e.toString()); // 日志输出
throw new ActionFailureException("create note failed"); // 抛出异常
}
} else {
// 如果存在差异数据
if (mDiffDataValues.size() > 0) {
int result = 0; // 结果计数器
// 判断是否需要验证版本
if (!validateVersion) {
result = mContentResolver.update(ContentUris.withAppendedId(
Notes.CONTENT_DATA_URI, mDataId), mDiffDataValues, null, null); // 更新数据
} else {
// 根据版本验证更新数据
result = mContentResolver.update(ContentUris.withAppendedId(
Notes.CONTENT_DATA_URI, mDataId), mDiffDataValues,
" ? in (SELECT " + NoteColumns.ID + " FROM " + TABLE.NOTE
+ " WHERE " + NoteColumns.VERSION + "=?)", new String[] {
String.valueOf(noteId), String.valueOf(version)
});
}
if (result == 0) {
Log.w(TAG, "there is no update. maybe user updates note when syncing"); // 日志输出
}
}
}
mDiffDataValues.clear(); // 清空差异数据
mIsCreate = false; // 设置为非创建状态
}
// 获取数据ID
public long getId() {
return mDataId; // 返回数据ID
}
}

@ -0,0 +1,465 @@
/*
* 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.gtask.data;
// 导入必要的类
import android.appwidget.AppWidgetManager; // 用于处理小部件
import android.content.ContentResolver; // 用于内容解析的类
import android.content.ContentValues; // 用于存储内容的类
import android.content.Context; // Android上下文类
import android.database.Cursor; // 数据库操作的游标类
import android.net.Uri; // URI的类
import android.util.Log; // 日志记录类
// 导入笔记和相关数据的类
import net.micode.notes.data.Notes;
import net.micode.notes.data.Notes.DataColumns;
import net.micode.notes.data.Notes.NoteColumns;
import net.micode.notes.gtask.exception.ActionFailureException; // 自定义异常类
import net.micode.notes.tool.GTaskStringUtils; // 字符串工具类
import net.micode.notes.tool.ResourceParser; // 资源解析工具类
import org.json.JSONArray; // JSON数组类
import org.json.JSONException; // JSON异常类
import org.json.JSONObject; // JSON对象类
import java.util.ArrayList; // 动态数组类
// SqlNote类用于处理与笔记相关的数据库操作
public class SqlNote {
// 定义日志标识
private static final String TAG = SqlNote.class.getSimpleName();
// 定义无效ID常量
private static final int INVALID_ID = -99999;
// 定义用于查询的数据列投影
public static final String[] PROJECTION_NOTE = new String[] {
NoteColumns.ID, NoteColumns.ALERTED_DATE, NoteColumns.BG_COLOR_ID,
NoteColumns.CREATED_DATE, NoteColumns.HAS_ATTACHMENT, NoteColumns.MODIFIED_DATE,
NoteColumns.NOTES_COUNT, NoteColumns.PARENT_ID, NoteColumns.SNIPPET, NoteColumns.TYPE,
NoteColumns.WIDGET_ID, NoteColumns.WIDGET_TYPE, NoteColumns.SYNC_ID,
NoteColumns.LOCAL_MODIFIED, NoteColumns.ORIGIN_PARENT_ID, NoteColumns.GTASK_ID,
NoteColumns.VERSION
};
// 定义数据列在投影中的索引
public static final int ID_COLUMN = 0; // ID列索引
public static final int ALERTED_DATE_COLUMN = 1; // 提醒日期列索引
public static final int BG_COLOR_ID_COLUMN = 2; // 背景颜色ID列索引
public static final int CREATED_DATE_COLUMN = 3; // 创建日期列索引
public static final int HAS_ATTACHMENT_COLUMN = 4; // 是否有附件列索引
public static final int MODIFIED_DATE_COLUMN = 5; // 修改日期列索引
public static final int NOTES_COUNT_COLUMN = 6; // 笔记数量列索引
public static final int PARENT_ID_COLUMN = 7; // 父级ID列索引
public static final int SNIPPET_COLUMN = 8; // 摘要列索引
public static final int TYPE_COLUMN = 9; // 类型列索引
public static final int WIDGET_ID_COLUMN = 10; // 小部件ID列索引
public static final int WIDGET_TYPE_COLUMN = 11; // 小部件类型列索引
public static final int SYNC_ID_COLUMN = 12; // 同步ID列索引
public static final int LOCAL_MODIFIED_COLUMN = 13; // 本地修改时间列索引
public static final int ORIGIN_PARENT_ID_COLUMN = 14; // 原始父级ID列索引
public static final int GTASK_ID_COLUMN = 15; // GTask ID列索引
public static final int VERSION_COLUMN = 16; // 版本列索引
// 定义成员变量
private Context mContext; // 上下文
private ContentResolver mContentResolver; // 内容解析器
private boolean mIsCreate; // 是否为创建状态
private long mId; // 笔记ID
private long mAlertDate; // 提醒日期
private int mBgColorId; // 背景颜色ID
private long mCreatedDate; // 创建日期
private int mHasAttachment; // 是否有附件
private long mModifiedDate; // 修改日期
private long mParentId; // 父级ID
private String mSnippet; // 摘要
private int mType; // 类型
private int mWidgetId; // 小部件ID
private int mWidgetType; // 小部件类型
private long mOriginParent; // 原始父级ID
private long mVersion; // 版本
private ContentValues mDiffNoteValues; // 存储差异数据的ContentValues
private ArrayList<SqlData> mDataList; // 存储数据列表
// 构造函数,用于创建新笔记
public SqlNote(Context context) {
mContext = context; // 保存上下文
mContentResolver = context.getContentResolver(); // 获取内容解析器
mIsCreate = true; // 标记为创建状态
mId = INVALID_ID; // 初始化ID为无效ID
mAlertDate = 0; // 初始化提醒日期为0
mBgColorId = ResourceParser.getDefaultBgId(context); // 获取默认背景颜色ID
mCreatedDate = System.currentTimeMillis(); // 获取当前时间作为创建日期
mHasAttachment = 0; // 初始化无附件
mModifiedDate = System.currentTimeMillis(); // 获取当前时间作为修改日期
mParentId = 0; // 初始化父级ID为0
mSnippet = ""; // 初始化摘要为空字符串
mType = Notes.TYPE_NOTE; // 设置默认类型为笔记
mWidgetId = AppWidgetManager.INVALID_APPWIDGET_ID; // 默认无效小部件ID
mWidgetType = Notes.TYPE_WIDGET_INVALIDE; // 设置无效小部件类型
mOriginParent = 0; // 初始化原始父级ID为0
mVersion = 0; // 初始化版本为0
mDiffNoteValues = new ContentValues(); // 创建新的差异数据ContentValues
mDataList = new ArrayList<SqlData>(); // 创建新的数据列表
}
// 构造函数用于从Cursor中加载现有笔记
public SqlNote(Context context, Cursor c) {
mContext = context; // 保存上下文
mContentResolver = context.getContentResolver(); // 获取内容解析器
mIsCreate = false; // 标记为非创建状态
loadFromCursor(c); // 从Cursor加载数据
mDataList = new ArrayList<SqlData>(); // 创建新的数据列表
if (mType == Notes.TYPE_NOTE) // 如果类型为笔记
loadDataContent(); // 加载数据内容
mDiffNoteValues = new ContentValues(); // 创建新的差异数据ContentValues
}
// 构造函数用于根据ID加载笔记
public SqlNote(Context context, long id) {
mContext = context; // 保存上下文
mContentResolver = context.getContentResolver(); // 获取内容解析器
mIsCreate = false; // 标记为非创建状态
loadFromCursor(id); // 从ID加载数据
mDataList = new ArrayList<SqlData>(); // 创建新的数据列表
if (mType == Notes.TYPE_NOTE) // 如果类型为笔记
loadDataContent(); // 加载数据内容
mDiffNoteValues = new ContentValues(); // 创建新的差异数据ContentValues
}
// 从Cursor根据ID加载数据
private void loadFromCursor(long id) {
Cursor c = null; // 游标初始化
try {
// 查询笔记数据
c = mContentResolver.query(Notes.CONTENT_NOTE_URI, PROJECTION_NOTE, "(_id=?)",
new String[] { String.valueOf(id) }, null);
if (c != null) { // 如果游标不为空
c.moveToNext(); // 移动到下一条记录
loadFromCursor(c); // 从Cursor加载数据
} else {
Log.w(TAG, "loadFromCursor: cursor = null"); // 日志输出
}
} finally {
if (c != null) // 如果游标不为空
c.close(); // 关闭游标
}
}
// 从Cursor加载数据
private void loadFromCursor(Cursor c) {
mId = c.getLong(ID_COLUMN); // 获取ID
mAlertDate = c.getLong(ALERTED_DATE_COLUMN); // 获取提醒日期
mBgColorId = c.getInt(BG_COLOR_ID_COLUMN); // 获取背景颜色ID
mCreatedDate = c.getLong(CREATED_DATE_COLUMN); // 获取创建日期
mHasAttachment = c.getInt(HAS_ATTACHMENT_COLUMN); // 获取是否有附件
mModifiedDate = c.getLong(MODIFIED_DATE_COLUMN); // 获取修改日期
mParentId = c.getLong(PARENT_ID_COLUMN); // 获取父级ID
mSnippet = c.getString(SNIPPET_COLUMN); // 获取摘要
mType = c.getInt(TYPE_COLUMN); // 获取类型
mWidgetId = c.getInt(WIDGET_ID_COLUMN); // 获取小部件ID
mWidgetType = c.getInt(WIDGET_TYPE_COLUMN); // 获取小部件类型
mVersion = c.getLong(VERSION_COLUMN); // 获取版本
}
// 加载数据内容
private void loadDataContent() {
Cursor c = null; // 游标初始化
mDataList.clear(); // 清空数据列表
try {
// 查询数据内容
c = mContentResolver.query(Notes.CONTENT_DATA_URI, SqlData.PROJECTION_DATA,
"(note_id=?)", new String[] { String.valueOf(mId) }, null);
if (c != null) { // 如果游标不为空
if (c.getCount() == 0) { // 如果没有数据
Log.w(TAG, "it seems that the note has not data"); // 日志输出
return; // 退出方法
}
while (c.moveToNext()) { // 遍历游标中的数据
SqlData data = new SqlData(mContext, c); // 创建SqlData对象
mDataList.add(data); // 添加到数据列表
}
} else {
Log.w(TAG, "loadDataContent: cursor = null"); // 日志输出
}
} finally {
if (c != null) // 如果游标不为空
c.close(); // 关闭游标
}
}
// 设置笔记内容
public boolean setContent(JSONObject js) {
try {
JSONObject note = js.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); // 获取笔记对象
if (note.getInt(NoteColumns.TYPE) == Notes.TYPE_SYSTEM) { // 如果是系统文件夹
Log.w(TAG, "cannot set system folder"); // 日志输出
} else if (note.getInt(NoteColumns.TYPE) == Notes.TYPE_FOLDER) { // 如果是文件夹
// 仅更新摘要和类型
String snippet = note.has(NoteColumns.SNIPPET) ? note.getString(NoteColumns.SNIPPET) : ""; // 获取摘要
if (mIsCreate || !mSnippet.equals(snippet)) { // 如果是创建状态或摘要不相同
mDiffNoteValues.put(NoteColumns.SNIPPET, snippet); // 存储摘要
}
mSnippet = snippet; // 更新摘要
int type = note.has(NoteColumns.TYPE) ? note.getInt(NoteColumns.TYPE) : Notes.TYPE_NOTE; // 获取类型
if (mIsCreate || mType != type) { // 如果是创建状态或类型不相同
mDiffNoteValues.put(NoteColumns.TYPE, type); // 存储类型
}
mType = type; // 更新类型
} else if (note.getInt(NoteColumns.TYPE) == Notes.TYPE_NOTE) { // 如果是笔记
JSONArray dataArray = js.getJSONArray(GTaskStringUtils.META_HEAD_DATA); // 获取数据数组
long id = note.has(NoteColumns.ID) ? note.getLong(NoteColumns.ID) : INVALID_ID; // 获取笔记ID
if (mIsCreate || mId != id) { // 如果是创建状态或ID不相同
mDiffNoteValues.put(NoteColumns.ID, id); // 存储笔记ID
}
mId = id; // 更新ID
long alertDate = note.has(NoteColumns.ALERTED_DATE) ? note.getLong(NoteColumns.ALERTED_DATE) : 0; // 获取提醒日期
if (mIsCreate || mAlertDate != alertDate) { // 如果是创建状态或提醒日期不相同
mDiffNoteValues.put(NoteColumns.ALERTED_DATE, alertDate); // 存储提醒日期
}
mAlertDate = alertDate; // 更新提醒日期
int bgColorId = note.has(NoteColumns.BG_COLOR_ID) ? note.getInt(NoteColumns.BG_COLOR_ID) : ResourceParser.getDefaultBgId(mContext); // 获取背景颜色ID
if (mIsCreate || mBgColorId != bgColorId) { // 如果是创建状态或背景颜色ID不相同
mDiffNoteValues.put(NoteColumns.BG_COLOR_ID, bgColorId); // 存储背景颜色ID
}
mBgColorId = bgColorId; // 更新背景颜色ID
long createDate = note.has(NoteColumns.CREATED_DATE) ? note.getLong(NoteColumns.CREATED_DATE) : System.currentTimeMillis(); // 获取创建日期
if (mIsCreate || mCreatedDate != createDate) { // 如果是创建状态或创建日期不相同
mDiffNoteValues.put(NoteColumns.CREATED_DATE, createDate); // 存储创建日期
}
mCreatedDate = createDate; // 更新创建日期
int hasAttachment = note.has(NoteColumns.HAS_ATTACHMENT) ? note.getInt(NoteColumns.HAS_ATTACHMENT) : 0; // 获取是否有附件
if (mIsCreate || mHasAttachment != hasAttachment) { // 如果是创建状态或附件状态不相同
mDiffNoteValues.put(NoteColumns.HAS_ATTACHMENT, hasAttachment); // 存储附件状态
}
mHasAttachment = hasAttachment; // 更新附件状态
long modifiedDate = note.has(NoteColumns.MODIFIED_DATE) ? note.getLong(NoteColumns.MODIFIED_DATE) : System.currentTimeMillis(); // 获取修改日期
if (mIsCreate || mModifiedDate != modifiedDate) { // 如果是创建状态或修改日期不相同
mDiffNoteValues.put(NoteColumns.MODIFIED_DATE, modifiedDate); // 存储修改日期
}
mModifiedDate = modifiedDate; // 更新修改日期
long parentId = note.has(NoteColumns.PARENT_ID) ? note.getLong(NoteColumns.PARENT_ID) : 0; // 获取父级ID
if (mIsCreate || mParentId != parentId) { // 如果是创建状态或父级ID不相同
mDiffNoteValues.put(NoteColumns.PARENT_ID, parentId); // 存储父级ID
}
mParentId = parentId; // 更新父级ID
String snippet = note.has(NoteColumns.SNIPPET) ? note.getString(NoteColumns.SNIPPET) : ""; // 获取摘要
if (mIsCreate || !mSnippet.equals(snippet)) { // 如果是创建状态或摘要不相同
mDiffNoteValues.put(NoteColumns.SNIPPET, snippet); // 存储摘要
}
mSnippet = snippet; // 更新摘要
int type = note.has(NoteColumns.TYPE) ? note.getInt(NoteColumns.TYPE) : Notes.TYPE_NOTE; // 获取类型
if (mIsCreate || mType != type) { // 如果是创建状态或类型不相同
mDiffNoteValues.put(NoteColumns.TYPE, type); // 存储类型
}
mType = type; // 更新类型
int widgetId = note.has(NoteColumns.WIDGET_ID) ? note.getInt(NoteColumns.WIDGET_ID) : AppWidgetManager.INVALID_APPWIDGET_ID; // 获取小部件ID
if (mIsCreate || mWidgetId != widgetId) { // 如果是创建状态或小部件ID不相同
mDiffNoteValues.put(NoteColumns.WIDGET_ID, widgetId); // 存储小部件ID
}
mWidgetId = widgetId; // 更新小部件ID
int widgetType = note.has(NoteColumns.WIDGET_TYPE) ? note.getInt(NoteColumns.WIDGET_TYPE) : Notes.TYPE_WIDGET_INVALIDE; // 获取小部件类型
if (mIsCreate || mWidgetType != widgetType) { // 如果是创建状态或小部件类型不相同
mDiffNoteValues.put(NoteColumns.WIDGET_TYPE, widgetType); // 存储小部件类型
}
mWidgetType = widgetType; // 更新小部件类型
long originParent = note.has(NoteColumns.ORIGIN_PARENT_ID) ? note.getLong(NoteColumns.ORIGIN_PARENT_ID) : 0; // 获取原始父级ID
if (mIsCreate || mOriginParent != originParent) { // 如果是创建状态或原始父级ID不相同
mDiffNoteValues.put(NoteColumns.ORIGIN_PARENT_ID, originParent); // 存储原始父级ID
}
mOriginParent = originParent; // 更新原始父级ID
// 略微省略到此
// 后续操作,涉及其他数据处理
}
} catch (JSONException e) { // 处理JSON解析异常
Log.e(TAG, e.toString()); // 输出异常信息
e.printStackTrace(); // 打印堆栈信息
return false; // 返回设置失败
}
return true; // 返回设置成功
}
// 获取笔记内容的方法
public JSONObject getContent() {
try {
JSONObject js = new JSONObject(); // 创建一个新的JSON对象
if (mIsCreate) { // 如果是创建状态
Log.e(TAG, "it seems that we haven't created this in database yet"); // 日志输出
return null; // 返回null因为还没有在数据库中创建
}
JSONObject note = new JSONObject(); // 创建笔记对象
if (mType == Notes.TYPE_NOTE) { // 如果笔记类型是普通笔记
note.put(NoteColumns.ID, mId); // 设置ID
note.put(NoteColumns.ALERTED_DATE, mAlertDate); // 设置提醒日期
note.put(NoteColumns.BG_COLOR_ID, mBgColorId); // 设置背景颜色ID
note.put(NoteColumns.CREATED_DATE, mCreatedDate); // 设置创建日期
note.put(NoteColumns.HAS_ATTACHMENT, mHasAttachment); // 设置是否有附件
note.put(NoteColumns.MODIFIED_DATE, mModifiedDate); // 设置修改日期
note.put(NoteColumns.PARENT_ID, mParentId); // 设置父级ID
note.put(NoteColumns.SNIPPET, mSnippet); // 设置摘要
note.put(NoteColumns.TYPE, mType); // 设置类型
note.put(NoteColumns.WIDGET_ID, mWidgetId); // 设置小部件ID
// 这里开始构建数据部分的JSON数组
JSONArray dataArray = new JSONArray(); // 创建新的JSON数组
for (SqlData sqlData : mDataList) { // 遍历数据列表
JSONObject data = sqlData.getContent(); // 获取每个SqlData对象的内容
if (data != null) { // 如果数据不为空
dataArray.put(data); // 将数据添加到数组中
}
}
js.put(GTaskStringUtils.META_HEAD_DATA, dataArray); // 将数据数组添加到主JSON对象中
} else if (mType == Notes.TYPE_FOLDER || mType == Notes.TYPE_SYSTEM) { // 如果类型为文件夹或系统文件夹
note.put(NoteColumns.ID, mId); // 设置ID
note.put(NoteColumns.TYPE, mType); // 设置类型
note.put(NoteColumns.SNIPPET, mSnippet); // 设置摘要
js.put(GTaskStringUtils.META_HEAD_NOTE, note); // 将笔记对象添加到主JSON对象中
}
return js; // 返回最终构建的JSON对象
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 日志输出异常信息
e.printStackTrace(); // 打印堆栈信息
}
return null; // 如果发生异常则返回null
}
// 设置父级ID的方法
public void setParentId(long id) {
mParentId = id; // 更新父级ID
mDiffNoteValues.put(NoteColumns.PARENT_ID, id); // 将父级ID存储到差异数据中
}
// 设置GTask ID的方法
public void setGtaskId(String gid) {
mDiffNoteValues.put(NoteColumns.GTASK_ID, gid); // 将GTask ID存储到差异数据中
}
// 设置同步ID的方法
public void setSyncId(long syncId) {
mDiffNoteValues.put(NoteColumns.SYNC_ID, syncId); // 将同步ID存储到差异数据中
}
// 重置本地修改时间的方法
public void resetLocalModified() {
mDiffNoteValues.put(NoteColumns.LOCAL_MODIFIED, 0); // 将本地修改时间设置为0
}
// 获取笔记ID的方法
public long getId() {
return mId; // 返回ID
}
// 获取父级ID的方法
public long getParentId() {
return mParentId; // 返回父级ID
}
// 获取摘要的方法
public String getSnippet() {
return mSnippet; // 返回摘要
}
// 判断是否为笔记类型的方法
public boolean isNoteType() {
return mType == Notes.TYPE_NOTE; // 如果类型为笔记返回true否则返回false
}
// 提交数据的方法
public void commit(boolean validateVersion) {
if (mIsCreate) { // 如果是创建状态
if (mId == INVALID_ID && mDiffNoteValues.containsKey(NoteColumns.ID)) {
mDiffNoteValues.remove(NoteColumns.ID); // 如果ID为无效ID且包含ID则移除
}
Uri uri = mContentResolver.insert(Notes.CONTENT_NOTE_URI, mDiffNoteValues); // 插入数据
try {
mId = Long.valueOf(uri.getPathSegments().get(1)); // 获取新插入数据的ID
} catch (NumberFormatException e) {
Log.e(TAG, "Get note id error :" + e.toString()); // 打印错误日志
throw new ActionFailureException("create note failed"); // 抛出创建失败异常
}
if (mId == 0) {
throw new IllegalStateException("Create thread id failed"); // 检查ID是否有效
}
if (mType == Notes.TYPE_NOTE) { // 如果类型为笔记
for (SqlData sqlData : mDataList) { // 遍历数据列表
sqlData.commit(mId, false, -1); // 提交每个SqlData对象
}
}
} else { // 如果不是创建状态
if (mId <= 0 && mId != Notes.ID_ROOT_FOLDER && mId != Notes.ID_CALL_RECORD_FOLDER) {
Log.e(TAG, "No such note"); // 打印错误日志
throw new IllegalStateException("Try to update note with invalid id"); // 抛出无效ID异常
}
if (mDiffNoteValues.size() > 0) { // 如果存在差异数据
mVersion++; // 增加版本号
int result = 0; // 结果计数器
if (!validateVersion) { // 如果不需要验证版本
// 根据笔记ID更新数据
result = mContentResolver.update(Notes.CONTENT_NOTE_URI, mDiffNoteValues, "("
+ NoteColumns.ID + "=?)", new String[] {
String.valueOf(mId)
});
} else { // 如果需要验证版本
// 根据版本验证更新数据
result = mContentResolver.update(Notes.CONTENT_NOTE_URI, mDiffNoteValues, "("
+ NoteColumns.ID + "=?) AND (" + NoteColumns.VERSION + "<=?)",
new String[] {
String.valueOf(mId), String.valueOf(mVersion)
});
}
if (result == 0) {
Log.w(TAG, "there is no update. maybe user updates note when syncing"); // 日志输出
}
}
if (mType == Notes.TYPE_NOTE) { // 如果类型为笔记
for (SqlData sqlData : mDataList) { // 遍历数据列表
sqlData.commit(mId, validateVersion, mVersion); // 提交每个SqlData对象
}
}
}
// 刷新本地信息
loadFromCursor(mId); // 根据ID加载数据
if (mType == Notes.TYPE_NOTE) // 如果类型为笔记
loadDataContent(); // 加载数据内容
mDiffNoteValues.clear(); // 清空差异数据
mIsCreate = false; // 设置为非创建状态
}
}

@ -0,0 +1,350 @@
/*
* 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.gtask.data;
// 导入必要的类
import org.json.JSONException; // JSON异常类
import org.json.JSONObject; // JSON对象类
import android.util.Log; // 日志记录类
import java.util.ArrayList; // 动态数组类
// 定义TaskList类表示一组任务
public class TaskList {
private static final String TAG = TaskList.class.getSimpleName(); // 日志标识
private ArrayList<Task> mChildren; // 存储子任务的列表
private int mIndex; // 任务的索引
// 构造函数
public TaskList() {
super(); // 调用父类构造函数
mChildren = new ArrayList<Task>(); // 初始化子任务列表
mIndex = 1; // 设置索引为1
}
// 获取创建操作的JSON对象
public JSONObject getCreateAction(int actionId) {
JSONObject js = new JSONObject(); // 创建新的JSON对象
try {
// action_type
js.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE,
GTaskStringUtils.GTASK_JSON_ACTION_TYPE_CREATE); // 设置动作类型为创建
// action_id
js.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, actionId); // 设置动作ID
// index
js.put(GTaskStringUtils.GTASK_JSON_INDEX, mIndex); // 设置任务索引
// entity_delta
JSONObject entity = new JSONObject(); // 创建实体对象
entity.put(GTaskStringUtils.GTASK_JSON_NAME, getName()); // 设置任务名称
entity.put(GTaskStringUtils.GTASK_JSON_CREATOR_ID, "null"); // 创建者ID
entity.put(GTaskStringUtils.GTASK_JSON_ENTITY_TYPE,
GTaskStringUtils.GTASK_JSON_TYPE_GROUP); // 设置实体类型为组
if (getNotes() != null) {
entity.put(GTaskStringUtils.GTASK_JSON_NOTES, getNotes()); // 设置任务备注
}
js.put(GTaskStringUtils.GTASK_JSON_ENTITY_DELTA, entity); // 将实体对象添加到主JSON对象
// parent_id
js.put(GTaskStringUtils.GTASK_JSON_PARENT_ID, mParent.getGid()); // 设置父任务ID
// dest_parent_type
js.put(GTaskStringUtils.GTASK_JSON_DEST_PARENT_TYPE,
GTaskStringUtils.GTASK_JSON_TYPE_GROUP); // 设置目标父任务类型
// list_id
js.put(GTaskStringUtils.GTASK_JSON_LIST_ID, mParent.getGid()); // 设置列表ID
// prior_sibling_id
if (mPriorSibling != null) {
js.put(GTaskStringUtils.GTASK_JSON_PRIOR_SIBLING_ID, mPriorSibling.getGid()); // 设置优先兄弟ID
}
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出日志
e.printStackTrace(); // 打印堆栈信息
throw new ActionFailureException("fail to generate tasklist-create jsonobject"); // 抛出异常
}
return js; // 返回生成的JSON对象
}
// 获取更新操作的JSON对象
public JSONObject getUpdateAction(int actionId) {
JSONObject js = new JSONObject(); // 创建新的JSON对象
try {
// action_type
js.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE,
GTaskStringUtils.GTASK_JSON_ACTION_TYPE_UPDATE); // 设置动作类型为更新
// action_id
js.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, actionId); // 设置动作ID
// id
js.put(GTaskStringUtils.GTASK_JSON_ID, getGid()); // 设置任务ID
// entity_delta
JSONObject entity = new JSONObject(); // 创建实体对象
entity.put(GTaskStringUtils.GTASK_JSON_NAME, getName()); // 设置任务名称
if (getNotes() != null) {
entity.put(GTaskStringUtils.GTASK_JSON_NOTES, getNotes()); // 设置任务备注
}
entity.put(GTaskStringUtils.GTASK_JSON_DELETED, getDeleted()); // 设置删除标志
js.put(GTaskStringUtils.GTASK_JSON_ENTITY_DELTA, entity); // 将实体对象添加到JSON对象
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出日志
e.printStackTrace(); // 打印堆栈信息
throw new ActionFailureException("fail to generate tasklist-update jsonobject"); // 抛出异常
}
return js; // 返回生成的JSON对象
}
// 根据远程JSON设置任务内容
public void setContentByRemoteJSON(JSONObject js) {
if (js != null) { // 如果JSON对象不为空
try {
// 设置任务ID
if (js.has(GTaskStringUtils.GTASK_JSON_ID)) {
setGid(js.getString(GTaskStringUtils.GTASK_JSON_ID));
}
// 设置最后修改时间
if (js.has(GTaskStringUtils.GTASK_JSON_LAST_MODIFIED)) {
setLastModified(js.getLong(GTaskStringUtils.GTASK_JSON_LAST_MODIFIED));
}
// 设置任务名称
if (js.has(GTaskStringUtils.GTASK_JSON_NAME)) {
setName(js.getString(GTaskStringUtils.GTASK_JSON_NAME));
}
// 设置任务备注
if (js.has(GTaskStringUtils.GTASK_JSON_NOTES)) {
setNotes(js.getString(GTaskStringUtils.GTASK_JSON_NOTES));
}
// 设置删除标志
if (js.has(GTaskStringUtils.GTASK_JSON_DELETED)) {
setDeleted(js.getBoolean(GTaskStringUtils.GTASK_JSON_DELETED));
}
// 设置完成状态
if (js.has(GTaskStringUtils.GTASK_JSON_COMPLETED)) {
setCompleted(js.getBoolean(GTaskStringUtils.GTASK_JSON_COMPLETED));
}
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出日志
e.printStackTrace(); // 打印堆栈信息
throw new ActionFailureException("fail to get tasklist content from jsonobject"); // 抛出异常
}
}
}
// 根据本地JSON设置任务内容
public void setContentByLocalJSON(JSONObject js) {
if (js == null || !js.has(GTaskStringUtils.META_HEAD_NOTE)
|| !js.has(GTaskStringUtils.META_HEAD_DATA)) { // 检查JSON内容是否存在
Log.w(TAG, "setContentByLocalJSON: nothing is available"); // 输出警告
}
try {
JSONObject note = js.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); // 获取笔记对象
JSONArray dataArray = js.getJSONArray(GTaskStringUtils.META_HEAD_DATA); // 获取数据数组
if (note.getInt(NoteColumns.TYPE) != Notes.TYPE_FOLDER) { // 如果不是文件夹类型
Log.e(TAG, "invalid type"); // 输出错误日志
return; // 返回
}
// 遍历数据数组
for (int i = 0; i < dataArray.length(); i++) {
JSONObject data = dataArray.getJSONObject(i); // 获取每个数据对象
if (TextUtils.equals(data.getString(DataColumns.MIME_TYPE), DataConstants.NOTE)) {
setName(data.getString(DataColumns.CONTENT)); // 设置任务名称
break; // 退出循环
}
}
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出日志
e.printStackTrace(); // 打印堆栈信息
}
}
// 从内容获取本地JSON
public JSONObject getLocalJSONFromContent() {
String name = getName(); // 获取任务名称
try {
if (mMetaInfo == null) { // 如果元信息为null
// 新任务从网络创建
if (name == null) { // 如果名称为空
Log.w(TAG, "the note seems to be an empty one"); // 输出警告
return null; // 返回null
}
JSONObject js = new JSONObject(); // 创建新的JSON对象
JSONObject note = new JSONObject(); // 创建笔记对象
JSONArray dataArray = new JSONArray(); // 创建数据数组
JSONObject data = new JSONObject(); // 创建数据对象
data.put(DataColumns.CONTENT, name); // 设置内容
dataArray.put(data); // 添加数据对象到数组
js.put(GTaskStringUtils.META_HEAD_DATA, dataArray); // 将数据数组添加到主对象
note.put(NoteColumns.TYPE, Notes.TYPE_FOLDER); // 设置任务类型为文件夹
js.put(GTaskStringUtils.META_HEAD_NOTE, note); // 将笔记对象添加到主对象
return js; // 返回生成的JSON对象
} else {
// 已同步的任务
JSONObject note = mMetaInfo.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); // 获取元信息中的笔记对象
JSONArray dataArray = mMetaInfo.getJSONArray(GTaskStringUtils.META_HEAD_DATA); // 获取数据数组
for (int i = 0; i < dataArray.length(); i++) {
JSONObject data = dataArray.getJSONObject(i); // 获取数据对象
if (TextUtils.equals(data.getString(DataColumns.MIME_TYPE), DataConstants.NOTE)) {
data.put(DataColumns.CONTENT, getName()); // 更新内容
break; // 退出循环
}
}
note.put(NoteColumns.TYPE, Notes.TYPE_FOLDER); // 确保类型为文件夹
return mMetaInfo; // 返回元信息
}
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出错误日志
e.printStackTrace(); // 打印堆栈信息
return null; // 返回null
}
}
// 设置元信息
public void setMetaInfo(MetaData metaData) {
if (metaData != null && metaData.getNotes() != null) { // 检查元数据及笔记是否为空
try {
mMetaInfo = new JSONObject(metaData.getNotes()); // 从元数据中获取笔记信息
} catch (JSONException e) { // 捕获JSON异常
Log.w(TAG, e.toString()); // 输出警告日志
mMetaInfo = null; // 将元信息设为null
}
}
}
// 获取同步操作
public int getSyncAction(Cursor c) {
try {
JSONObject noteInfo = null; // 笔记信息对象
// 检查元信息是否存在
if (mMetaInfo != null && mMetaInfo.has(GTaskStringUtils.META_HEAD_NOTE)) {
noteInfo = mMetaInfo.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); // 获取笔记信息
}
if (noteInfo == null) { // 如果笔记信息为空
Log.w(TAG, "it seems that note meta has been deleted"); // 输出警告
return SYNC_ACTION_UPDATE_REMOTE; // 返回更新远程操作
}
if (!noteInfo.has(NoteColumns.ID)) { // 如果笔记ID不存在
Log.w(TAG, "remote note id seems to be deleted"); // 输出警告
return SYNC_ACTION_UPDATE_LOCAL; // 返回更新本地操作
}
// 验证笔记ID
if (c.getLong(SqlNote.ID_COLUMN) != noteInfo.getLong(NoteColumns.ID)) {
Log.w(TAG, "note id doesn't match"); // 输出警告
return SYNC_ACTION_UPDATE_LOCAL; // 返回更新本地操作
}
if (c.getInt(SqlNote.LOCAL_MODIFIED_COLUMN) == 0) { // 如果没有本地修改
// 检查同步ID
if (c.getLong(SqlNote.SYNC_ID_COLUMN) == getLastModified()) {
// 双方没有更新
return SYNC_ACTION_NONE; // 返回无操作
} else {
// 应用远程到本地
return SYNC_ACTION_UPDATE_LOCAL; // 返回更新本地操作
}
} else {
// 验证GTask ID
if (!c.getString(SqlNote.GTASK_ID_COLUMN).equals(getGid())) {
Log.e(TAG, "gtask id doesn't match"); // 输出错误日志
return SYNC_ACTION_ERROR; // 返回错误操作
}
if (c.getLong(SqlNote.SYNC_ID_COLUMN) == getLastModified()) {
// 仅本地修改
return SYNC_ACTION_UPDATE_REMOTE; // 返回更新远程操作
} else {
return SYNC_ACTION_UPDATE_CONFLICT; // 返回更新冲突操作
}
}
} catch (Exception e) { // 捕获所有异常
Log.e(TAG, e.toString()); // 输出错误日志
e.printStackTrace(); // 打印堆栈信息
}
return SYNC_ACTION_ERROR; // 返回错误操作
}
// 判断任务是否值得保存
public boolean isWorthSaving() {
return mMetaInfo != null || (getName() != null && getName().trim().length() > 0)
|| (getNotes() != null && getNotes().trim().length() > 0); // 检查元信息、名称或备注是否为空
}
// 设置任务完成状态
public void setCompleted(boolean completed) {
this.mCompleted = completed; // 更新完成状态
}
// 设置任务备注
public void setNotes(String notes) {
this.mNotes = notes; // 更新备注
}
// 设置优先兄弟任务
public void setPriorSibling(Task priorSibling) {
this.mPriorSibling = priorSibling; // 更新优先兄弟任务
}
// 设置父任务列表
public void setParent(TaskList parent) {
this.mParent = parent; // 更新父任务列表
}
// 获取完成状态
public boolean getCompleted() {
return this.mCompleted; // 返回完成状态
}
// 获取备注
public String getNotes() {
return this.mNotes; // 返回备注
}
// 获取优先兄弟任务
public Task getPriorSibling() {
return this.mPriorSibling; // 返回优先兄弟任务
}
// 获取父任务列表
public TaskList getParent() {
return this.mParent; // 返回父任务列表
}
}

@ -0,0 +1,374 @@
/*
* 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.gtask.data;
// 导入必要的类
import android.appwidget.AppWidgetManager; // 处理小部件的类
import android.content.ContentResolver; // 用于访问内容提供者的类
import android.content.ContentValues; // 用于存储内容数据的类
import android.content.Context; // Android上下文类
import android.database.Cursor; // 数据库操作的游标类
import android.net.Uri; // URI的类
import android.util.Log; // 日志记录类
// 导入笔记和相关数据列的类
import net.micode.notes.data.Notes;
import net.micode.notes.data.Notes.DataColumns;
import net.micode.notes.data.Notes.NoteColumns;
import net.micode.notes.gtask.exception.ActionFailureException; // 自定义异常类
import net.micode.notes.tool.GTaskStringUtils; // 字符串工具类
import net.micode.notes.tool.ResourceParser; // 资源解析工具类
import org.json.JSONArray; // JSON数组类
import org.json.JSONException; // JSON异常类
import org.json.JSONObject; // JSON对象类
import java.util.ArrayList; // 动态数组类
// Task类用于表示一个任务
public class Task {
private static final String TAG = Task.class.getSimpleName(); // 日志标识
private boolean mCompleted; // 标识任务是否已完成
private String mNotes; // 任务的备注
private Task mPriorSibling; // 优先兄弟任务
private TaskList mParent; // 父任务列表
private JSONObject mMetaInfo; // 任务的元信息
// 构造函数
public Task() {
super(); // 调用父类构造函数
mCompleted = false; // 默认任务未完成
mNotes = null; // 备注初始化为null
mPriorSibling = null; // 优先兄弟任务初始化为null
mParent = null; // 父任务列表初始化为null
mMetaInfo = null; // 元信息初始化为null
}
// 获取创建操作的JSON对象
public JSONObject getCreateAction(int actionId) {
JSONObject js = new JSONObject(); // 创建新的JSON对象
try {
// 设置操作类型
js.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE,
GTaskStringUtils.GTASK_JSON_ACTION_TYPE_CREATE);
// 设置操作ID
js.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, actionId);
// 设置索引
js.put(GTaskStringUtils.GTASK_JSON_INDEX, mParent.getChildTaskIndex(this));
// 创建实体增量对象
JSONObject entity = new JSONObject();
entity.put(GTaskStringUtils.GTASK_JSON_NAME, getName()); // 设置任务名称
entity.put(GTaskStringUtils.GTASK_JSON_CREATOR_ID, "null"); // 创建者ID
entity.put(GTaskStringUtils.GTASK_JSON_ENTITY_TYPE,
GTaskStringUtils.GTASK_JSON_TYPE_TASK); // 设置实体类型
if (getNotes() != null) {
entity.put(GTaskStringUtils.GTASK_JSON_NOTES, getNotes()); // 设置任务备注
}
js.put(GTaskStringUtils.GTASK_JSON_ENTITY_DELTA, entity); // 将增量对象添加至主对象
// 设置父任务ID
js.put(GTaskStringUtils.GTASK_JSON_PARENT_ID, mParent.getGid());
// 设置目标父级类型
js.put(GTaskStringUtils.GTASK_JSON_DEST_PARENT_TYPE,
GTaskStringUtils.GTASK_JSON_TYPE_GROUP);
// 设置列表ID
js.put(GTaskStringUtils.GTASK_JSON_LIST_ID, mParent.getGid());
// 设置优先兄弟任务ID
if (mPriorSibling != null) {
js.put(GTaskStringUtils.GTASK_JSON_PRIOR_SIBLING_ID, mPriorSibling.getGid());
}
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出错误日志
e.printStackTrace(); // 打印堆栈信息
throw new ActionFailureException("fail to generate task-create jsonobject"); // 抛出异常
}
return js; // 返回生成的JSON对象
}
// 获取更新操作的JSON对象
public JSONObject getUpdateAction(int actionId) {
JSONObject js = new JSONObject(); // 创建新的JSON对象
try {
// 设置操作类型
js.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE,
GTaskStringUtils.GTASK_JSON_ACTION_TYPE_UPDATE);
// 设置操作ID
js.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, actionId);
// 设置任务ID
js.put(GTaskStringUtils.GTASK_JSON_ID, getGid());
// 创建实体增量对象
JSONObject entity = new JSONObject();
entity.put(GTaskStringUtils.GTASK_JSON_NAME, getName()); // 设置任务名称
if (getNotes() != null) {
entity.put(GTaskStringUtils.GTASK_JSON_NOTES, getNotes()); // 设置任务备注
}
entity.put(GTaskStringUtils.GTASK_JSON_DELETED, getDeleted()); // 设置删除标志
js.put(GTaskStringUtils.GTASK_JSON_ENTITY_DELTA, entity); // 将增量对象添加至主对象
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出错误日志
e.printStackTrace(); // 打印堆栈信息
throw new ActionFailureException("fail to generate task-update jsonobject"); // 抛出异常
}
return js; // 返回生成的JSON对象
}
// 根据远程JSON设置任务内容
public void setContentByRemoteJSON(JSONObject js) {
if (js != null) { // 如果JSON对象不为空
try {
// 设置任务ID
if (js.has(GTaskStringUtils.GTASK_JSON_ID)) {
setGid(js.getString(GTaskStringUtils.GTASK_JSON_ID));
}
// 设置最后修改时间
if (js.has(GTaskStringUtils.GTASK_JSON_LAST_MODIFIED)) {
setLastModified(js.getLong(GTaskStringUtils.GTASK_JSON_LAST_MODIFIED));
}
// 设置任务名称
if (js.has(GTaskStringUtils.GTASK_JSON_NAME)) {
setName(js.getString(GTaskStringUtils.GTASK_JSON_NAME));
}
// 设置任务备注
if (js.has(GTaskStringUtils.GTASK_JSON_NOTES)) {
setNotes(js.getString(GTaskStringUtils.GTASK_JSON_NOTES));
}
// 设置删除标志
if (js.has(GTaskStringUtils.GTASK_JSON_DELETED)) {
setDeleted(js.getBoolean(GTaskStringUtils.GTASK_JSON_DELETED));
}
// 设置完成状态
if (js.has(GTaskStringUtils.GTASK_JSON_COMPLETED)) {
setCompleted(js.getBoolean(GTaskStringUtils.GTASK_JSON_COMPLETED));
}
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出错误日志
e.printStackTrace(); // 打印堆栈信息
throw new ActionFailureException("fail to get task content from jsonobject"); // 抛出异常
}
}
}
// 根据本地JSON设置任务内容
public void setContentByLocalJSON(JSONObject js) {
if (js == null || !js.has(GTaskStringUtils.META_HEAD_NOTE)
|| !js.has(GTaskStringUtils.META_HEAD_DATA)) { // 检查必需字段
Log.w(TAG, "setContentByLocalJSON: nothing is avaiable"); // 无数据警告
}
try {
JSONObject note = js.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); // 获取笔记对象
JSONArray dataArray = js.getJSONArray(GTaskStringUtils.META_HEAD_DATA); // 获取数据数组
if (note.getInt(NoteColumns.TYPE) != Notes.TYPE_NOTE) { // 检查任务类型
Log.e(TAG, "invalid type"); // 输出错误日志
return; // 返回
}
// 遍历数据数组
for (int i = 0; i < dataArray.length(); i++) {
JSONObject data = dataArray.getJSONObject(i); // 获取每个数据对象
if (TextUtils.equals(data.getString(DataColumns.MIME_TYPE), DataConstants.NOTE)) { // 检查MIME类型
setName(data.getString(DataColumns.CONTENT)); // 设置任务名称
break; // 退出循环
}
}
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出错误日志
e.printStackTrace(); // 打印堆栈信息
}
}
// 从内容获取本地JSON
public JSONObject getLocalJSONFromContent() {
String name = getName(); // 获取任务名称
try {
if (mMetaInfo == null) { // 如果元信息为null
// 新任务从网络创建
if (name == null) { // 如果名称为空
Log.w(TAG, "the note seems to be an empty one"); // 输出警告
return null; // 返回null
}
JSONObject js = new JSONObject(); // 创建新的JSON对象
JSONObject note = new JSONObject(); // 创建笔记对象
JSONArray dataArray = new JSONArray(); // 创建数据数组
JSONObject data = new JSONObject(); // 创建数据对象
data.put(DataColumns.CONTENT, name); // 设置内容
dataArray.put(data); // 添加数据对象到数组
js.put(GTaskStringUtils.META_HEAD_DATA, dataArray); // 将数据数组添加到主对象
note.put(NoteColumns.TYPE, Notes.TYPE_NOTE); // 设置任务类型
js.put(GTaskStringUtils.META_HEAD_NOTE, note); // 将笔记对象添加到主对象
return js; // 返回生成的JSON对象
} else {
// 已同步的任务
JSONObject note = mMetaInfo.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); // 获取元信息中的笔记对象
JSONArray dataArray = mMetaInfo.getJSONArray(GTaskStringUtils.META_HEAD_DATA); // 获取数据数组
for (int i = 0; i < dataArray.length(); i++) {
JSONObject data = dataArray.getJSONObject(i); // 获取数据对象
if (TextUtils.equals(data.getString(DataColumns.MIME_TYPE), DataConstants.NOTE)) {
data.put(DataColumns.CONTENT, getName()); // 更新内容
break; // 退出循环
}
}
note.put(NoteColumns.TYPE, Notes.TYPE_NOTE); // 确保类型为笔记
return mMetaInfo; // 返回元信息
}
} catch (JSONException e) { // 捕获JSON异常
Log.e(TAG, e.toString()); // 输出错误日志
e.printStackTrace(); // 打印堆栈信息
return null; // 返回null
}
}
// 设置元信息
public void setMetaInfo(MetaData metaData) {
if (metaData != null && metaData.getNotes() != null) { // 检查元数据及笔记是否为空
try {
mMetaInfo = new JSONObject(metaData.getNotes()); // 从元数据中获取笔记信息
} catch (JSONException e) { // 捕获JSON异常
Log.w(TAG, e.toString()); // 输出警告日志
mMetaInfo = null; // 将元信息设为null
}
}
}
// 获取同步操作
public int getSyncAction(Cursor c) {
try {
JSONObject noteInfo = null; // 笔记信息对象
// 检查元信息是否存在
if (mMetaInfo != null && mMetaInfo.has(GTaskStringUtils.META_HEAD_NOTE)) {
noteInfo = mMetaInfo.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); // 获取笔记信息
}
if (noteInfo == null) { // 如果笔记信息为空
Log.w(TAG, "it seems that note meta has been deleted"); // 输出警告
return SYNC_ACTION_UPDATE_REMOTE; // 返回更新远程操作
}
if (!noteInfo.has(NoteColumns.ID)) { // 如果笔记ID不存在
Log.w(TAG, "remote note id seems to be deleted"); // 输出警告
return SYNC_ACTION_UPDATE_LOCAL; // 返回更新本地操作
}
// 验证笔记ID
if (c.getLong(SqlNote.ID_COLUMN) != noteInfo.getLong(NoteColumns.ID)) {
Log.w(TAG, "note id doesn't match"); // 输出警告
return SYNC_ACTION_UPDATE_LOCAL; // 返回更新本地操作
}
if (c.getInt(SqlNote.LOCAL_MODIFIED_COLUMN) == 0) { // 如果没有本地修改
// 检查同步ID
if (c.getLong(SqlNote.SYNC_ID_COLUMN) == getLastModified()) {
// 双方没有更新
return SYNC_ACTION_NONE; // 返回无操作
} else {
// 应用远程到本地
return SYNC_ACTION_UPDATE_LOCAL; // 返回更新本地操作
}
} else {
// 验证GTask ID
if (!c.getString(SqlNote.GTASK_ID_COLUMN).equals(getGid())) {
Log.e(TAG, "gtask id doesn't match"); // 输出错误日志
return SYNC_ACTION_ERROR; // 返回错误操作
}
if (c.getLong(SqlNote.SYNC_ID_COLUMN) == getLastModified()) {
// 仅本地修改
return SYNC_ACTION_UPDATE_REMOTE; // 返回更新远程操作
} else {
return SYNC_ACTION_UPDATE_CONFLICT; // 返回更新冲突操作
}
}
} catch (Exception e) { // 捕获所有异常
Log.e(TAG, e.toString()); // 输出错误日志
e.printStackTrace(); // 打印堆栈信息
}
return SYNC_ACTION_ERROR; // 返回错误操作
}
// 判断任务是否值得保存
public boolean isWorthSaving() {
return mMetaInfo != null || (getName() != null && getName().trim().length() > 0)
|| (getNotes() != null && getNotes().trim().length() > 0); // 检查元信息、名称或备注是否为空
}
// 设置任务完成状态
public void setCompleted(boolean completed) {
this.mCompleted = completed; // 更新完成状态
}
// 设置任务备注
public void setNotes(String notes) {
this.mNotes = notes; // 更新备注
}
// 设置优先兄弟任务
public void setPriorSibling(Task priorSibling) {
this.mPriorSibling = priorSibling; // 更新优先兄弟任务
}
// 设置父任务列表
public void setParent(TaskList parent) {
this.mParent = parent; // 更新父任务列表
}
// 获取完成状态
public boolean getCompleted() {
return this.mCompleted; // 返回完成状态
}
// 获取备注
public String getNotes() {
return this.mNotes; // 返回备注
}
// 获取优先兄弟任务
public Task getPriorSibling() {
return this.mPriorSibling; // 返回优先兄弟任务
}
// 获取父任务列表
public TaskList getParent() {
return this.mParent; // 返回父任务列表
}
}

@ -5,7 +5,7 @@
* 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
* 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,
@ -14,8 +14,6 @@
* limitations under the License.
*/
// 定义了一个名为Note的类用于处理便签数据
package net.micode.notes.model;
import android.content.ContentProviderOperation;
import android.content.ContentProviderResult;
@ -35,16 +33,16 @@ import net.micode.notes.data.Notes.TextNote;
import java.util.ArrayList;
public class Note {
private ContentValues mNoteDiffValues; // 用于存储便签数据变化的ContentValues对象
private NoteData mNoteData; // 用于存储便签数据的私有类NoteData的对象
private static final String TAG = "Note"; // 用于日志标记的TAG
public class Note {
private ContentValues mNoteDiffValues;
private NoteData mNoteData;
private static final String TAG = "Note";
/**
* Create a new note id for adding a new note to databases
*/
public static synchronized long getNewNoteId(Context context, long folderId) {
// 创建一个新的便签ID用于将新的便签添加到数据库中
// Create a new note in the database
ContentValues values = new ContentValues();
long createdTime = System.currentTimeMillis();
values.put(NoteColumns.CREATED_DATE, createdTime);
@ -73,44 +71,36 @@ public class Note {
}
public void setNoteValue(String key, String value) {
// 设置便签的值
mNoteDiffValues.put(key, value);
mNoteDiffValues.put(NoteColumns.LOCAL_MODIFIED, 1);
mNoteDiffValues.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis());
}
public void setTextData(String key, String value) {
// 设置文本数据
mNoteData.setTextData(key, value);
}
public void setTextDataId(long id) {
// 设置文本数据ID
mNoteData.setTextDataId(id);
}
public long getTextDataId() {
// 获取文本数据ID
return mNoteData.mTextDataId;
}
public void setCallDataId(long id) {
// 设置通话数据ID
mNoteData.setCallDataId(id);
}
public void setCallData(String key, String value) {
// 设置通话数据
mNoteData.setCallData(key, value);
}
public boolean isLocalModified() {
// 检查是否有本地修改
return mNoteDiffValues.size() > 0 || mNoteData.isLocalModified();
}
public boolean syncNote(Context context, long noteId) {
// 同步便签数据到数据库
if (noteId <= 0) {
throw new IllegalArgumentException("Wrong note id:" + noteId);
}
@ -119,7 +109,11 @@ public class Note {
return true;
}
// 更新便签数据
/**
* In theory, once data changed, the note should be updated on {@link NoteColumns#LOCAL_MODIFIED} and
* {@link NoteColumns#MODIFIED_DATE}. For data safety, though update note fails, we also update the
* note data info
*/
if (context.getContentResolver().update(
ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId), mNoteDiffValues, null,
null) == 0) {
@ -128,7 +122,6 @@ public class Note {
}
mNoteDiffValues.clear();
// 更新便签数据信息
if (mNoteData.isLocalModified()
&& (mNoteData.pushIntoContentResolver(context, noteId) == null)) {
return false;
@ -139,9 +132,13 @@ public class Note {
private class NoteData {
private long mTextDataId;
private ContentValues mTextDataValues;
private long mCallDataId;
private ContentValues mCallDataValues;
private static final String TAG = "NoteData";
public NoteData() {
@ -152,12 +149,10 @@ public class Note {
}
boolean isLocalModified() {
// 检查是否有本地修改
return mTextDataValues.size() > 0 || mCallDataValues.size() > 0;
}
void setTextDataId(long id) {
// 设置文本数据ID
if(id <= 0) {
throw new IllegalArgumentException("Text data id should larger than 0");
}
@ -165,7 +160,6 @@ public class Note {
}
void setCallDataId(long id) {
// 设置通话数据ID
if (id <= 0) {
throw new IllegalArgumentException("Call data id should larger than 0");
}
@ -173,29 +167,32 @@ public class Note {
}
void setCallData(String key, String value) {
// 设置通话数据
mCallDataValues.put(key, value);
mNoteDiffValues.put(NoteColumns.LOCAL_MODIFIED, 1);
mNoteDiffValues.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis());
}
void setTextData(String key, String value) {
// 设置文本数据
mTextDataValues.put(key, value);
mNoteDiffValues.put(NoteColumns.LOCAL_MODIFIED, 1);
mNoteDiffValues.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis());
}
Uri pushIntoContentResolver(Context context, long noteId) {
// 将便签数据推送到内容解析器
/**
* Check for safety
*/
if (noteId <= 0) {
throw new IllegalArgumentException("Wrong note id:" + noteId);
}
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
ContentProviderOperation.Builder builder = null;
if(mTextDataValues.size() > 0) {
// 处理文本数据
mTextDataValues.put(DataColumns.NOTE_ID, noteId);
if (mTextDataId == 0) {
// 插入新的文本数据
mTextDataValues.put(DataColumns.MIME_TYPE, TextNote.CONTENT_ITEM_TYPE);
Uri uri = context.getContentResolver().insert(Notes.CONTENT_DATA_URI,
mTextDataValues);
try {
@ -206,7 +203,6 @@ public class Note {
return null;
}
} else {
// 更新文本数据
builder = ContentProviderOperation.newUpdate(ContentUris.withAppendedId(
Notes.CONTENT_DATA_URI, mTextDataId));
builder.withValues(mTextDataValues);
@ -216,10 +212,9 @@ public class Note {
}
if(mCallDataValues.size() > 0) {
// 处理通话数据
mCallDataValues.put(DataColumns.NOTE_ID, noteId);
if (mCallDataId == 0) {
// 插入新的通话数据
mCallDataValues.put(DataColumns.MIME_TYPE, CallNote.CONTENT_ITEM_TYPE);
Uri uri = context.getContentResolver().insert(Notes.CONTENT_DATA_URI,
mCallDataValues);
try {
@ -230,7 +225,6 @@ public class Note {
return null;
}
} else {
// 更新通话数据
builder = ContentProviderOperation.newUpdate(ContentUris.withAppendedId(
Notes.CONTENT_DATA_URI, mCallDataId));
builder.withValues(mCallDataValues);
@ -241,10 +235,19 @@ public class Note {
if (operationList.size() > 0) {
try {
// 应用批量操作
ContentProviderResult[] results = context.getContentResolver().applyBatch(
Notes.AUTHORITY, operationList);
return (results == null || results.length == 0 || results[0] == null) ? null
: ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId);
} catch (RemoteException e) {
Log.e(TAG, String.format("%s: %s", e.toString(),
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
return null;
} catch (OperationApplicationException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
return null;
}
}
return null;
}
}
}

@ -36,59 +36,56 @@ import java.io.IOException;
import java.io.PrintStream;
`BackupUtils.java`
```java
public class BackupUtils {
private static final String TAG = "BackupUtils"; // 定义日志标签,用于识别日志输出的来源
private static BackupUtils sInstance; // 声明一个静态实例变量,用于实现单例模式
private static final String TAG = "BackupUtils";
// Singleton stuff
private static BackupUtils sInstance;
// 提供一个公共的静态方法用于获取BackupUtils的单例实例
public static synchronized BackupUtils getInstance(Context context) {
if (sInstance == null) {
sInstance = new BackupUtils(context); // 如果实例不存在,则新建一个实例
sInstance = new BackupUtils(context);
}
return sInstance; // 返回单例实例
return sInstance;
}
// 定义一系列状态码,用于表示备份或恢复的状态
public static final int STATE_SD_CARD_UNMOUONTED = 0; // SD卡未挂载
public static final int STATE_BACKUP_FILE_NOT_EXIST = 1; // 备份文件不存在
public static final int STATE_DATA_DESTROIED = 2; // 数据格式不正确,可能被其他程序更改
public static final int STATE_SYSTEM_ERROR = 3; // 系统错误,导致备份或恢复失败
public static final int STATE_SUCCESS = 4; // 备份或恢复成功
/**
* Following states are signs to represents backup or restore
* status
*/
// Currently, the sdcard is not mounted
public static final int STATE_SD_CARD_UNMOUONTED = 0;
// The backup file not exist
public static final int STATE_BACKUP_FILE_NOT_EXIST = 1;
// The data is not well formated, may be changed by other programs
public static final int STATE_DATA_DESTROIED = 2;
// Some run-time exception which causes restore or backup fails
public static final int STATE_SYSTEM_ERROR = 3;
// Backup or restore success
public static final int STATE_SUCCESS = 4;
private TextExport mTextExport; // TextExport对象用于将数据导出到文本
private TextExport mTextExport;
// BackupUtils的私有构造函数传入Context对象
private BackupUtils(Context context) {
mTextExport = new TextExport(context); // 初始化TextExport对象
mTextExport = new TextExport(context);
}
// 检查外部存储SD卡是否可用
private static boolean externalStorageAvailable() {
return Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState()); // 比较存储状态是否为已挂载
return Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState());
}
// 导出数据到文本文件,并返回操作结果状态码
public int exportToText() {
return mTextExport.exportToText(); // 调用TextExport对象的exportToText方法
return mTextExport.exportToText();
}
// 获取导出文本文件的文件名
public String getExportedTextFileName() {
return mTextExport.mFileName; // 返回TextExport对象中保存的文件名
return mTextExport.mFileName;
}
// 获取导出文本文件的目录路径
public String getExportedTextFileDir() {
return mTextExport.mFileDirectory; // 返回TextExport对象中保存的文件目录
return mTextExport.mFileDirectory;
}
// 内部类TextExport封装了将笔记数据导出到文本文件的逻辑
private static class TextExport {
// 定义查询笔记信息时需要的字段
private static final String[] NOTE_PROJECTION = {
NoteColumns.ID,
NoteColumns.MODIFIED_DATE,
@ -96,12 +93,12 @@ public class BackupUtils {
NoteColumns.TYPE
};
// 定义NOTE_PROJECTION数组中各个字段的索引
private static final int NOTE_COLUMN_ID = 0;
private static final int NOTE_COLUMN_MODIFIED_DATE = 1;
private static final int NOTE_COLUMN_SNIPPET = 2;
// 定义查询笔记数据时需要的字段
private static final String[] DATA_PROJECTION = {
DataColumns.CONTENT,
DataColumns.MIME_TYPE,
@ -111,88 +108,93 @@ public class BackupUtils {
DataColumns.DATA4,
};
// 定义DATA_PROJECTION数组中各个字段的索引
private static final int DATA_COLUMN_CONTENT = 0;
private static final int DATA_COLUMN_MIME_TYPE = 1;
private static final int DATA_COLUMN_CALL_DATE = 2;
private static final int DATA_COLUMN_PHONE_NUMBER = 4;
// 用于格式化导出文本的字符串数组
private final String[] TEXT_FORMAT;
// 定义格式化字符串数组中的索引
private static final int FORMAT_FOLDER_NAME = 0;
private static final int FORMAT_NOTE_DATE = 1;
private static final int FORMAT_NOTE_CONTENT = 2;
private final String [] TEXT_FORMAT;
private static final int FORMAT_FOLDER_NAME = 0;
private static final int FORMAT_NOTE_DATE = 1;
private static final int FORMAT_NOTE_CONTENT = 2;
private Context mContext; // 应用程序上下文
private String mFileName; // 导出文本文件的文件名
private String mFileDirectory; // 导出文本文件的目录
private Context mContext;
private String mFileName;
private String mFileDirectory;
// TextExport类的构造函数初始化上下文和格式化字符串数组
public TextExport(Context context) {
TEXT_FORMAT = context.getResources().getStringArray(R.array.format_for_exported_note); // 从资源文件中获取格式化字符串数组
mContext = context; // 保存上下文对象
mFileName = ""; // 初始化文件名为空字符串
mFileDirectory = ""; // 初始化文件目录为空字符串
TEXT_FORMAT = context.getResources().getStringArray(R.array.format_for_exported_note);
mContext = context;
mFileName = "";
mFileDirectory = "";
}
// 根据索引获取格式化字符串
private String getFormat(int id) {
return TEXT_FORMAT[id]; // 返回格式化字符串数组中指定索引的字符串
return TEXT_FORMAT[id];
}
// 导出指定文件夹ID的笔记到文本
/**
* Export the folder identified by folder id to text
*/
private void exportFolderToText(String folderId, PrintStream ps) {
// 查询属于该文件夹的笔记
// Query notes belong to this folder
Cursor notesCursor = mContext.getContentResolver().query(Notes.CONTENT_NOTE_URI,
NOTE_PROJECTION, NoteColumns.PARENT_ID + "=?", new String[] {
folderId
}, null);
if (notesCursor != null) {
if (notesCursor.moveToFirst()) {
do {
// 打印笔记的最后修改日期
// Print note's last modified date
ps.println(String.format(getFormat(FORMAT_NOTE_DATE), DateFormat.format(
mContext.getString(R.string.format_datetime_mdhm),
notesCursor.getLong(NOTE_COLUMN_MODIFIED_DATE))));
// 查询属于该笔记的数据
// Query data belong to this note
String noteId = notesCursor.getString(NOTE_COLUMN_ID);
exportNoteToText(noteId, ps);
} while (notesCursor.moveToNext());
}
notesCursor.close(); // 关闭游标
notesCursor.close();
}
}
// 导出指定ID的笔记到文本
/**
* Export note identified by id to a print stream
*/
private void exportNoteToText(String noteId, PrintStream ps) {
// 查询笔记数据
Cursor dataCursor = mContext.getContentResolver().query(Notes.CONTENT_DATA_URI,
DATA_PROJECTION, DataColumns.NOTE_ID + "=?", new String[] {
noteId
}, null);
if (dataCursor != null) {
if (dataCursor.moveToFirst()) {
do {
String mimeType = dataCursor.getString(DATA_COLUMN_MIME_TYPE);
if (DataConstants.CALL_NOTE.equals(mimeType)) {
// 如果MIME类型为通话笔记则打印电话号码、通话日期和位置
// Print phone number
String phoneNumber = dataCursor.getString(DATA_COLUMN_PHONE_NUMBER);
long callDate = dataCursor.getLong(DATA_COLUMN_CALL_DATE);
String location = dataCursor.getString(DATA_COLUMN_CONTENT);
if (!TextUtils.isEmpty(phoneNumber)) {
ps.println(String.format(getFormat(FORMAT_NOTE_CONTENT),
phoneNumber));
}
// Print call date
ps.println(String.format(getFormat(FORMAT_NOTE_CONTENT), DateFormat
.format(mContext.getString(R.string.format_datetime_mdhm),
callDate)));
// Print call attachment location
if (!TextUtils.isEmpty(location)) {
ps.println(String.format(getFormat(FORMAT_NOTE_CONTENT),
location));
}
} else if (DataConstants.NOTE.equals(mimeType)) {
// 如果MIME类型为普通笔记则打印笔记内容
String content = dataCursor.getString(DATA_COLUMN_CONTENT);
if (!TextUtils.isEmpty(content)) {
ps.println(String.format(getFormat(FORMAT_NOTE_CONTENT),
@ -201,9 +203,9 @@ public class BackupUtils {
}
} while (dataCursor.moveToNext());
}
dataCursor.close(); // 关闭游标
dataCursor.close();
}
// 打印笔记之间的分隔符
// print a line separator between note
try {
ps.write(new byte[] {
Character.LINE_SEPARATOR, Character.LETTER_NUMBER
@ -213,37 +215,130 @@ public class BackupUtils {
}
}
// 执行导出操作,将笔记数据导出为用户可读的文本格式
/**
* Note will be exported as text which is user readable
*/
public int exportToText() {
if (!externalStorageAvailable()) {
Log.d(TAG, "Media was not mounted"); // 如果SD卡未挂载则记录日志并返回状态码
Log.d(TAG, "Media was not mounted");
return STATE_SD_CARD_UNMOUONTED;
}
PrintStream ps = getExportToTextPrintStream(); // 获取指向导出文本文件的PrintStream对象
PrintStream ps = getExportToTextPrintStream();
if (ps == null) {
Log.e(TAG, "get print stream error"); // 如果获取PrintStream失败则记录日志并返回状态码
Log.e(TAG, "get print stream error");
return STATE_SYSTEM_ERROR;
}
// 查询所有文件夹和其笔记,除了垃圾箱文件夹和通话记录文件夹
// First export folder and its notes
Cursor folderCursor = mContext.getContentResolver().query(
Notes.CONTENT_NOTE_URI,
NOTE_PROJECTION,
"(" + NoteColumns.TYPE + "=" + Notes.TYPE_FOLDER + " AND "
+ NoteColumns.PARENT_ID + "<>" + Notes.ID_TRASH_FOLER + ") OR "
+ NoteColumns.ID + "=" + Notes.ID_CALL_RECORD_FOLDER, null, null);
if (folderCursor != null) {
if (folderCursor.moveToFirst()) {
do {
// 打印文件夹名称
// Print folder's name
String folderName = "";
if(folderCursor.getLong(NOTE_COLUMN_ID) == Notes.ID_CALL_RECORD_FOLDER) {
folderName = mContext.getString(R.string.call_record_folder_name); // 如果是通话记录文件夹,则使用资源文件中的名称
folderName = mContext.getString(R.string.call_record_folder_name);
} else {
folderName = folderCursor.getString(NOTE_COLUMN_SNIPPET); // 否则,使用查询到的文件夹名称
folderName = folderCursor.getString(NOTE_COLUMN_SNIPPET);
}
if (!TextUtils.isEmpty(folderName)) {
ps.println(String.format(getFormat(FORMAT_FOLDER_NAME), folderName));
}
String folderId = folderCursor.getString(NOTE_COLUMN_ID);
exportFolderToText(folderId
exportFolderToText(folderId, ps);
} while (folderCursor.moveToNext());
}
folderCursor.close();
}
// Export notes in root's folder
Cursor noteCursor = mContext.getContentResolver().query(
Notes.CONTENT_NOTE_URI,
NOTE_PROJECTION,
NoteColumns.TYPE + "=" + +Notes.TYPE_NOTE + " AND " + NoteColumns.PARENT_ID
+ "=0", null, null);
if (noteCursor != null) {
if (noteCursor.moveToFirst()) {
do {
ps.println(String.format(getFormat(FORMAT_NOTE_DATE), DateFormat.format(
mContext.getString(R.string.format_datetime_mdhm),
noteCursor.getLong(NOTE_COLUMN_MODIFIED_DATE))));
// Query data belong to this note
String noteId = noteCursor.getString(NOTE_COLUMN_ID);
exportNoteToText(noteId, ps);
} while (noteCursor.moveToNext());
}
noteCursor.close();
}
ps.close();
return STATE_SUCCESS;
}
/**
* Get a print stream pointed to the file {@generateExportedTextFile}
*/
private PrintStream getExportToTextPrintStream() {
File file = generateFileMountedOnSDcard(mContext, R.string.file_path,
R.string.file_name_txt_format);
if (file == null) {
Log.e(TAG, "create file to exported failed");
return null;
}
mFileName = file.getName();
mFileDirectory = mContext.getString(R.string.file_path);
PrintStream ps = null;
try {
FileOutputStream fos = new FileOutputStream(file);
ps = new PrintStream(fos);
} catch (FileNotFoundException e) {
e.printStackTrace();
return null;
} catch (NullPointerException e) {
e.printStackTrace();
return null;
}
return ps;
}
}
/**
* Generate the text file to store imported data
*/
private static File generateFileMountedOnSDcard(Context context, int filePathResId, int fileNameFormatResId) {
StringBuilder sb = new StringBuilder();
sb.append(Environment.getExternalStorageDirectory());
sb.append(context.getString(filePathResId));
File filedir = new File(sb.toString());
sb.append(context.getString(
fileNameFormatResId,
DateFormat.format(context.getString(R.string.format_date_ymd),
System.currentTimeMillis())));
File file = new File(sb.toString());
try {
if (!filedir.exists()) {
filedir.mkdir();
}
if (!file.exists()) {
file.createNewFile();
}
return file;
} catch (SecurityException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}

@ -34,161 +34,262 @@ import net.micode.notes.ui.NotesListAdapter.AppWidgetAttribute;
import java.util.ArrayList;
import java.util.HashSet;
/**
*
*/
public class DataUtils {
public static final String TAG = "DataUtils"; // 定义日志标签
/**
*
* @param resolver ContentResolver访
* @param ids ID
* @return truefalse
*/
public class DataUtils {
public static final String TAG = "DataUtils";
public static boolean batchDeleteNotes(ContentResolver resolver, HashSet<Long> ids) {
if (ids == null) { // 检查传入的ID集合是否为空
if (ids == null) {
Log.d(TAG, "the ids is null");
return true;
}
if (ids.size() == 0) { // 检查ID集合是否为空
if (ids.size() == 0) {
Log.d(TAG, "no id is in the hashset");
return true;
}
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>(); // 操作列表,用于批量操作
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
for (long id : ids) {
if(id == Notes.ID_ROOT_FOLDER) { // 检查是否尝试删除根文件夹,这是不允许的
if(id == Notes.ID_ROOT_FOLDER) {
Log.e(TAG, "Don't delete system folder root");
continue;
}
ContentProviderOperation.Builder builder = ContentProviderOperation
.newDelete(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id)); // 构建删除操作
operationList.add(builder.build()); // 将删除操作添加到操作列表
.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) { // 检查操作结果
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) { // 捕获远程异常
} catch (RemoteException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
} catch (OperationApplicationException e) { // 捕获操作应用异常
} catch (OperationApplicationException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
}
return false; // 发生异常时返回false
return false;
}
/**
*
* @param resolver ContentResolver访
* @param id ID
* @param srcFolderId ID
* @param desFolderId ID
*/
public static void moveNoteToFoler(ContentResolver resolver, long id, long srcFolderId, long desFolderId) {
ContentValues values = new ContentValues(); // 创建ContentValues对象用于更新数据
values.put(NoteColumns.PARENT_ID, desFolderId); // 设置新的父ID即目标文件夹ID
values.put(NoteColumns.ORIGIN_PARENT_ID, srcFolderId); // 设置原始的父ID即当前文件夹ID
values.put(NoteColumns.LOCAL_MODIFIED, 1); // 标记笔记为本地修改
resolver.update(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id), values, null, null); // 更新笔记数据
ContentValues values = new ContentValues();
values.put(NoteColumns.PARENT_ID, desFolderId);
values.put(NoteColumns.ORIGIN_PARENT_ID, srcFolderId);
values.put(NoteColumns.LOCAL_MODIFIED, 1);
resolver.update(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id), values, null, null);
}
/**
*
* @param resolver ContentResolver访
* @param ids ID
* @param folderId ID
* @return truefalse
*/
public static boolean batchMoveToFolder(ContentResolver resolver, HashSet<Long> ids,
long folderId) {
if (ids == null) { // 检查传入的ID集合是否为空
if (ids == null) {
Log.d(TAG, "the ids is null");
return true;
}
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>(); // 操作列表,用于批量操作
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); // 设置新的父ID即目标文件夹ID
builder.withValue(NoteColumns.LOCAL_MODIFIED, 1); // 标记笔记为本地修改
operationList.add(builder.build()); // 将更新操作添加到操作列表
.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 {
ContentProviderResult[] results = resolver.applyBatch(Notes.AUTHORITY, operationList); // 执行批量操作
if (results == null || results.length == 0 || results[0] == null) { // 检查操作结果
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) { // 捕获远程异常
} catch (RemoteException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
} catch (OperationApplicationException e) { // 捕获操作应用异常
} catch (OperationApplicationException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
}
return false; // 发生异常时返回false
return false;
}
/**
*
* @param resolver ContentResolver访
* @return
* 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, // 查询笔记内容URI
new String[] { "COUNT(*)" }, // 查询计数
NoteColumns.TYPE + "=? AND " + NoteColumns.PARENT_ID + "<>?", // 查询条件,类型为文件夹且不是垃圾箱
new String[] { String.valueOf(Notes.TYPE_FOLDER), String.valueOf(Notes.ID_TRASH_FOLER)}, // 查询参数
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()) { // 移动到游标的第一行
if(cursor != null) {
if(cursor.moveToFirst()) {
try {
count = cursor.getInt(0); // 获取文件夹数量
} catch (IndexOutOfBoundsException e) { // 捕获索引越界异常
count = cursor.getInt(0);
} catch (IndexOutOfBoundsException e) {
Log.e(TAG, "get folder count failed:" + e.toString());
} finally {
cursor.close(); // 关闭游标
cursor.close();
}
}
}
return count; // 返回文件夹数量
return count;
}
/**
*
* @param resolver ContentResolver访
* @param noteId ID
* @param type
* @return truefalse
*/
public static boolean visibleInNoteDatabase(ContentResolver resolver, long noteId, int type) {
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId), // 查询笔记URI
null, // 无特定列
NoteColumns.TYPE + "=? AND " + NoteColumns.PARENT_ID + "<>" + Notes.ID_TRASH_FOLER, // 查询条件,类型匹配且不在垃圾箱
new String[] {String.valueOf(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);
boolean exist = false;
if (cursor != null) { // 检查游标是否为空
if (cursor.getCount() > 0) { // 检查查询结果数量
exist = true; // 设置存在标志为true
if (cursor != null) {
if (cursor.getCount() > 0) {
exist = true;
}
cursor.close(); // 关闭游标
cursor.close();
}
return exist; // 返回笔记是否存在
return exist;
}
/**
*
* @param resolver ContentResolver访
* @param noteId ID
* @return truefalse
*/
public static boolean existInNoteDatabase(ContentResolver resolver, long noteId)
public static boolean existInNoteDatabase(ContentResolver resolver, long noteId) {
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) {
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);
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);
} catch (IndexOutOfBoundsException e) {
Log.e(TAG, e.toString());
}
} while (c.moveToNext());
}
c.close();
}
return set;
}
public static String getCallNumberByNoteId(ContentResolver resolver, long 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) {
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) {
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;
}
}

@ -17,98 +17,97 @@
package net.micode.notes.tool;
public class GTaskStringUtils {
// 定义GTASK_JSON_ACTION_ID常量用于标识动作ID
public final static String GTASK_JSON_ACTION_ID = "action_id";
// 定义GTASK_JSON_ACTION_LIST常量用于标识动作列表
public final static String GTASK_JSON_ACTION_LIST = "action_list";
// 定义GTASK_JSON_ACTION_TYPE常量用于标识动作类型
public final static String GTASK_JSON_ACTION_TYPE = "action_type";
// 定义GTASK_JSON_ACTION_TYPE_CREATE常量表示创建动作
public final static String GTASK_JSON_ACTION_TYPE_CREATE = "create";
// 定义GTASK_JSON_ACTION_TYPE_GETALL常量表示获取所有动作
public final static String GTASK_JSON_ACTION_TYPE_GETALL = "get_all";
// 定义GTASK_JSON_ACTION_TYPE_MOVE常量表示移动动作
public final static String GTASK_JSON_ACTION_TYPE_MOVE = "move";
// 定义GTASK_JSON_ACTION_TYPE_UPDATE常量表示更新动作
public final static String GTASK_JSON_ACTION_TYPE_UPDATE = "update";
// 定义GTASK_JSON_CREATOR_ID常量用于标识创建者ID
public final static String GTASK_JSON_CREATOR_ID = "creator_id";
// 定义GTASK_JSON_CHILD_ENTITY常量用于标识子实体
public final static String GTASK_JSON_CHILD_ENTITY = "child_entity";
// 定义GTASK_JSON_CLIENT_VERSION常量用于标识客户端版本
public final static String GTASK_JSON_CLIENT_VERSION = "client_version";
// 定义GTASK_JSON_COMPLETED常量用于标识任务是否完成
public final static String GTASK_JSON_COMPLETED = "completed";
// 定义GTASK_JSON_CURRENT_LIST_ID常量用于标识当前列表ID
public final static String GTASK_JSON_CURRENT_LIST_ID = "current_list_id";
// 定义GTASK_JSON_DEFAULT_LIST_ID常量用于标识默认列表ID
public final static String GTASK_JSON_DEFAULT_LIST_ID = "default_list_id";
// 定义GTASK_JSON_DELETED常量用于标识任务是否被删除
public final static String GTASK_JSON_DELETED = "deleted";
// 定义GTASK_JSON_DEST_LIST常量用于标识目标列表
public final static String GTASK_JSON_DEST_LIST = "dest_list";
// 定义GTASK_JSON_DEST_PARENT常量用于标识目标父任务
public final static String GTASK_JSON_DEST_PARENT = "dest_parent";
// 定义GTASK_JSON_DEST_PARENT_TYPE常量用于标识目标父任务类型
public final static String GTASK_JSON_DEST_PARENT_TYPE = "dest_parent_type";
// 定义GTASK_JSON_ENTITY_DELTA常量用于标识实体变化
public final static String GTASK_JSON_ENTITY_DELTA = "entity_delta";
// 定义GTASK_JSON_ENTITY_TYPE常量用于标识实体类型
public final static String GTASK_JSON_ENTITY_TYPE = "entity_type";
// 定义GTASK_JSON_GET_DELETED常量表示获取已删除的任务
public final static String GTASK_JSON_GET_DELETED = "get_deleted";
// 定义GTASK_JSON_ID常量用于标识任务ID
public final static String GTASK_JSON_ID = "id";
// 定义GTASK_JSON_INDEX常量用于标识任务在列表中的索引
public final static String GTASK_JSON_INDEX = "index";
// 定义GTASK_JSON_LAST_MODIFIED常量用于标识任务最后修改时间
public final static String GTASK_JSON_LAST_MODIFIED = "last_modified";
// 定义GTASK_JSON_LATEST_SYNC_POINT常量用于标识最新的同步点
public final static String GTASK_JSON_LATEST_SYNC_POINT = "latest_sync_point";
// 定义GTASK_JSON_LIST_ID常量用于标识列表ID
public final static String GTASK_JSON_LIST_ID = "list_id";
// 定义GTASK_JSON_LISTS常量用于标识列表集合
public final static String GTASK_JSON_LISTS = "lists";
// 定义GTASK_JSON_NAME常量用于标识任务或列表的名称
public final static String GTASK_JSON_NAME = "name";
// 定义GTASK_JSON_NEW_ID常量用于标识新的任务ID
public final static String GTASK_JSON_NEW_ID = "new_id";
// 定义GTASK_JSON_NOTES常量用于标识任务的备注信息
public final static String GTASK_JSON_NOTES = "notes";
// 定义GTASK_JSON_PARENT_ID常量用于标识父任务ID
public final static String GTASK_JSON_PARENT_ID = "parent_id";
// 定义GTASK_JSON_PRIOR_SIBLING_ID常量用于标识前一个兄弟任务ID
public final static String GTASK_JSON_PRIOR_SIBLING_ID = "prior_sibling_id";
// 定义GTASK_JSON_RESULTS常量用于标识操作结果
public final static String GTASK_JSON_RESULTS = "results";
// 定义GTASK_JSON_SOURCE_LIST常量用于标识源列表
public final static String GTASK_JSON_SOURCE_LIST = "source_list";
// 定义GTASK_JSON_TASKS常量用于标识任务集合
public final static String GTASK_JSON_TASKS = "tasks";
// 定义GTASK_JSON_TYPE常量用于标识实体类型
public final static String GTASK_JSON_TYPE = "type";
// 定义GTASK_JSON_TYPE_GROUP常量表示分组类型
public final static String GTASK_JSON_TYPE_GROUP = "GROUP";
// 定义GTASK_JSON_TYPE_TASK常量表示任务类型
public final static String GTASK_JSON_TYPE_TASK = "TASK";
// 定义GTASK_JSON_USER常量用于标识用户信息
public final static String GTASK_JSON_USER = "user";
// 定义MIUI_FOLDER_PREFFIX常量用于标识MIUI笔记的文件夹前缀
public final static String MIUI_FOLDER_PREFFIX = "[MIUI_Notes]";
// 定义FOLDER_DEFAULT常量用于标识默认文件夹名称
public final static String FOLDER_DEFAULT = "Default";
// 定义FOLDER_CALL_NOTE常量用于标识通话记录文件夹名称
public final static String FOLDER_CALL_NOTE = "Call_Note";
// 定义FOLDER_META常量用于标识元数据文件夹名称
public final static String FOLDER_META = "METADATA";
// 定义META_HEAD_GTASK_ID常量用于标识元数据中的GTask ID
public final static String META_HEAD_GTASK_ID = "meta_gid";
// 定义META_HEAD_NOTE常量用于标识元数据中的笔记信息
public final static String META_HEAD_NOTE = "meta_note";
// 定义META_HEAD_DATA常量用于标识元数据中的其他数据
public final static String META_HEAD_DATA = "meta_data";
// 定义META_NOTE_NAME常量用于标识元数据笔记的名称警告不要更新或删除
public final static String META_NOTE_NAME = "[META INFO] DON'T UPDATE AND DELETE";
}
}

@ -22,35 +22,24 @@ import android.preference.PreferenceManager;
import net.micode.notes.R;
import net.micode.notes.ui.NotesPreferenceActivity;
/**
* ID
*/
public class ResourceParser {
// 定义颜色常量
public static final int YELLOW = 0;
public static final int BLUE = 1;
public static final int WHITE = 2;
public static final int GREEN = 3;
public static final int RED = 4;
// 定义默认背景颜色常量
public static final int BG_DEFAULT_COLOR = YELLOW;
// 定义字体大小常量
public static final int TEXT_SMALL = 0;
public static final int TEXT_MEDIUM = 1;
public static final int TEXT_LARGE = 2;
public static final int TEXT_SUPER = 3;
// 定义默认字体大小常量
public static final int BG_DEFAULT_FONT_SIZE = TEXT_MEDIUM;
/**
* ID
*/
public static class NoteBgResources {
// 定义编辑状态下不同颜色的笔记背景资源ID数组
private final static int [] BG_EDIT_RESOURCES = new int [] {
R.drawable.edit_yellow,
R.drawable.edit_blue,
@ -59,7 +48,6 @@ public class ResourceParser {
R.drawable.edit_red
};
// 定义编辑状态下不同颜色的笔记标题背景资源ID数组
private final static int [] BG_EDIT_TITLE_RESOURCES = new int [] {
R.drawable.edit_title_yellow,
R.drawable.edit_title_blue,
@ -68,21 +56,15 @@ public class ResourceParser {
R.drawable.edit_title_red
};
// 获取编辑状态下指定颜色的笔记背景资源ID
public static int getNoteBgResource(int id) {
return BG_EDIT_RESOURCES[id];
}
// 获取编辑状态下指定颜色的笔记标题背景资源ID
public static int getNoteTitleBgResource(int id) {
return BG_EDIT_TITLE_RESOURCES[id];
}
}
/**
* ID
* IDID
*/
public static int getDefaultBgId(Context context) {
if (PreferenceManager.getDefaultSharedPreferences(context).getBoolean(
NotesPreferenceActivity.PREFERENCE_SET_BG_COLOR_KEY, false)) {
@ -92,11 +74,7 @@ public class ResourceParser {
}
}
/**
* ID
*/
public static class NoteItemBgResources {
// 定义列表中首项不同颜色的笔记背景资源ID数组
private final static int [] BG_FIRST_RESOURCES = new int [] {
R.drawable.list_yellow_up,
R.drawable.list_blue_up,
@ -105,7 +83,6 @@ public class ResourceParser {
R.drawable.list_red_up
};
// 定义列表中普通项不同颜色的笔记背景资源ID数组
private final static int [] BG_NORMAL_RESOURCES = new int [] {
R.drawable.list_yellow_middle,
R.drawable.list_blue_middle,
@ -114,7 +91,6 @@ public class ResourceParser {
R.drawable.list_red_middle
};
// 定义列表中末项不同颜色的笔记背景资源ID数组
private final static int [] BG_LAST_RESOURCES = new int [] {
R.drawable.list_yellow_down,
R.drawable.list_blue_down,
@ -123,7 +99,6 @@ public class ResourceParser {
R.drawable.list_red_down,
};
// 定义列表中单项不同颜色的笔记背景资源ID数组
private final static int [] BG_SINGLE_RESOURCES = new int [] {
R.drawable.list_yellow_single,
R.drawable.list_blue_single,
@ -132,37 +107,28 @@ public class ResourceParser {
R.drawable.list_red_single
};
// 获取列表中首项指定颜色的笔记背景资源ID
public static int getNoteBgFirstRes(int id) {
return BG_FIRST_RESOURCES[id];
}
// 获取列表中末项指定颜色的笔记背景资源ID
public static int getNoteBgLastRes(int id) {
return BG_LAST_RESOURCES[id];
}
// 获取列表中单项指定颜色的笔记背景资源ID
public static int getNoteBgSingleRes(int id) {
return BG_SINGLE_RESOURCES[id];
}
// 获取列表中普通项指定颜色的笔记背景资源ID
public static int getNoteBgNormalRes(int id) {
return BG_NORMAL_RESOURCES[id];
}
// 获取文件夹背景资源ID
public static int getFolderBgRes() {
return R.drawable.list_folder;
}
}
/**
* 2x24x4ID
*/
public static class WidgetBgResources {
// 定义2x2大小不同颜色的部件背景资源ID数组
private final static int [] BG_2X_RESOURCES = new int [] {
R.drawable.widget_2x_yellow,
R.drawable.widget_2x_blue,
@ -171,12 +137,10 @@ public class ResourceParser {
R.drawable.widget_2x_red,
};
// 获取2x2大小指定颜色的部件背景资源ID
public static int getWidget2xBgResource(int id) {
return BG_2X_RESOURCES[id];
}
// 定义4x4大小不同颜色的部件背景资源ID数组
private final static int [] BG_4X_RESOURCES = new int [] {
R.drawable.widget_4x_yellow,
R.drawable.widget_4x_blue,
@ -185,17 +149,12 @@ public class ResourceParser {
R.drawable.widget_4x_red
};
// 获取4x4大小指定颜色的部件背景资源ID
public static int getWidget4xBgResource(int id) {
return BG_4X_RESOURCES[id];
}
}
/**
* ID
*/
public static class TextAppearanceResources {
// 定义不同大小的文本外观资源ID数组
private final static int [] TEXTAPPEARANCE_RESOURCES = new int [] {
R.style.TextAppearanceNormal,
R.style.TextAppearanceMedium,
@ -203,7 +162,6 @@ public class ResourceParser {
R.style.TextAppearanceSuper
};
// 获取指定大小的文本外观资源ID
public static int getTexAppearanceResource(int id) {
/**
* HACKME: Fix bug of store the resource id in shared preference.
@ -216,9 +174,8 @@ public class ResourceParser {
return TEXTAPPEARANCE_RESOURCES[id];
}
// 获取文本外观资源数组的大小
public static int getResourcesSize() {
return TEXTAPPEARANCE_RESOURCES.length;
}
}
}
}

Binary file not shown.
Loading…
Cancel
Save