chenyc
2023-05-18 a5673d5a3fb9291054a98e56ab359431433ee5fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
import Stomp from 'stompjs'
import os from 'os'
import { ipcRenderer } from 'electron'
let stompClient: Stomp.Client | null=null
 
import { confingInfoStore } from '@/stores/StoresConfing'
import { patientInfoStore } from '@/stores/patient'
import {sockteStore} from '@/stores/sockteInfo'
 
 
let sockteNum=0
 
 
interface device{
    deviceName:string
    deviceType:string
}
let config={}
let devices:Array<device>=[]
let clientCode:string=''
/**
 * 保存结果到vuex
 * @param resultInfo 结果写入
 */
const writeResult=(resultInfo:any)=>{
    if(devices.length>0){
        const deviceInfo=devices.find(de=>{
            return de.deviceName===resultInfo.deviceNumber
        })
        console.log(deviceInfo,'更具设备number查找到的设备')
        console.log(resultInfo)
        if(deviceInfo!==undefined){
            switch(deviceInfo.deviceType){
                case '读卡器':
                    console.log('读卡器收到消息')
                    const res=JSON.parse(resultInfo.result)
                    if(res.clientCode!==null){
                        sockteStore().setdkqSockte(
                            {
                                deviceName:resultInfo.deviceNumber,
                                type:"读卡器",
                                result:resultInfo.result,
                                resultTime:resultInfo.resultTime,
                                state:2
                            }
                        )
                    }
                    break
                case "体重秤":
                    console.log(resultInfo,'体重秤')
                    sockteStore().setweightSockte(
                        {
                            deviceName:resultInfo.deviceNumber,
                            type:"体重秤",
                            result:Number(resultInfo.result).toString(),
                            resultTime:resultInfo.resultTime,
                            state:2
                        }
                    )
                    break
                case "血压计":
                    console.log(resultInfo,'血压计')
                    sockteStore().setxyjSockte(
                        {
                            deviceName:resultInfo.deviceNumber,
                            type:"血压计",
                            result:resultInfo.result,
                            resultTime:resultInfo.resultTime,
                            state:2
                        }
                    )
                    break
                default:
                    console.log('有配置类型没有匹配')
            }
        }
    }
 
}
const writePatient=(resultInfo:any)=>{
    // 给一个时间变化
    const da=new Date().toTimeString()  
    console.log(da)
    const info={
        id:resultInfo.patientInfo===null?0:resultInfo.patientInfo.id,
        code:resultInfo.patientInfo===null?'':resultInfo.patientInfo.code,
        name:resultInfo.patientInfo===null?'':resultInfo.patientInfo.patientName,
        patientAvatarIcon:resultInfo.patientInfo===null?'':resultInfo.patientInfo.patientAvatarIcon,
        deviceCode:resultInfo.deviceCode===null?"":resultInfo.deviceCode,
        hemoCode:resultInfo.hemoCode===null?"":resultInfo.hemoCode,
        pureWeight:resultInfo.pureWeight===null?"":resultInfo.pureWeight,
        datetime:da,
        clothesWeight:resultInfo.clothesWeight===null?0:resultInfo.clothesWeight,
        isScheduled:resultInfo.isScheduled,
        isAfterMed:resultInfo.isAfterMed,
        deviceNo:resultInfo.deviceNo,
        preWeight:resultInfo.preWeight
    }
    // 写入vuex里
    patientInfoStore().setpatientInfo(info)
}
 
// 订阅结果事件返回函数
const  callback = function(message:any) {
    if (message.body!==undefined) {
        const data=JSON.parse(message.body)
        writeResult(data)
    }
    else {
        alert("接收数据异常");
    }
};
const PatientCallback=function(message:any){
    if (message.body) {
        const data=JSON.parse(message.body)
        console.log(data,'患者信息读取')
        writePatient(data)
 
    }
    
}
var isErrConnectBackCalled = false;
const connectCallback=function(){
    isErrConnectBackCalled = true
    const pcName= sockteStore().pcName
    console.log("链接成功",stompClient,pcName)
    sockteStore().setsockteIsLink(true)
    // 订阅患者信息服务
    if(stompClient!==null){
        // 订阅患者信息事件
        stompClient.subscribe(`/queue/patient/info/${pcName}`,PatientCallback)
        // 订阅配置文件事件已经弃用  现在不用更新本地配置文件了 
        // stompClient.subscribe(`/queue/workstation/config/set/${clientCode}/${pcName}`,configCallback)
        devices.forEach(el=>{
            if(stompClient!==null)
            stompClient.subscribe(`/queue/${clientCode}/${el.deviceName}/result`,callback)
        })
        // 发送配置文件到服务端
        stompClient.send(`/app/workstation/config/set/${clientCode}/${pcName}`,{},
        JSON.stringify(config))
        
    }
    // 更新sockte链接状态
    sockteStore().setsockteIsLink(true)
    console.log(sockteStore().isLink)
}
 
const error_callback=function(error:any){
    console.log('链接错误',error);
    sockteStore().setsockteIsLink(false)
    setTimeout(()=>{
        console.log('60秒之后重连',sockteNum++) 
        const socket = new WebSocket('ws://hemobs.icoldchain.cn/broadcast')
        stompClient?.disconnect(()=>{
            console.log("disconnected!");
            stompClient = Stomp.over(socket)
            stompClient.connect({}, connectCallback,error_callback)
        },{})
    },60000)
}
// 创建客户端链接
const creatorClient=(configObj:any)=>{
    config=configObj
    devices=configObj.deviceList
    clientCode=configObj.clientCode
    console.log(devices,'设备列表','chong')
    const socket = new WebSocket('ws://hemobs.icoldchain.cn/broadcast')
    stompClient = Stomp.over(socket)
    stompClient.connect({}, connectCallback,error_callback)
}
/**
 * 发送患者卡号返回患者信息
 * @param codeStr 
 */
const sendPationCode=(codeStr:string)=>{
    const pcName= sockteStore().pcName
    const mode={
        clientCode:clientCode,
        queryCode:codeStr
    }
    if(stompClient!==null){
        stompClient.send(`/app/patient/info/get/${pcName}`,{},JSON.stringify(mode))
    }
}
/**
 * 
 * @param mode 发送结果到sockt服务
 */
const sendPationSet=(mode:any)=>{
    if(stompClient!==null){
        stompClient.send(`/app/patient/info/set`,{},JSON.stringify(mode))
    }
}
export {creatorClient,sendPationCode,sendPationSet,writeResult,writePatient}