2022-11-22 01:30:30 +08:00
let baja _subscribe _device _callback _func ; //設定BQL訂閱之後要回傳的Function
2022-12-01 19:32:32 +08:00
let baja _subscribe _end _device _callback _func ; //設定BQL訂閱結束之後要回傳的Function
2022-11-29 18:58:38 +08:00
let baja _my _user _account _func ; //取得帳號資料要回傳的Function
2022-11-22 01:30:30 +08:00
var ordPath ; //當前點選選單的tag, 用來抓出設備路徑, 例如:旅館棟->H, 消防偵煙器->F3
2022-11-25 18:46:40 +08:00
window . tolSubList = [ ] ;
2022-11-29 18:58:38 +08:00
var user _name = "" ;
2022-11-22 01:30:30 +08:00
function subscriptionDevices ( ) {
// 用BQL的方式去訂閱
this . setSubscribeDevicesByBql = function ( tempOrdPath ) {
ordPath = tempOrdPath ;
BajaSubscribeDevicesByBql ( ) ;
} ;
// BQL去訂閱回傳的Function
this . setSubscribeDevicesCallBack = function ( callBackFunc ) {
if ( callBackFunc != undefined && callBackFunc != null ) {
baja _subscribe _device _callback _func = callBackFunc ;
}
}
2022-12-01 19:32:32 +08:00
// BQL訂閱結束回傳的Function
this . setSubscribeDeviceEndCallBack = function ( callBackFunc ) {
if ( callBackFunc != undefined && callBackFunc != null ) {
baja _subscribe _end _device _callback _func = callBackFunc ;
}
}
2022-11-29 18:58:38 +08:00
}
function MyBaja ( ) {
// 取得使用者帳號
2022-12-02 12:18:58 +08:00
this . setMyUserAccount = function ( callBackFunc = null ) {
require ( [ 'baja!' ] , function ( baja ) {
console . log ( "baja" , baja )
user _name = baja . getUserName ( ) ;
callBackFunc ? callBackFunc ( user _name ) : "" ;
} ) ;
2022-11-29 18:58:38 +08:00
} ;
2022-11-22 01:30:30 +08:00
}
/ * *
* 使用者透過BQL指定路徑去訂閱設備點位
* /
function BajaSubscribeDevicesByBql ( ) {
require ( [ 'baja!' ] , function ( baja ) {
console . log ( "進入Function 準備執行BQL訂閱" ) ;
var init _start = new Date ( Date . now ( ) ) ;
var sub = new baja . Subscriber ( ) ;
sub . attach ( 'changed' , function ( prop ) {
if ( prop . getName ( ) === 'out' ) {
var out _value = this . getOutDisplay ( ) ;
var target _device _number = this . $parent . getDisplayName ( ) . split ( '_' ) . slice ( 0 , 5 ) . join ( '_' ) ;
var point _name = this . getDisplayName ( ) ;
//依據Facets判斷回傳的內容值為何
var facets _split = this . getFacets1 ( ) . $cEncStr . split ( '|' ) ;
var facets _arr = [ ] ;
facets _split . forEach ( function ( item , index ) {
facets _arr . push ( item . split ( '=s:' ) ) ;
} ) ;
var facets = facets _arr . reduce ( ( obj , cur ) => ( { ... obj , [ cur [ 0 ] ] : cur [ 1 ] } ) , { } )
var point _out _split = this . getOutDisplay ( ) . split ( ' ' ) ;
let key = Object . keys ( facets ) . find ( k => facets [ k ] === point _out _split [ 0 ] ) ;
if ( key == undefined ) {
key = point _out _split [ 0 ] ;
}
var modify _target _device = {
"device_number" : target _device _number ? target _device _number : null ,
2022-12-01 19:32:32 +08:00
"device_number_full" : this . $parent . getSlotPath ( ) . $names . join ( "_" ) ,
2022-11-22 01:30:30 +08:00
"point_name" : point _name ? point _name : null ,
"value" : key
}
if ( baja _subscribe _device _callback _func != undefined && baja _subscribe _device _callback _func != null ) {
baja _subscribe _device _callback _func ( modify _target _device , true ) ; //第2參數用在平面圖, 刷新畫面
}
}
2022-11-24 16:27:00 +08:00
} , function ( err ) {
console . log ( err )
2022-11-22 01:30:30 +08:00
} ) ;
//使用bql語法
// var building_tag = "H";
// var system_tag = "M10";
// baja.Ord.make(`ip:greencloud.fic.com.tw|foxs:|station:|slot:/Arena/${building_tag}/${system_tag}|bql:select name, displayname, slotPath, out.value, out from control:ControlPoint`)
console . log ( ` local:|foxs:|station:|slot:/TPE/ ${ ordPath . building _tag } / ${ ordPath . system _tag } / ${ ordPath . name _tag } |bql:select name, displayname, slotPath, out.value, out, facets from control:ControlPoint ` ) ;
baja . Ord . make ( ` local:|foxs:|station:|slot:/TPE/ ${ ordPath . building _tag } / ${ ordPath . system _tag } / ${ ordPath . name _tag } |bql:select name, displayname, slotPath, out.value, out, facets from control:ControlPoint ` )
. get (
function ( table ) {
var tableStart , tableFinish ;
var subStart , subFinish ;
var component _index = 0 ;
var total _component _index = 0 ;
2022-12-01 19:32:32 +08:00
var totalTargetDevice = [ ] ;
2022-11-22 01:30:30 +08:00
var readBqlFinish = new Date ( Date . now ( ) ) ;
// $("#readPath-finish-timestamp").html(readBqlFinish.toISOString());
// $("#readPath-finish-time").html((readBqlFinish.getTime() - init_start.getTime()) / 1000 + "sec");
console . log ( "讀取路徑完成-花費時間" , ( readBqlFinish . getTime ( ) - init _start . getTime ( ) ) / 1000 + "sec" ) ;
table . cursor ( {
before : function ( ) {
2022-12-01 19:32:32 +08:00
totalTargetDevice = [ ] ;
2022-11-22 01:30:30 +08:00
tableStart = new Date ( Date . now ( ) ) ;
$ ( "#table-start-timestamp" ) . html ( tableStart . toISOString ( ) ) ;
render _start = new Date ( Date . now ( ) ) ;
} ,
each : function ( item , index ) {
if ( index < 1 ) {
subStart = new Date ( Date . now ( ) ) ;
$ ( "#sub-start" ) . html ( subStart . toISOString ( ) ) ;
}
$ ( "#sub-number" ) . html ( index + 1 ) ;
total _component _index = index ;
2022-12-01 19:32:32 +08:00
2022-11-22 01:30:30 +08:00
var target _device _number _split = this . getDisplay ( "slotPath" ) . split ( '/' ) ;
var target _device _number = target _device _number _split [ target _device _number _split . length - 2 ] ;
//console.log(target_device_number);
var point _name = this . getDisplay ( "name" ) ;
var facets = this . getDisplay ( "facets" ) ;
//依據Facets判斷回傳的內容值為何
var facets _split = facets . split ( ',' ) ;
var facets _arr = [ ] ;
facets _split . forEach ( function ( item , index ) {
facets _arr . push ( item . split ( '=' ) ) ;
} ) ;
facets = facets _arr . reduce ( ( obj , cur ) => ( { ... obj , [ cur [ 0 ] ] : cur [ 1 ] } ) , { } )
2022-12-01 19:32:32 +08:00
2022-11-22 01:30:30 +08:00
var point _out _split = this . getDisplay ( "out" ) . split ( ' ' ) ;
let key = Object . keys ( facets ) . find ( k => facets [ k ] === point _out _split [ 0 ] ) ;
if ( key == undefined ) {
key = point _out _split [ 0 ] ;
}
var modify _target _device = {
"device_number" : target _device _number ? target _device _number : null ,
2022-12-01 19:32:32 +08:00
"device_number_full" : this . getDisplay ( "slotPath" ) . split ( "slot:" ) [ 1 ] . split ( '/' ) . slice ( 1 , - 1 ) . join ( "_" ) ,
2022-11-22 01:30:30 +08:00
"point_name" : point _name ? point _name : null ,
"value" : key
}
2022-12-01 19:32:32 +08:00
totalTargetDevice . push ( modify _target _device ) ;
2022-11-22 01:30:30 +08:00
//取得component當下就更新設備點位
if ( baja _subscribe _device _callback _func != undefined && baja _subscribe _device _callback _func != null ) {
baja _subscribe _device _callback _func ( modify _target _device ) ;
}
baja . Ord . make ( "local:|foxs:|station:|" + this . getDisplay ( "slotPath" ) )
. get ( )
. then ( function ( component ) {
component _index ++ ;
var target _device _number = component . $parent . getDisplayName ( ) . split ( '_' ) . slice ( 0 , 5 ) . join ( '_' ) ;
var point _name = component . getDisplayName ( ) ;
// //依據Facets判斷回傳的內容值為何
// var facets_split = component.getFacets1().$cEncStr.split('|');
// var facets_arr = [];
// facets_split.forEach(function (item, index) {
// facets_arr.push(item.split('=s:'));
// });
// var facets = facets_arr.reduce((obj, cur) => ({ ...obj, [cur[0]]: cur[1] }), {})
// var point_out_split = component.getOutDisplay().split(' ');
// let key = Object.keys(facets).find(k => facets[k] === point_out_split[0]);
// if (key == undefined) {
// key = point_out_split[0];
// }
// var modify_target_device = {
// "device_number": target_device_number ? target_device_number : null,
// "point_name": point_name ? point_name : null,
// "value": key
// }
// //取得component當下就更新設備點位
// if (baja_subscribe_device_callback_func != undefined && baja_subscribe_device_callback_func != null) {
// if (component_index == total_component_index) {
// baja_subscribe_device_callback_func(modify_target_device, true);
// }
// else {
// baja_subscribe_device_callback_func(modify_target_device);
// }
// }
sub . subscribe ( {
comps : component ,
} ) ;
2022-11-25 18:46:40 +08:00
tolSubList . push ( sub ) ;
2022-11-22 01:30:30 +08:00
subFinish = new Date ( Date . now ( ) ) ;
$ ( "#sub-end" ) . html ( subFinish . toISOString ( ) ) ;
$ ( "#sub-time" ) . html ( ( subFinish . getTime ( ) - subStart . getTime ( ) ) / 1000 + "sec" ) ;
// console.log("訂閱完成時間", (subFinish.getTime() - subStart.getTime()) / 1000 + "sec");
} ) ;
} ,
after : function ( ) {
tableFinish = new Date ( Date . now ( ) ) ;
// $("#table-finish-timestamp").html(tableFinish.toISOString());
// $("#table-time").html((tableFinish.getTime() - tableStart.getTime()) / 1000 + "sec");
2022-12-01 19:32:32 +08:00
//取得component當下就更新設備點位
if ( baja _subscribe _end _device _callback _func != undefined && baja _subscribe _end _device _callback _func != null ) {
baja _subscribe _end _device _callback _func ( totalTargetDevice ) ;
}
2022-11-22 01:30:30 +08:00
console . log ( "表格完成時間" , ( tableFinish . getTime ( ) - tableStart . getTime ( ) ) / 1000 + "sec" ) ;
} ,
limit : - 1 ,
offset : 0
} ) ;
} ) ;
} ) ;
}
2022-11-15 14:24:48 +08:00