| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using MongoDB.Driver;
- namespace ETModel
- {
- [ObjectSystem]
- public class DBQueryJsonTaskAwakeSystem : AwakeSystem<DBQueryJsonTask, string, string, TaskCompletionSource<List<ComponentWithId>>>
- {
- public override void Awake(DBQueryJsonTask self, string collectionName, string json, TaskCompletionSource<List<ComponentWithId>> tcs)
- {
- self.CollectionName = collectionName;
- self.Json = json;
- self.Tcs = tcs;
- }
- }
- public sealed class DBQueryJsonTask : DBTask
- {
- public string CollectionName { get; set; }
- public string Json { get; set; }
- public TaskCompletionSource<List<ComponentWithId>> Tcs { get; set; }
-
- public override async Task Run()
- {
- DBComponent dbComponent = Game.Scene.GetComponent<DBComponent>();
- try
- {
- // 执行查询数据库任务
- FilterDefinition<ComponentWithId> filterDefinition = new JsonFilterDefinition<ComponentWithId>(this.Json);
- List<ComponentWithId> components = await dbComponent.GetCollection(this.CollectionName).FindAsync(filterDefinition).Result.ToListAsync();
- this.Tcs.SetResult(components);
- }
- catch (Exception e)
- {
- this.Tcs.SetException(new Exception($"查询数据库异常! {CollectionName} {this.Json}", e));
- }
- }
- }
- }
|