From 1144d1a47ee403b53b7f8ded8ff6c4c8874245d7 Mon Sep 17 00:00:00 2001 From: dev02 Date: Mon, 15 Jan 2024 15:29:23 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=BE=8C=E7=AB=AF]=20=E8=AA=BF=E6=95=B4?= =?UTF-8?q?=E5=BE=8C=E5=8F=B0=E5=90=8C=E6=AD=A5=E5=88=86=E6=89=B9=E8=BC=B8?= =?UTF-8?q?=E5=85=A5=E8=B3=87=E6=96=99(413=20request=20content-length=20to?= =?UTF-8?q?o=20large),=20=E9=9A=B1=E8=97=8F=E5=88=AA=E9=99=A4=E6=89=80?= =?UTF-8?q?=E6=9C=89auth=5Fpage=E7=A8=8B=E5=BA=8F,=20=E4=BF=AE=E6=94=B9api?= =?UTF-8?q?=E6=A2=9D=E4=BB=B6=20[=E5=89=8D=E7=AB=AF]=20=E8=AA=BF=E6=95=B4?= =?UTF-8?q?=E5=BE=8C=E5=8F=B0=E5=90=8C=E6=AD=A5=E5=88=86=E6=89=B9=E8=BC=B8?= =?UTF-8?q?=E5=85=A5=E8=B3=87=E6=96=99(413=20request=20content-length=20to?= =?UTF-8?q?o=20large)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Backend/Controllers/BuildMenuController.cs | 24 +- .../NiagaraDataSynchronizeController.cs | 210 ++++++++++++------ Backend/Startup.cs | 6 + .../Views/NiagaraDataSynchronize/Index.cshtml | 105 +++++++-- .../ApiControllers/HistoryController.cs | 2 +- .../NiagaraDataSynchronizeRepository.cs | 53 ++--- .../INiagaraDataSynchronizeRepository.cs | 2 +- 7 files changed, 274 insertions(+), 128 deletions(-) diff --git a/Backend/Controllers/BuildMenuController.cs b/Backend/Controllers/BuildMenuController.cs index f71ada7..d0e1aed 100644 --- a/Backend/Controllers/BuildMenuController.cs +++ b/Backend/Controllers/BuildMenuController.cs @@ -254,19 +254,19 @@ namespace Backend.Controllers await backendRepository.AddOneByCustomTable(pagedictionary, "auth_page"); var param = new { main_system_type = main_system_type, sub_system_type = sub_system_type }; - await backendRepository.ExecuteSql(@"DELETE FROM auth_page - WHERE auth_page.AuthCode like 'F%'; - INSERT INTO auth_page (AuthCode,AuthType,MainName,SubName,building_tag,ShowView) - SELECT concat('F', CONVERT(ROW_NUMBER() OVER(ORDER BY bm.building_tag ASC), nchar)) AuthCode, '1' as AuthType, - mv.system_key MainName, sv.system_key SubName, bm.building_tag, sv.id ShowView - FROM building_menu bm - LEFT JOIN variable mv ON bm.main_system_tag = mv.system_value AND mv.system_type = @main_system_type - LEFT JOIN variable sv ON bm.sub_system_tag = sv.system_value AND sv.system_type = @sub_system_type", param); + //await backendRepository.ExecuteSql(@"DELETE FROM auth_page + // WHERE auth_page.AuthCode like 'F%'; + // INSERT INTO auth_page (AuthCode,AuthType,MainName,SubName,building_tag,ShowView) + // SELECT concat('F', CONVERT(ROW_NUMBER() OVER(ORDER BY bm.building_tag ASC), nchar)) AuthCode, '1' as AuthType, + // mv.system_key MainName, sv.system_key SubName, bm.building_tag, sv.id ShowView + // FROM building_menu bm + // LEFT JOIN variable mv ON bm.main_system_tag = mv.system_value AND mv.system_type = @main_system_type + // LEFT JOIN variable sv ON bm.sub_system_tag = sv.system_value AND sv.system_type = @sub_system_type", param); - await backendRepository.ExecuteSql(@"delete a from role_auth a join role b on a.role_guid = b.role_guid where b.layer = 0; - INSERT INTO role_auth (role_guid,AuthCode,created_by) - SELECT r.role_guid,ap.AuthCode,'0' created_by FROM auth_page ap,role r - WHERE r.layer = 0;"); + //await backendRepository.ExecuteSql(@"delete a from role_auth a join role b on a.role_guid = b.role_guid where b.layer = 0; + // INSERT INTO role_auth (role_guid,AuthCode,created_by) + // SELECT r.role_guid,ap.AuthCode,'0' created_by FROM auth_page ap,role r + // WHERE r.layer = 0;"); apiResult.Code = "0000"; apiResult.Msg = "儲存成功"; diff --git a/Backend/Controllers/NiagaraDataSynchronizeController.cs b/Backend/Controllers/NiagaraDataSynchronizeController.cs index 2b6f7ac..83c80db 100644 --- a/Backend/Controllers/NiagaraDataSynchronizeController.cs +++ b/Backend/Controllers/NiagaraDataSynchronizeController.cs @@ -28,6 +28,7 @@ namespace Backend.Controllers private Stopwatch stopwatchSection = new Stopwatch(); private Stopwatch syncStopWatch = new Stopwatch(); private static long syncWatchTime = 0; + public static bool isFirstAsync = false; public NiagaraDataSynchronizeController(IBackendRepository backendRepository, INiagaraDataSynchronizeRepository niagaraDataSynchronizeRepository,IBackEndConfigHelper backEndConfig) { @@ -280,97 +281,55 @@ namespace Backend.Controllers /// /// [HttpPost] - public async Task> DevIteComData([FromBody] List ds) + public async Task> DevIteComData() { syncStopWatch = new Stopwatch(); syncStopWatch.Start(); stopwatch = new Stopwatch(); stopwatch.Start(); bool result = false; - var oldDs = JsonConvert.DeserializeObject>(JsonConvert.SerializeObject(ds)); + //var oldDs = JsonConvert.DeserializeObject>(JsonConvert.SerializeObject(ds)); ApiResult apiResult = new ApiResult(); try { - if (ds.Count > 0) - { - //string ss = ds.Where(x => x.tag_name != "").FirstOrDefault().tag_name; - //var building = ss.Split("_")[0]; - var building = ds.GroupBy(x => x.device_building_tag).Select(x => x.Key).ToList(); - #region 歷史資料處理 - ds.Clear(); - var isDome = await backendRepository.GetOneAsync("select system_value from variable where deleted = 0 and system_type = 'project_name';"); - var sqlObix = $@"SELECT system_value as Value, system_key as Name FROM variable WHERE deleted = 0 AND system_type = 'obixConfig'"; - var variableObix = backendRepository.GetAllAsync(sqlObix).Result; - var obixApiConfig = new Backend.Models.ObixApiConfig(); - EDFunction ed = new EDFunction(); - obixApiConfig.ApiBase = variableObix.Where(x => x.Name == "ApiBase").Select(x => x.Value).FirstOrDefault(); - obixApiConfig.UserName = variableObix.Where(x => x.Name == "UserName").Select(x => x.Value).FirstOrDefault(); - obixApiConfig.Password = variableObix.Where(x => x.Name == "Password").Select(x => x.Value).FirstOrDefault(); - //obixApiConfig.UrlSlot = variableObix.Where(x => x.Name == "url_slot").Select(x => x.Value).FirstOrDefault(); - webRequestService svc = new webRequestService(); - stopwatchSection = new Stopwatch(); - stopwatchSection.Start(); - var data = svc.obixHisQuery_v2(obixApiConfig.ApiBase + "obix/config/Program/ObixQuery/query/", obixApiConfig.ApiBase + "obix/histories", "", - obixApiConfig.UserName, obixApiConfig.Password); - ds.AddRange(data); - stopwatchSection.Stop(); - await niagaraDataSynchronizeRepository.KeepTimeLog("Get history device point from niagara", stopwatchSection.ElapsedMilliseconds); + //string ss = ds.Where(x => x.tag_name != "").FirstOrDefault().tag_name; + //var building = ss.Split("_")[0]; + //var building = ds.GroupBy(x => x.device_building_tag).Select(x => x.Key).ToList(); - // save to history - stopwatchSection = new Stopwatch(); - stopwatchSection.Start(); - await niagaraDataSynchronizeRepository.InsertItemFromNiagara_History(ds, building); // insert 暫存table import_niagara_item_history - stopwatchSection.Stop(); - await niagaraDataSynchronizeRepository.KeepTimeLog("InsertItemFromNiagara_History", stopwatchSection.ElapsedMilliseconds); - if (!string.IsNullOrEmpty(isDome) && isDome.Contains("ibms_dome")) - { - stopwatchSection = new Stopwatch(); - stopwatchSection.Start(); - await niagaraDataSynchronizeRepository.RecoverSysTag("import_niagara_item_history"); // recover missing deivce_system_tag - stopwatchSection.Stop(); - await niagaraDataSynchronizeRepository.KeepTimeLog("RecoverSysTag import_niagara_item_history", stopwatchSection.ElapsedMilliseconds); - } - #endregion + stopwatchSection = new Stopwatch(); + stopwatchSection.Start(); + await niagaraDataSynchronizeRepository.DeviceItemComparison(); //insert device_item + stopwatchSection.Stop(); + await niagaraDataSynchronizeRepository.KeepTimeLog("DeviceItemComparison", stopwatchSection.ElapsedMilliseconds); - stopwatchSection = new Stopwatch(); - stopwatchSection.Start(); - await niagaraDataSynchronizeRepository.InsertItemFromNiagara(oldDs, building); // insert 暫存table import_niagara_item - stopwatchSection.Stop(); - await niagaraDataSynchronizeRepository.KeepTimeLog("InsertItemFromNiagara", stopwatchSection.ElapsedMilliseconds); + stopwatchSection = new Stopwatch(); + stopwatchSection.Start(); + await niagaraDataSynchronizeRepository.CheckItemDiffFullNameAndCover(); // update device_item.fullname + stopwatchSection.Stop(); + await niagaraDataSynchronizeRepository.KeepTimeLog("CheckItemDiffFullNameAndCover", stopwatchSection.ElapsedMilliseconds); - stopwatchSection = new Stopwatch(); - stopwatchSection.Start(); - await niagaraDataSynchronizeRepository.DeviceItemComparison(); //insert device_item - stopwatchSection.Stop(); - await niagaraDataSynchronizeRepository.KeepTimeLog("DeviceItemComparison", stopwatchSection.ElapsedMilliseconds); + stopwatchSection = new Stopwatch(); + stopwatchSection.Start(); + await niagaraDataSynchronizeRepository.ItemCheckFullNameEmptyReplaceByDeviceName(); // 檢查device_item內FullName為空的值,以points取代 + stopwatchSection.Stop(); + await niagaraDataSynchronizeRepository.KeepTimeLog("ItemCheckFullNameEmptyReplaceByDeviceName", stopwatchSection.ElapsedMilliseconds); - stopwatchSection = new Stopwatch(); - stopwatchSection.Start(); - await niagaraDataSynchronizeRepository.CheckItemDiffFullNameAndCover(); // update device_item.fullname - stopwatchSection.Stop(); - await niagaraDataSynchronizeRepository.KeepTimeLog("CheckItemDiffFullNameAndCover", stopwatchSection.ElapsedMilliseconds); + stopwatchSection = new Stopwatch(); + stopwatchSection.Start(); + await niagaraDataSynchronizeRepository.CheckItemIsShowHistory(); + stopwatchSection.Stop(); + await niagaraDataSynchronizeRepository.KeepTimeLog("CheckItemIsShowHistory", stopwatchSection.ElapsedMilliseconds); - stopwatchSection = new Stopwatch(); - stopwatchSection.Start(); - await niagaraDataSynchronizeRepository.ItemCheckFullNameEmptyReplaceByDeviceName(); // 檢查device_item內FullName為空的值,以points取代 - stopwatchSection.Stop(); - await niagaraDataSynchronizeRepository.KeepTimeLog("ItemCheckFullNameEmptyReplaceByDeviceName", stopwatchSection.ElapsedMilliseconds); + if (isFirstAsync) + isFirstAsync = false; - stopwatchSection = new Stopwatch(); - stopwatchSection.Start(); - await niagaraDataSynchronizeRepository.CheckItemIsShowHistory(); - stopwatchSection.Stop(); - await niagaraDataSynchronizeRepository.KeepTimeLog("CheckItemIsShowHistory", stopwatchSection.ElapsedMilliseconds); - - result = true; - - apiResult.Code = "0000"; - apiResult.Data = result; - } - + result = true; + apiResult.Code = "0000"; + apiResult.Data = result; } catch (Exception exception) { + isFirstAsync = false; apiResult.Code = "9999"; apiResult.Msg = "【" + controllerName + "/" + actionName + "】" + exception.Message; Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message + Environment.NewLine + exception.StackTrace); @@ -415,5 +374,108 @@ namespace Backend.Controllers stopwatchSection.Stop(); await niagaraDataSynchronizeRepository.KeepTimeLog("DeviceDisasterAsync", stopwatchSection.ElapsedMilliseconds); } + + /// + /// 歷史資料處理 + /// + /// + [HttpPost] + public async Task> GetHistoryData() + { + ApiResult apiResult = new ApiResult(); + apiResult.Data = false; + apiResult.Code = "9999"; + try + { + #region 歷史資料處理 + List ds = new List(); + var building = await backendRepository.GetAllAsync("select building_tag from building where deleted = 0"); + var isDome = await backendRepository.GetOneAsync("select system_value from variable where deleted = 0 and system_type = 'project_name';"); + var sqlObix = $@"SELECT system_value as Value, system_key as Name FROM variable WHERE deleted = 0 AND system_type = 'obixConfig'"; + var variableObix = backendRepository.GetAllAsync(sqlObix).Result; + var obixApiConfig = new Backend.Models.ObixApiConfig(); + EDFunction ed = new EDFunction(); + obixApiConfig.ApiBase = variableObix.Where(x => x.Name == "ApiBase").Select(x => x.Value).FirstOrDefault(); + obixApiConfig.UserName = variableObix.Where(x => x.Name == "UserName").Select(x => x.Value).FirstOrDefault(); + obixApiConfig.Password = variableObix.Where(x => x.Name == "Password").Select(x => x.Value).FirstOrDefault(); + //obixApiConfig.UrlSlot = variableObix.Where(x => x.Name == "url_slot").Select(x => x.Value).FirstOrDefault(); + webRequestService svc = new webRequestService(); + stopwatchSection = new Stopwatch(); + stopwatchSection.Start(); + var data = svc.obixHisQuery_v2(obixApiConfig.ApiBase + "obix/config/Program/ObixQuery/query/", obixApiConfig.ApiBase + "obix/histories", "", + obixApiConfig.UserName, obixApiConfig.Password); + ds.AddRange(data); + stopwatchSection.Stop(); + await niagaraDataSynchronizeRepository.KeepTimeLog("Get history device point from niagara", stopwatchSection.ElapsedMilliseconds); + + // save to history + stopwatchSection = new Stopwatch(); + stopwatchSection.Start(); + await niagaraDataSynchronizeRepository.InsertItemFromNiagara_History(ds, building); // insert 暫存table import_niagara_item_history + stopwatchSection.Stop(); + await niagaraDataSynchronizeRepository.KeepTimeLog("InsertItemFromNiagara_History", stopwatchSection.ElapsedMilliseconds); + if (!string.IsNullOrEmpty(isDome) && isDome.Contains("ibms_dome")) + { + stopwatchSection = new Stopwatch(); + stopwatchSection.Start(); + await niagaraDataSynchronizeRepository.RecoverSysTag("import_niagara_item_history"); // recover missing deivce_system_tag + stopwatchSection.Stop(); + await niagaraDataSynchronizeRepository.KeepTimeLog("RecoverSysTag import_niagara_item_history", stopwatchSection.ElapsedMilliseconds); + } + #endregion + + apiResult.Code = "0000"; + apiResult.Data = true; + isFirstAsync = true; + } + catch (Exception exception) + { + apiResult.Code = "9999"; + apiResult.Msg = "【" + controllerName + "/" + actionName + "】" + exception.Message; + Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message + Environment.NewLine + exception.StackTrace); + } + + return apiResult; + } + + /// + /// 設備點位處理 + /// + /// + [HttpPost] + public async Task> DevItemInsert([FromBody] List ds) + { + var oldDs = JsonConvert.DeserializeObject>(JsonConvert.SerializeObject(ds)); + ApiResult apiResult = new ApiResult(); + apiResult.Data = false; + apiResult.Code = "9999"; + try + { + if (ds.Count > 0) + { + var building = await backendRepository.GetAllAsync("select building_tag from building where deleted = 0"); + + stopwatchSection = new Stopwatch(); + stopwatchSection.Start(); + await niagaraDataSynchronizeRepository.InsertItemFromNiagara(oldDs, building, isFirstAsync); // insert 暫存table import_niagara_item + stopwatchSection.Stop(); + await niagaraDataSynchronizeRepository.KeepTimeLog("InsertItemFromNiagara", stopwatchSection.ElapsedMilliseconds); + + if (isFirstAsync) + isFirstAsync = false; + } + + apiResult.Code = "0000"; + apiResult.Data = true; + } + catch (Exception exception) + { + apiResult.Code = "9999"; + apiResult.Msg = "【" + controllerName + "/" + actionName + "】" + exception.Message; + Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message + Environment.NewLine + exception.StackTrace); + } + + return apiResult; + } } -} +} \ No newline at end of file diff --git a/Backend/Startup.cs b/Backend/Startup.cs index 6726bbc..9509b6b 100644 --- a/Backend/Startup.cs +++ b/Backend/Startup.cs @@ -22,6 +22,7 @@ using Microsoft.IdentityModel.Tokens; using System.Text; using System.IdentityModel.Tokens.Jwt; using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Http.Features; namespace Backend { @@ -155,6 +156,11 @@ namespace Backend { options.IdleTimeout = TimeSpan.FromMinutes(loginExpireMinute); }); + + services.Configure(options => + { + options.MultipartBodyLengthLimit = 1_073_741_824; //accept request content_length at 1gb + }); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. diff --git a/Backend/Views/NiagaraDataSynchronize/Index.cshtml b/Backend/Views/NiagaraDataSynchronize/Index.cshtml index 25254ad..42a4afe 100644 --- a/Backend/Views/NiagaraDataSynchronize/Index.cshtml +++ b/Backend/Views/NiagaraDataSynchronize/Index.cshtml @@ -185,10 +185,17 @@ { //比對資料,有差異的話,再同步到device等資料表 var url_synchronize_data = "/NiagaraDataSynchronize/RawDataDevItemList/"; - var url_synchronize_data_device_item = "/NiagaraDataSynchronize/DevIteComData/"; + var url_synchronize_data_device_item = "/NiagaraDataSynchronize/DevItemInsert/"; + let object = {}; + let dataLength = 0; + let curData = {}; + let asyncSendData = []; + let contentLength = 5000; object.building = building; - $.ajax({ + + //device async + $.ajax({ method: "POST", url: url_synchronize_data, cache: false, @@ -203,33 +210,101 @@ document.getElementById('loadDataText').innerText = "比對資料出錯了!"; return; } - - $.ajax({ + + //history async + $.ajax({ method: "POST", - url: url_synchronize_data_device_item, - data: JSON.stringify(rel.data), + url: '/NiagaraDataSynchronize/GetHistoryData/', cache: false, async: false, contentType: "application/json; charset=UTF-8", - dataType: 'json', - success: function (rel) { - if (rel.code != "0000") { - toast_error(rel.msg); + success: function (res) { + if (res.code != "0000") { hideSpinner(); + toast_error(res.msg); document.getElementById('loadDataText').innerText = "比對資料出錯了!"; return; } - hideSpinner(); - console.log(rel); - var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds(); - var dateTime = date + ' ' + time; - document.getElementById('loadDataText').innerText = "比對完成 \n" + dateTime; + curData = rel.data; + let relDataLength = curData.length; + $.each(rel.data, function (index, val) { + if (relDataLength > 0) { + //push data, counting + asyncSendData.push(val); + dataLength++; + relDataLength--; + + if (dataLength >= contentLength || relDataLength <= 0) { + //device_item async-insert + $.ajax({ + method: "POST", + url: url_synchronize_data_device_item, + data: JSON.stringify(asyncSendData), + cache: false, + async: false, + contentType: "application/json; charset=UTF-8", + dataType: 'json', + success: function (rel) { + if (rel.code != "0000") { + toast_error(rel.msg); + hideSpinner(); + document.getElementById('loadDataText').innerText = "比對資料出錯了!"; + return; + } + + //reset variable + dataLength = 0; + asyncSendData = []; + + //device_item async-compare + if (relDataLength <= 0) { + $.ajax({ + method: "POST", + url: '/NiagaraDataSynchronize/DevIteComData/', + cache: false, + async: false, + contentType: "application/json; charset=UTF-8", + success: function (rel) { + if (rel.code != "0000") { + toast_error(rel.msg); + hideSpinner(); + document.getElementById('loadDataText').innerText = "比對資料出錯了!"; + return; + } + + hideSpinner(); + console.log(rel); + var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds(); + var dateTime = date + ' ' + time; + document.getElementById('loadDataText').innerText = "比對完成 \n" + dateTime; + }, + error: function () { + hideSpinner(); + document.getElementById('loadDataText').innerText = "比對資料出錯了!"; + return; + } + }) + } + }, + error: function () { + hideSpinner(); + document.getElementById('loadDataText').innerText = "比對資料出錯了!"; + return; + } + }) + } + } + }); + }, error: function () { hideSpinner(); + document.getElementById('loadDataText').innerText = "比對資料出錯了!"; + return; } }) + var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds(); var dateTime = date + ' ' + time; document.getElementById('loadDataText').innerText = "比對完成 \n" + dateTime; diff --git a/FrontendWebApi/ApiControllers/HistoryController.cs b/FrontendWebApi/ApiControllers/HistoryController.cs index 347e94d..e332d13 100644 --- a/FrontendWebApi/ApiControllers/HistoryController.cs +++ b/FrontendWebApi/ApiControllers/HistoryController.cs @@ -570,7 +570,7 @@ namespace FrontendWebApi.ApiControllers join variable v1 on v1.system_value = b.device_system_tag and v1.deleted = 0 and v1.system_type = 'device_system_category_layer2' join variable v2 on v2.system_value = b.device_name_tag and v2.deleted = 0 and v2.system_type = 'device_system_category_layer3' where a.deleted = 0 and b.deleted = 0 and v2.deleted = 0 and v1.deleted = 0 - and a.unit is not null and b.device_number in @Device_number and a.is_link = 1 + and a.unit is not null and b.device_number in @Device_number and a.is_link = 1 and a.is_show_history = 1 order by c.priority,b.priority;" , new { Device_number = postDevice.select_data.Select(a => a.device_number).ToList() } ); diff --git a/Repository/BackendRepository/Implement/NiagaraDataSynchronizeRepository.cs b/Repository/BackendRepository/Implement/NiagaraDataSynchronizeRepository.cs index 0c2f2c8..ef24e0b 100644 --- a/Repository/BackendRepository/Implement/NiagaraDataSynchronizeRepository.cs +++ b/Repository/BackendRepository/Implement/NiagaraDataSynchronizeRepository.cs @@ -235,7 +235,7 @@ namespace Repository.BackendRepository.Implement /// /// /// - public async Task InsertItemFromNiagara(List ds, List building) + public async Task InsertItemFromNiagara(List ds, List building, bool isFirstAsync) { stopwatch = new Stopwatch(); stopwatch.Start(); @@ -245,34 +245,37 @@ namespace Repository.BackendRepository.Implement try { #region 刪除 import_niagara_item資料表中選取的棟別 - stopwatchSection = new Stopwatch(); - stopwatchSection.Start(); - foreach(var b in building) + if (isFirstAsync) { - string sql = @"CREATE TABLE IF NOT EXISTS `import_niagara_item` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `device_area_tag` varchar(50) DEFAULT NULL, - `device_building_tag` varchar(50) DEFAULT NULL, - `device_system_tag` varchar(50) DEFAULT NULL, - `device_name_tag` varchar(50) DEFAULT NULL, - `device_point_name` varchar(50) DEFAULT NULL, - `check_status` varchar(50) DEFAULT NULL, - `parent_path` varchar(50) DEFAULT NULL, - `full_name` varchar(50) DEFAULT NULL, - PRIMARY KEY (`id`) - ) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;"; - using (TransactionScope scope = new TransactionScope(TransactionScopeAsyncFlowOption.Enabled)) + stopwatchSection = new Stopwatch(); + stopwatchSection.Start(); + foreach(var b in building) { - await conn.ExecuteAsync(sql); - } - sql = "delete from import_niagara_item where device_building_tag = '" + b + "' limit 10000;"; - using (TransactionScope scope = new TransactionScope(TransactionScopeAsyncFlowOption.Enabled)) - { - await conn.ExecuteAsync(sql); + string sql = @"CREATE TABLE IF NOT EXISTS `import_niagara_item` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `device_area_tag` varchar(50) DEFAULT NULL, + `device_building_tag` varchar(50) DEFAULT NULL, + `device_system_tag` varchar(50) DEFAULT NULL, + `device_name_tag` varchar(50) DEFAULT NULL, + `device_point_name` varchar(50) DEFAULT NULL, + `check_status` varchar(50) DEFAULT NULL, + `parent_path` varchar(50) DEFAULT NULL, + `full_name` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id`) + ) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;"; + using (TransactionScope scope = new TransactionScope(TransactionScopeAsyncFlowOption.Enabled)) + { + await conn.ExecuteAsync(sql); + } + sql = "delete from import_niagara_item where device_building_tag = '" + b + "' limit 10000;"; + using (TransactionScope scope = new TransactionScope(TransactionScopeAsyncFlowOption.Enabled)) + { + await conn.ExecuteAsync(sql); + } } + stopwatchSection.Stop(); + await KeepTimeLog("Create or delete related building import_niagara_tag", stopwatchSection.ElapsedMilliseconds); } - stopwatchSection.Stop(); - await KeepTimeLog("Create or delete related building import_niagara_tag", stopwatchSection.ElapsedMilliseconds); #endregion stopwatchSection = new Stopwatch(); diff --git a/Repository/BackendRepository/Interface/INiagaraDataSynchronizeRepository.cs b/Repository/BackendRepository/Interface/INiagaraDataSynchronizeRepository.cs index 4419a10..05d9abc 100644 --- a/Repository/BackendRepository/Interface/INiagaraDataSynchronizeRepository.cs +++ b/Repository/BackendRepository/Interface/INiagaraDataSynchronizeRepository.cs @@ -29,7 +29,7 @@ namespace Repository.BackendRepository.Interface /// /// /// - Task InsertItemFromNiagara(List ds, List building); + Task InsertItemFromNiagara(List ds, List building, bool isFirstAsync); /// /// 比對 device ///