csharp-sdk-upm/Storage/Internal/Operation/LCRemoveOperation.cs

43 lines
1.3 KiB
C#
Raw Normal View History

2020-02-19 18:50:51 +08:00
using System;
2020-02-20 12:44:33 +08:00
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using LeanCloud.Storage.Internal.Codec;
2020-02-19 18:50:51 +08:00
namespace LeanCloud.Storage.Internal.Operation {
2020-02-20 12:44:33 +08:00
internal class LCRemoveOperation : ILCOperation {
List<object> valueList;
internal LCRemoveOperation(IEnumerable<object> values) {
valueList = new List<object>(values);
2020-02-20 12:44:33 +08:00
}
public ILCOperation MergeWithPrevious(ILCOperation previousOp) {
if (previousOp is LCSetOperation || previousOp is LCDeleteOperation) {
return previousOp;
}
if (previousOp is LCRemoveOperation removeOp) {
valueList.AddRange(removeOp.valueList);
}
throw new ArgumentException("Operation is invalid after previous operation.");
}
public object Encode() {
2020-02-20 12:44:33 +08:00
return new Dictionary<string, object> {
{ "__op", "Remove" },
{ "objects", LCEncoder.Encode(valueList) }
};
}
public object Apply(object oldValue, string key) {
List<object> list = new List<object>(oldValue as IEnumerable<object>);
list.RemoveAll(item => valueList.Contains(item));
2020-02-20 12:44:33 +08:00
return list;
}
public IEnumerable GetNewObjectList() {
return null;
2020-02-19 18:50:51 +08:00
}
}
}