2020-02-21 16:44:58 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2020-02-24 17:50:31 +08:00
|
|
|
|
using System.Threading.Tasks;
|
2020-02-19 18:50:51 +08:00
|
|
|
|
using LeanCloud.Storage.Internal.Object;
|
|
|
|
|
using LeanCloud.Storage.Internal.Operation;
|
2020-02-24 17:50:31 +08:00
|
|
|
|
using LeanCloud.Storage.Internal.Codec;
|
2020-02-19 18:50:51 +08:00
|
|
|
|
|
|
|
|
|
namespace LeanCloud.Storage {
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对象类
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class LCObject {
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最近一次与服务端同步的数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
LCObjectData data;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预算数据
|
|
|
|
|
/// </summary>
|
2020-02-24 17:50:31 +08:00
|
|
|
|
internal Dictionary<string, object> estimatedData;
|
2020-02-19 18:50:51 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 操作字典
|
|
|
|
|
/// </summary>
|
2020-02-24 17:50:31 +08:00
|
|
|
|
internal Dictionary<string, ILCOperation> operationDict;
|
2020-02-19 18:50:51 +08:00
|
|
|
|
|
2020-02-21 16:44:58 +08:00
|
|
|
|
static readonly Dictionary<Type, LCSubclassInfo> subclassTypeDict = new Dictionary<Type, LCSubclassInfo>();
|
|
|
|
|
static readonly Dictionary<string, LCSubclassInfo> subclassNameDict = new Dictionary<string, LCSubclassInfo>();
|
|
|
|
|
|
2020-02-19 18:50:51 +08:00
|
|
|
|
public string ClassName {
|
|
|
|
|
get {
|
|
|
|
|
return data.ClassName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ObjectId {
|
|
|
|
|
get {
|
|
|
|
|
return data.ObjectId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-21 16:44:58 +08:00
|
|
|
|
public DateTime CreatedAt {
|
|
|
|
|
get {
|
|
|
|
|
return data.CreatedAt;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DateTime UpdatedAt {
|
|
|
|
|
get {
|
|
|
|
|
return data.UpdatedAt;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public LCACL ACL {
|
|
|
|
|
get {
|
|
|
|
|
return this["ACL"] as LCACL ;
|
2020-02-26 13:01:22 +08:00
|
|
|
|
} set {
|
|
|
|
|
this["ACL"] = value;
|
2020-02-21 16:44:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool isNew;
|
|
|
|
|
|
2020-02-24 17:50:31 +08:00
|
|
|
|
bool IsDirty {
|
|
|
|
|
get {
|
|
|
|
|
return isNew || estimatedData.Count > 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-21 16:44:58 +08:00
|
|
|
|
public LCObject(string className) {
|
|
|
|
|
if (string.IsNullOrEmpty(className)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(className));
|
|
|
|
|
}
|
|
|
|
|
data = new LCObjectData();
|
|
|
|
|
estimatedData = new Dictionary<string, object>();
|
|
|
|
|
operationDict = new Dictionary<string, ILCOperation>();
|
|
|
|
|
|
|
|
|
|
data.ClassName = className;
|
|
|
|
|
isNew = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static LCObject CreateWithoutData(string className, string objectId) {
|
|
|
|
|
if (string.IsNullOrEmpty(objectId)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(objectId));
|
|
|
|
|
}
|
2020-03-18 16:21:29 +08:00
|
|
|
|
LCObject obj = Create(className);
|
2020-02-21 16:44:58 +08:00
|
|
|
|
obj.data.ObjectId = objectId;
|
|
|
|
|
obj.isNew = false;
|
2020-02-25 20:39:49 +08:00
|
|
|
|
return obj;
|
2020-02-19 18:50:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static LCObject Create(string className) {
|
2020-02-21 16:44:58 +08:00
|
|
|
|
if (subclassNameDict.TryGetValue(className, out LCSubclassInfo subclassInfo)) {
|
|
|
|
|
return subclassInfo.Constructor.Invoke();
|
|
|
|
|
}
|
|
|
|
|
return new LCObject(className);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static LCObject Create(Type type) {
|
|
|
|
|
if (subclassTypeDict.TryGetValue(type, out LCSubclassInfo subclassInfo)) {
|
|
|
|
|
return subclassInfo.Constructor.Invoke();
|
|
|
|
|
}
|
2020-02-19 18:50:51 +08:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2020-02-21 16:44:58 +08:00
|
|
|
|
|
|
|
|
|
public object this[string key] {
|
|
|
|
|
get {
|
2020-02-25 20:39:49 +08:00
|
|
|
|
if (estimatedData.TryGetValue(key, out object value)) {
|
|
|
|
|
if (value is LCRelation<LCObject> relation) {
|
|
|
|
|
relation.Key = key;
|
|
|
|
|
relation.Parent = this;
|
|
|
|
|
}
|
|
|
|
|
return value;
|
2020-02-21 16:44:58 +08:00
|
|
|
|
}
|
2020-02-25 20:39:49 +08:00
|
|
|
|
return null;
|
2020-02-21 16:44:58 +08:00
|
|
|
|
}
|
|
|
|
|
set {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (key.StartsWith("_")) {
|
|
|
|
|
throw new ArgumentException("key should not start with '_'");
|
|
|
|
|
}
|
|
|
|
|
if (key == "objectId" || key == "createdAt" || key == "updatedAt") {
|
|
|
|
|
throw new ArgumentException($"{key} is reserved by LeanCloud");
|
|
|
|
|
}
|
|
|
|
|
LCSetOperation setOp = new LCSetOperation(value);
|
|
|
|
|
ApplyOperation(key, setOp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-27 17:06:21 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除字段
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
2020-02-21 16:44:58 +08:00
|
|
|
|
public void Unset(string key) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
LCDeleteOperation deleteOp = new LCDeleteOperation();
|
|
|
|
|
ApplyOperation(key, deleteOp);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-27 17:06:21 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 增加关联
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
/// <param name="value"></param>
|
2020-02-27 12:31:48 +08:00
|
|
|
|
public void AddRelation(string key, LCObject value) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(value));
|
|
|
|
|
}
|
|
|
|
|
LCAddRelationOperation op = new LCAddRelationOperation(new List<LCObject> { value });
|
|
|
|
|
ApplyOperation(key, op);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-27 17:06:21 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除关联
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
/// <param name="value"></param>
|
2020-02-27 12:31:48 +08:00
|
|
|
|
public void RemoveRelation(string key, LCObject value) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(value));
|
|
|
|
|
}
|
|
|
|
|
LCRemoveRelationOperation op = new LCRemoveRelationOperation(value);
|
|
|
|
|
ApplyOperation(key, op);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-27 17:06:21 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 增加数字属性值
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
/// <param name="value"></param>
|
|
|
|
|
public void Increment(string key, object value) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(value));
|
|
|
|
|
}
|
|
|
|
|
LCNumberOperation op = new LCNumberOperation(value);
|
|
|
|
|
ApplyOperation(key, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 在数组属性中增加一个元素
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
/// <param name="value"></param>
|
|
|
|
|
public void Add(string key, object value) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(value));
|
|
|
|
|
}
|
|
|
|
|
LCAddOperation op = new LCAddOperation(new List<object> { value });
|
|
|
|
|
ApplyOperation(key, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 在数组属性中增加一组元素
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
/// <param name="values"></param>
|
|
|
|
|
public void AddAll(string key, IEnumerable values) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (values == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(values));
|
|
|
|
|
}
|
|
|
|
|
LCAddOperation op = new LCAddOperation(new List<object>(values.Cast<object>()));
|
|
|
|
|
ApplyOperation(key, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 在数组属性中增加一个唯一元素
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
/// <param name="value"></param>
|
|
|
|
|
public void AddUnique(string key, object value) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(value));
|
|
|
|
|
}
|
|
|
|
|
LCAddUniqueOperation op = new LCAddUniqueOperation(new List<object> { value });
|
|
|
|
|
ApplyOperation(key, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 在数组属性中增加一组唯一元素
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
/// <param name="value"></param>
|
|
|
|
|
public void AddAllUnique(string key, IEnumerable values) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (values == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(values));
|
|
|
|
|
}
|
|
|
|
|
LCAddUniqueOperation op = new LCAddUniqueOperation(new List<object>(values.Cast<object>()));
|
|
|
|
|
ApplyOperation(key, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 移除某个元素
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
/// <param name="value"></param>
|
|
|
|
|
public void Remove(string key, object value) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(value));
|
|
|
|
|
}
|
|
|
|
|
LCRemoveOperation op = new LCRemoveOperation(new List<object> { value });
|
|
|
|
|
ApplyOperation(key, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 移除一组元素
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="key"></param>
|
|
|
|
|
/// <param name="values"></param>
|
|
|
|
|
public void RemoveAll(string key, IEnumerable values) {
|
|
|
|
|
if (string.IsNullOrEmpty(key)) {
|
|
|
|
|
throw new ArgumentNullException(nameof(key));
|
|
|
|
|
}
|
|
|
|
|
if (values == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(values));
|
|
|
|
|
}
|
|
|
|
|
LCRemoveOperation op = new LCRemoveOperation(new List<object>(values.Cast<object>()));
|
|
|
|
|
ApplyOperation(key, op);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 17:50:31 +08:00
|
|
|
|
static async Task SaveBatches(Stack<LCBatch> batches) {
|
|
|
|
|
while (batches.Count > 0) {
|
|
|
|
|
LCBatch batch = batches.Pop();
|
|
|
|
|
List<LCObject> dirtyObjects = batch.objects.Where(item => item.IsDirty)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
List<Dictionary<string, object>> requestList = dirtyObjects.Select(item => {
|
|
|
|
|
string path = item.ObjectId == null ?
|
|
|
|
|
$"/1.1/classes/{item.ClassName}" :
|
|
|
|
|
$"/1.1/classes/{item.ClassName}/{item.ClassName}";
|
|
|
|
|
string method = item.ObjectId == null ? "POST" : "PUT";
|
|
|
|
|
Dictionary<string, object> body = LCEncoder.Encode(item.operationDict) as Dictionary<string, object>;
|
|
|
|
|
return new Dictionary<string, object> {
|
|
|
|
|
{ "path", path },
|
|
|
|
|
{ "method", method },
|
|
|
|
|
{ "body", body }
|
|
|
|
|
};
|
|
|
|
|
}).ToList();
|
|
|
|
|
|
|
|
|
|
Dictionary<string, object> data = new Dictionary<string, object> {
|
|
|
|
|
{ "requests", LCEncoder.Encode(requestList) }
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-10 16:25:46 +08:00
|
|
|
|
List<Dictionary<string, object>> results = await LCApplication.HttpClient.Post<List<Dictionary<string, object>>>("batch", data: data);
|
2020-02-24 17:50:31 +08:00
|
|
|
|
List<LCObjectData> resultList = results.Select(item => {
|
2020-02-25 20:39:49 +08:00
|
|
|
|
if (item.TryGetValue("error", out object error)) {
|
|
|
|
|
Dictionary<string, object> err = error as Dictionary<string, object>;
|
|
|
|
|
int code = (int)err["code"];
|
|
|
|
|
string message = (string)err["error"];
|
2020-02-24 17:50:31 +08:00
|
|
|
|
throw new LCException(code, message as string);
|
|
|
|
|
}
|
2020-02-25 20:39:49 +08:00
|
|
|
|
return LCObjectData.Decode(item["success"] as IDictionary);
|
2020-02-24 17:50:31 +08:00
|
|
|
|
}).ToList();
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < dirtyObjects.Count; i++) {
|
|
|
|
|
LCObject obj = dirtyObjects[i];
|
|
|
|
|
LCObjectData objData = resultList[i];
|
|
|
|
|
obj.Merge(objData);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<LCObject> Save(bool fetchWhenSave = false, LCQuery<LCObject> query = null) {
|
|
|
|
|
if (LCBatch.HasCircleReference(this, new HashSet<LCObject>())) {
|
|
|
|
|
throw new ArgumentException("Found a circle dependency when save.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Stack<LCBatch> batches = LCBatch.BatchObjects(new List<LCObject> { this }, false);
|
|
|
|
|
if (batches.Count > 0) {
|
|
|
|
|
await SaveBatches(batches);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string path = ObjectId == null ? $"classes/{ClassName}" : $"classes/{ClassName}/{ObjectId}";
|
|
|
|
|
Dictionary<string, object> queryParams = new Dictionary<string, object>();
|
|
|
|
|
if (fetchWhenSave) {
|
|
|
|
|
queryParams["fetchWhenSave"] = true;
|
|
|
|
|
}
|
|
|
|
|
if (query != null) {
|
|
|
|
|
queryParams["where"] = query.BuildWhere();
|
|
|
|
|
}
|
|
|
|
|
Dictionary<string, object> response = ObjectId == null ?
|
2020-03-10 16:25:46 +08:00
|
|
|
|
await LCApplication.HttpClient.Post<Dictionary<string, object>>(path, data: LCEncoder.Encode(operationDict) as Dictionary<string, object>, queryParams: queryParams) :
|
|
|
|
|
await LCApplication.HttpClient.Put<Dictionary<string, object>>(path, data: LCEncoder.Encode(operationDict) as Dictionary<string, object>, queryParams: queryParams);
|
2020-02-24 17:50:31 +08:00
|
|
|
|
LCObjectData data = LCObjectData.Decode(response);
|
|
|
|
|
Merge(data);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-25 20:39:49 +08:00
|
|
|
|
public static async Task<List<LCObject>> SaveAll(List<LCObject> objectList) {
|
|
|
|
|
if (objectList == null) {
|
|
|
|
|
throw new ArgumentNullException(nameof(objectList));
|
|
|
|
|
}
|
|
|
|
|
foreach (LCObject obj in objectList) {
|
|
|
|
|
if (LCBatch.HasCircleReference(obj, new HashSet<LCObject>())) {
|
|
|
|
|
throw new ArgumentException("Found a circle dependency when save.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Stack<LCBatch> batches = LCBatch.BatchObjects(objectList, true);
|
|
|
|
|
await SaveBatches(batches);
|
|
|
|
|
return objectList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task Delete() {
|
|
|
|
|
if (ObjectId == null) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
string path = $"classes/{ClassName}/{ObjectId}";
|
2020-03-10 16:25:46 +08:00
|
|
|
|
await LCApplication.HttpClient.Delete(path);
|
2020-02-25 20:39:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static async Task DeleteAll(List<LCObject> objectList) {
|
|
|
|
|
if (objectList == null || objectList.Count == 0) {
|
|
|
|
|
throw new ArgumentNullException(nameof(objectList));
|
|
|
|
|
}
|
|
|
|
|
IEnumerable<LCObject> objects = objectList.Where(item => item.ObjectId != null);
|
|
|
|
|
HashSet<LCObject> objectSet = new HashSet<LCObject>(objects);
|
|
|
|
|
List<Dictionary<string, object>> requestList = objectSet.Select(item => {
|
2020-03-10 16:25:46 +08:00
|
|
|
|
string path = $"/{LCApplication.APIVersion}/classes/{item.ClassName}/{item.ObjectId}";
|
2020-02-25 20:39:49 +08:00
|
|
|
|
return new Dictionary<string, object> {
|
|
|
|
|
{ "path", path },
|
|
|
|
|
{ "method", "DELETE" }
|
|
|
|
|
};
|
|
|
|
|
}).ToList();
|
|
|
|
|
Dictionary<string, object> data = new Dictionary<string, object> {
|
|
|
|
|
{ "requests", LCEncoder.Encode(requestList) }
|
|
|
|
|
};
|
2020-03-10 16:25:46 +08:00
|
|
|
|
await LCApplication.HttpClient.Post<List<object>>("batch", data: data);
|
2020-02-25 20:39:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<LCObject> Fetch(IEnumerable<string> keys = null, IEnumerable<string> includes = null) {
|
|
|
|
|
Dictionary<string, object> queryParams = new Dictionary<string, object>();
|
|
|
|
|
if (keys != null) {
|
|
|
|
|
queryParams["keys"] = string.Join(",", keys);
|
|
|
|
|
}
|
|
|
|
|
if (includes != null) {
|
|
|
|
|
queryParams["include"] = string.Join(",", includes);
|
|
|
|
|
}
|
|
|
|
|
string path = $"classes/{ClassName}/{ObjectId}";
|
2020-03-10 16:25:46 +08:00
|
|
|
|
Dictionary<string, object> response = await LCApplication.HttpClient.Get<Dictionary<string, object>>(path, queryParams: queryParams);
|
2020-02-25 20:39:49 +08:00
|
|
|
|
LCObjectData objectData = LCObjectData.Decode(response);
|
|
|
|
|
Merge(objectData);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-26 11:16:21 +08:00
|
|
|
|
public static void RegisterSubclass<T>(string className, Func<LCObject> constructor) where T : LCObject {
|
|
|
|
|
Type classType = typeof(T);
|
|
|
|
|
LCSubclassInfo subclassInfo = new LCSubclassInfo(className, classType, constructor);
|
2020-02-21 16:44:58 +08:00
|
|
|
|
subclassNameDict[className] = subclassInfo;
|
2020-02-26 11:16:21 +08:00
|
|
|
|
subclassTypeDict[classType] = subclassInfo;
|
2020-02-21 16:44:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ApplyOperation(string key, ILCOperation op) {
|
|
|
|
|
if (operationDict.TryGetValue(key, out ILCOperation previousOp)) {
|
|
|
|
|
operationDict[key] = op.MergeWithPrevious(previousOp);
|
|
|
|
|
} else {
|
|
|
|
|
operationDict[key] = op;
|
|
|
|
|
}
|
|
|
|
|
if (op is LCDeleteOperation) {
|
|
|
|
|
estimatedData.Remove(key);
|
|
|
|
|
} else {
|
2020-02-25 20:39:49 +08:00
|
|
|
|
if (estimatedData.TryGetValue(key, out object oldValue)) {
|
|
|
|
|
estimatedData[key] = op.Apply(oldValue, key);
|
|
|
|
|
} else {
|
|
|
|
|
estimatedData[key] = op.Apply(null, key);
|
|
|
|
|
}
|
2020-02-21 16:44:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void Merge(LCObjectData objectData) {
|
|
|
|
|
data.ClassName = objectData.ClassName ?? data.ClassName;
|
|
|
|
|
data.ObjectId = objectData.ObjectId ?? data.ObjectId;
|
|
|
|
|
data.CreatedAt = objectData.CreatedAt != null ? objectData.CreatedAt : data.CreatedAt;
|
|
|
|
|
data.UpdatedAt = objectData.UpdatedAt != null ? objectData.UpdatedAt : data.UpdatedAt;
|
|
|
|
|
// 先将本地的预估数据直接替换
|
|
|
|
|
data.CustomPropertyDict = estimatedData;
|
|
|
|
|
// 再将服务端的数据覆盖
|
|
|
|
|
foreach (KeyValuePair<string, object> kv in objectData.CustomPropertyDict) {
|
|
|
|
|
string key = kv.Key;
|
|
|
|
|
object value = kv.Value;
|
|
|
|
|
data.CustomPropertyDict[key] = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 最后重新生成预估数据,用于后续访问和操作
|
|
|
|
|
RebuildEstimatedData();
|
|
|
|
|
// 清空操作
|
|
|
|
|
operationDict.Clear();
|
|
|
|
|
isNew = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RebuildEstimatedData() {
|
|
|
|
|
estimatedData = new Dictionary<string, object>();
|
|
|
|
|
foreach (KeyValuePair<string, object> kv in data.CustomPropertyDict) {
|
|
|
|
|
string key = kv.Key;
|
|
|
|
|
object value = kv.Value;
|
|
|
|
|
if (value is IList list) {
|
|
|
|
|
estimatedData[key] = new List<object>(list.Cast<object>());
|
|
|
|
|
} else if (value is IDictionary dict) {
|
|
|
|
|
Dictionary<string, object> d = new Dictionary<string, object>();
|
|
|
|
|
foreach (DictionaryEntry entry in dict) {
|
|
|
|
|
string k = entry.Key.ToString();
|
|
|
|
|
object v = entry.Value;
|
|
|
|
|
d[k] = v;
|
|
|
|
|
}
|
|
|
|
|
estimatedData[key] = d;
|
|
|
|
|
} else {
|
|
|
|
|
estimatedData[key] = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-19 18:50:51 +08:00
|
|
|
|
}
|
|
|
|
|
}
|