mod_ivr_loadbalance.cpp
40.6 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
/*
* Copyright 2002-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* CC/LICENSE
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <switch.h>
#include <sys/wait.h>
#include <time.h>
#include <sys/time.h>
#include <pthread.h>
#include <switch_core.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <libgen.h>
#include <cstring>
#include <fstream>
#include <map>
#include <vector>
#include <sstream>
#include <algorithm>
#define MAX_EMAIL_LEN 1024
#define MAX_PHONE_LEN 1024
#define MAX_LINE_LEN 1024
#define CONF_SECTION_IVRSERVER "IVRServers"
#define CONF_SECTION_INTERVAL "CheckInterval"
#define CONF_SECTION_TIMEOUT "TimeOut"
#define CONF_SECTION_RULE "Rule"
#define CONF_SECTION_ALARM "Alarm"
#define CONF_KEY_IVRBASE "IVR"
#define CONF_KEY_IVRDEFAULT "IVR_DEFAULT"
#define CONF_KEY_INTERVAL "INTERVAL"
#define CONF_KEY_CON_TIMEOUT "CON_TIMEOUT"
#define CONF_KEY_CPU_THRESHOLD "CPU_THR"
#define CONF_KEY_EMAIL "EMAIL"
#define CONF_KEY_PHONE "PHONE"
const char* g_config_path = "../conf/ivr_loadbalance/ivr_loadbalance.conf";
/******************************/
/*** IVR Servers info table ***/
/******************************/
typedef struct {
int cpu; //CPU info
int chan_num; //Channel num in used
bool is_available; //Server is available? It is false while checking
} server_info_t;
//IVR Servers info map
std::map <std::string, server_info_t> g_ip_svrinfo;
/***********************************/
/*** Something about config file ***/
/***********************************/
typedef struct ip_info_t {
std::string ip_total; //IP address (IP+port)
std::string ip; //IP address (x.x.x.x)
uint32_t port; //Port num
} ip_info_t;
typedef struct conf_info_t {
std::vector <ip_info_t> vec_ivr_ip; //IP address of IVR Servers
ip_info_t default_ivr_ip; //IP address of default IVR Server
int32_t ivr_num; //Number of IVR Servers
int32_t interval_time; //Interval time of Checking IVR Server(ms)
int32_t connect_timeout; //Timeout of connecting to IVR Server
int32_t cpu_threshold; //Decision threshold
char str_email[MAX_EMAIL_LEN + 1]; //Alarm email list
char str_phone[MAX_PHONE_LEN + 1]; //Alarm phone list (sms)
} conf_info_t;
//Config file info
conf_info_t g_conf_info;
//Config file map for loading
typedef std::map <std::string, std::string> section_map;
typedef std::map <std::string, section_map> file_map;
/**
* @brief 读取配置文件
*
* @param [in] file_path : 配置文件路径
* @return 读取成功/失败
**/
bool load_file(const char* file_path);
/**
* @brief 从配置文件图中读取数字
*
* @param [in] filemap : 配置文件图
* @param [in] section_name : 读取的section名称
* @param [in] key_name : 读取的key名称
* @param [in] default_value : 默认值
* @return 读取到的值
**/
int32_t get_int(file_map filemap, const char* section_name, const char* key_name,
int32_t default_value);
/**
* @brief 从配置文件图中读取字符串
*
* @param [in] filemap : 配置文件图
* @param [in] section_name : 读取的section名称
* @param [in] key_name : 读取的key名称
* @param [in] default_value : 默认值
* @param [out] dest_buff : 读取的字符串存放缓冲区
* @param [in] buff_size : 缓冲区大小
* @return 获取的字符串长度。-1为错误
**/
int32_t get_string(file_map filemap, const char* section_name, const char* key_name,
const char* default_value, char* dest_buff, uint32_t buff_size);
/**
* @brief 将配置文件图中内容导入到结构中(g_conf_info)
*
* @param [in] filemap : 配置文件图
* @return 导入成功/失败
**/
bool load_to_struct(file_map filemap);
/**
* @brief 将(IP:port)地址分解成IP和port。仅按照分号进行分割,无分号视为错误
*
* @param [in] ip_addr : IP地址
* @param [out] ip : 分割后的IP地址
* @param [out] port : 分割后的port
* @return 分割成功/失败
**/
bool splitIP(const char* ip_addr, char* ip, uint32_t& port);
/**
* @brief 获取配置文件全路径
*
* @param [out] conf_path : 输出的全路径缓冲区
* @param [in] conf_path_size : 缓冲区大小
* @param [in] conf_file : 后续路径
* @return 获取成功/失败
**/
bool get_conf_path(char* conf_path, uint32_t conf_path_size, const char* conf_file);
/**********************************/
/*** Something about IVR Server ***/
/**********************************/
//Return value of checking IVR Server
enum IVR_CHECK_RET {
IVR_SUCCESS = 0, //成功
IVR_CREATE_SOCK_ERR = -1, //创建socket失败
IVR_CONNECT_ERR = -2, //链接失败
IVR_CONNECT_TIMEOUT = -3, //链接
IVR_RECV_CONN_ERR1 = -4, //获取"connected\n\n"消息错误,收到的字符串错误
IVR_RECV_CONN_ERR2 = -5, //获取"connected\n\n"消息错误,recv失败
IVR_SEND_ERR = -6, //发送消息失败
IVR_RECV_INFO_ERR1 = -7, //获取服务器信息错误,收到的字符串错误
IVR_RECV_INFO_ERR2 = -8, //获取服务器信息错误,recv失败
};
//string of IVR_CHECK_RET. For alarm mail.
const char* g_ivr_check_ret_str = " 0:成功\n \
-1:创建socket失败\n \
-2:链接失败\n \
-3:链接超时\n \
-4:获取\"connect\"消息错误,收到的字符串错误\n \
-5:获取\"connect\"消息错误,recv失败\n \
-6:发送消息失败\n \
-7:获取服务器信息错误,收到的字符串错误\n \
-8:获取服务器信息错误,recv失败\n";
//No IVR Alarm Tag
bool g_no_ivr_alarm = false;
/**
* @brief 运行主函数,创建检测线程
*
* @return
**/
void check_ivr_main();
/**
* @brief 检测IVR Server线程。每隔interval_time进行检测,并更新检测结果,并调用决策函数
*
* @param [in] : 此线程检测的IVR Server的IP地址
* @return
**/
void* check_ivr_pthread(void* ip_info_t);
/**
* @brief 检测IVR Server
*
* @param [in] ip_addr : 检测的IP地址,无port部分
* @param [in] port : 检测的port部分
* @param [out] cpu : IVR Server的CPU信息
* @param [out] chan_num : IVR Server的已用通道数
* @return 0-成功,其它-失败
**/
int32_t check_ivr_server(const char* ip_addr, uint32_t port, int32_t* cpu, int32_t* chan_num);
/**
* @brief 决策方法。从现有IVR Server中选择一个"负载最小"的Server,并更新到IVR_Host中。
* 服务器均不可用。择默认IVR地址。
*
* @return
**/
void decision_ivr_server();
/*******************************/
/*** Something about threads ***/
/*******************************/
//If the thread continue running
bool g_mod_running = true;
//Thread ID
pthread_t* g_ptid;
/**
* @brief 等待创建的所有线程退出
*
* @return
**/
void exit_threads();
/*****************************/
/*** Something about alarm ***/
/*****************************/
/**
* @brief 邮件告警
*
* @param [in] title : 邮件
* @param [in] content : 邮件内容
* @param [in] emaillist : 发件人列表
* @return 发送成功/失败
**/
bool alarm_by_email(std::string& title, std::string& content, const std::string& emaillist);
/**
* @brief 短信告警
*
* @param [in] content : 短信内容
* @param [in] smslist : 发件人列表
* @return 发送成功/失败
**/
bool alarm_by_sms(std::string& content, const ::std::string& smslist);
/* Prototypes */
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_ivr_loadbalance_shutdown);
SWITCH_MODULE_RUNTIME_FUNCTION(mod_ivr_loadbalance_runtime);
SWITCH_MODULE_LOAD_FUNCTION(mod_ivr_loadbalance_load);
/* SWITCH_MODULE_DEFINITION(name, load, shutdown, runtime)
* Defines a switch_loadable_module_function_table_t and a static const char[] modname
*/
SWITCH_MODULE_DEFINITION(mod_ivr_loadbalance, mod_ivr_loadbalance_load,
mod_ivr_loadbalance_shutdown, mod_ivr_loadbalance_runtime);
//Macro expands to: switch_status_t mod_ivr_loadbalance_load(switch_loadable_module_interface_t **module_interface, switch_memory_pool_t *pool)
SWITCH_MODULE_LOAD_FUNCTION(mod_ivr_loadbalance_load) {
// connect my internal structure to the blank pointer passed to me
//删掉此句,FS将启动不成功,原因待议
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB]==== LOAD IVR_LOADBALANCE START ====\n");
char confFile[MAX_LINE_LEN + 1] = {0};
if (!get_conf_path(confFile, MAX_LINE_LEN, g_config_path)) {
return SWITCH_STATUS_FALSE;
}
if (!load_file(confFile)) {
return SWITCH_STATUS_FALSE;
}
g_ptid = (pthread_t*)malloc(sizeof(pthread_t) * g_conf_info.ivr_num);
if (NULL == g_ptid) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]MALLOC FOR PID ERR:num=%d\n",
g_conf_info.ivr_num);
return SWITCH_STATUS_FALSE;
}
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB]==== LOAD IVR_LOADBALANCE END ====\n");
return SWITCH_STATUS_SUCCESS;
}
//Macro expands to: switch_status_t mod_ivr_loadbalance_runtime(switch_loadable_module_interface_t **module_interface, switch_memory_pool_t *pool)
SWITCH_MODULE_RUNTIME_FUNCTION(mod_ivr_loadbalance_runtime) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB]==== RUNTIME IVR_LOADBALANCE START ====\n");
g_mod_running = true;
check_ivr_main();
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB]==== RUNTIME IVR_LOADBALANCE CREATE THREADS END ====\n");
return SWITCH_STATUS_TERM;
}
//Macro expands to: switch_status_t mod_ivr_loadbalance_shutdown(switch_loadable_module_interface_t **module_interface, switch_memory_pool_t *pool)
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_ivr_loadbalance_shutdown) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB]==== SHUTDOWN IVR_LOADBALANCE START ====\n");
g_mod_running = false;
//Wait for threads exit
exit_threads();
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB]==== RUNTIME IVR_LOADBALANCE END ====\n");
//free g_ptid
free(g_ptid);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB]==== SHUTDOWN IVR_LOADBALANCE END ====\n");
return SWITCH_STATUS_SUCCESS;
}
/**
* @brief 读取配置文件
*
* @param [in] file_path : 配置文件路径
* @return 读取成功/失败
**/
bool load_file(const char* file_path) {
file_map fileMap;
//Find all options in config file
std::ifstream fp(file_path);
if (fp.fail()) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[IVR_LB]LOAD CONF FILE ERR:path=%s\n",
file_path);
return false;
}
char szbuf[MAX_LINE_LEN + 1];
std::string strLine;
bool hasRead = false;
while (!fp.eof() && !fp.fail()) {
if (!hasRead) {
fp.getline(szbuf, MAX_LINE_LEN);
if ('#' == szbuf[0] || ';' == szbuf[0] || '\0' == szbuf[0]) {
continue;
}
strLine = szbuf;
} else {
hasRead = false;
}
uint32_t firstPos = strLine.find_first_not_of(' ');
uint32_t lastPos = strLine.find_last_not_of(' ');
if (strLine[firstPos] != '[' || strLine[lastPos] != ']' || lastPos - firstPos <= 1) {
continue;
}
std::string strSection = strLine.substr(firstPos + 1, lastPos - firstPos - 1);
std::transform(strSection.begin(), strSection.end(), strSection.begin(), ::tolower);
section_map sectionMap;
fileMap[strSection] = sectionMap;
section_map& pSectionMap = fileMap[strSection];
while (!fp.eof() && !fp.fail()) {
fp.getline(szbuf, MAX_LINE_LEN);
if ('#' == szbuf[0] || ';' == szbuf[0] || '\0' == szbuf[0])
if (szbuf[0] == '#' || szbuf[0] == ';' || szbuf[0] == '\0') {
continue;
}
strLine = szbuf;
firstPos = strLine.find_first_not_of(' ');
lastPos = strLine.find_last_not_of(' ');
int32_t pos0 = strLine.find_first_of('=');
if (strLine[firstPos] == '=' || lastPos - firstPos <= 1) {
continue;
}
if (strLine[firstPos] == '[') {
hasRead = true;
break;
}
if (-1 == pos0) {
continue;
}
int32_t pos = strLine.find_last_not_of(' ', pos0 - 1);
std::string strKey = strLine.substr(firstPos, pos - firstPos + 1);
std::transform(strKey.begin(), strKey.end(), strKey.begin(), ::tolower);
pos = strLine.find_first_not_of(' ', pos0 + 1);
std::string strVal("");
if (-1 == pos) {
strVal = "";
} else {
strVal = strLine.substr(pos);
}
pSectionMap[strKey] = strVal;
}
}//while(!fp.eof() && !fp.fail())
fp.close();
//Get values into struct
//g_conf_info.interval_time = get_int(fileMap, "CheckInterval", "INTERVAL", 500);
if (!load_to_struct(fileMap)) {
return false;
}
switch_core_set_variable("IVR_HOST", g_conf_info.default_ivr_ip.ip_total.c_str());
return true;
}
/**
* @brief 将配置文件图中内容导入到结构中(g_conf_info)
*
* @param [in] filemap : 配置文件图
* @return 导入成功/失败
**/
bool load_to_struct(file_map filemap) {
char tmpIP[MAX_LINE_LEN] = {0};
char tmpIP2[20] = {0};
char keyIVRServer[10] = {0};
uint32_t port = 0;
bool ret = true;
//Get Default IP Address
get_string(filemap, CONF_SECTION_IVRSERVER, CONF_KEY_IVRDEFAULT, "", tmpIP, MAX_EMAIL_LEN);
if (splitIP(tmpIP, tmpIP2, port)) {
g_conf_info.default_ivr_ip.ip_total = tmpIP;
g_conf_info.default_ivr_ip.ip = tmpIP2;
g_conf_info.default_ivr_ip.port = port;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[IVR_LB]CONF DEFAULT IP WRONG:ip=%s\n",
tmpIP);
ret = false;
}
//Get IVR Servers IP Address
g_conf_info.vec_ivr_ip.clear();
int32_t ivrNum = 1;
do {
tmpIP[0] = '\0';
sprintf(keyIVRServer, "%s%d", CONF_KEY_IVRBASE, ivrNum);
if (-1 == get_string(filemap, CONF_SECTION_IVRSERVER, keyIVRServer, "", tmpIP, MAX_EMAIL_LEN)) {
break;
}
if (splitIP(tmpIP, tmpIP2, port)) {
//Put IP info into conf struct
ip_info_t ipInfo;
ipInfo.ip_total = tmpIP;
ipInfo.ip = tmpIP2;
ipInfo.port = port;
g_conf_info.vec_ivr_ip.push_back(ipInfo);
//Create Server info
server_info_t serverInfo;
serverInfo.is_available = false;
g_ip_svrinfo[tmpIP] = serverInfo;
} else {
//Log
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[IVR_LB]CONF IP WRONG:ip%d=%s\n", ivrNum,
tmpIP);
ret = false;
break;
}
ivrNum++;
} while (true);
g_conf_info.ivr_num = ivrNum - 1;
if (0 == g_conf_info.ivr_num) {
//未配置IVR服务器,发出告警
//Log & Alarm
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[IVR_LB]NO IVR IN CONF\n");
std::string title = "[ivr_loadbalance告警]配置文件中未配置IVR服务器";
std::string content = "[ivr_loadbalance告警]配置文件中未配置IVR服务器";
alarm_by_email(title, content, g_conf_info.str_email);
alarm_by_sms(content, g_conf_info.str_phone);
ret = false;
}
//Get Other Options
int32_t tmpNum = get_int(filemap, CONF_SECTION_INTERVAL, CONF_KEY_INTERVAL, 1000);
g_conf_info.interval_time = (tmpNum > 0) ? tmpNum : 1000;
tmpNum = get_int(filemap, CONF_SECTION_TIMEOUT, CONF_KEY_CON_TIMEOUT, 2000);
g_conf_info.connect_timeout = (tmpNum > 0) ? tmpNum : 2000;
tmpNum = get_int(filemap, CONF_SECTION_RULE, CONF_KEY_CPU_THRESHOLD, 70);
g_conf_info.cpu_threshold = (tmpNum > 0) ? tmpNum : 70;
get_string(filemap, CONF_SECTION_ALARM, CONF_KEY_EMAIL, "", g_conf_info.str_email, MAX_EMAIL_LEN);
get_string(filemap, CONF_SECTION_ALARM, CONF_KEY_PHONE, "", g_conf_info.str_phone, MAX_PHONE_LEN);
//Config Log Output
std::vector <ip_info_t>::iterator iter = g_conf_info.vec_ivr_ip.begin();
for (; iter != g_conf_info.vec_ivr_ip.end(); iter++) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]CONF:ip=%s,port=%d\n",
(*iter).ip.c_str(), (*iter).port);
server_info_t serverInfo;
}
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]CONF:ivr_num=%d\n",
g_conf_info.ivr_num);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]CONF:Default_ip=%s,port=%d\n",
g_conf_info.default_ivr_ip.ip.c_str(), g_conf_info.default_ivr_ip.port);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]CONF:interval=%d\n",
g_conf_info.interval_time);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]CONF:timeout=%d\n",
g_conf_info.connect_timeout);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]CONF:cputhr=%d\n",
g_conf_info.cpu_threshold);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]CONF:email=%s\n",
g_conf_info.str_email);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]CONF:phone=%s\n",
g_conf_info.str_phone);
return ret;
}
/**
* @brief 将(IP:port)地址分解成IP和port。仅按照分号进行分割,无分号视为错误
*
* @param [in] ip_addr : IP地址
* @param [out] ip : 分割后的IP地址
* @param [out] port : 分割后的port
* @return 分割成功/失败
**/
bool splitIP(const char* ip_addr, char* ip, uint32_t& port) {
std::string strIPPort = ip_addr;
int32_t pos0 = strIPPort.find_first_of(':');
if (-1 == pos0 || 0 == pos0) {
return false;
}
std::string strIP = strIPPort.substr(0, pos0);
strncpy(ip, strIP.c_str(), 20);
int32_t pos = strIPPort.find_first_not_of(' ', pos0 + 1);
if (-1 == pos) {
return false;
}
port = atoi(strIPPort.substr(pos).c_str());
if (0 == port) {
return false;
}
return true;
}
/**
* @brief 从配置文件图中读取数字
*
* @param [in] filemap : 配置文件图
* @param [in] section_name : 读取的section名称
* @param [in] key_name : 读取的key名称
* @param [in] default_value : 默认值
* @return 读取到的值
**/
int32_t get_int(file_map filemap, const char* section_name, const char* key_name,
int32_t default_value) {
int32_t ret = default_value;
std:: string strTmp;
strTmp = section_name;
std::transform(strTmp.begin(), strTmp.end(), strTmp.begin(), ::tolower);
if (filemap.find(strTmp) == filemap.end()) {
return ret;
}
section_map& pSectionMap = filemap[strTmp];
strTmp = key_name;
std::transform(strTmp.begin(), strTmp.end(), strTmp.begin(), ::tolower);
if (pSectionMap.find(strTmp) == pSectionMap.end()) {
return ret;
}
ret = atoi(pSectionMap[strTmp].c_str());
return ret;
}
/**
* @brief 从配置文件图中读取字符串
*
* @param [in] filemap : 配置文件图
* @param [in] section_name : 读取的section名称
* @param [in] key_name : 读取的key名称
* @param [in] default_value : 默认值
* @param [out] dest_buff : 读取的字符串存放缓冲区
* @param [in] buff_size : 缓冲区大小
* @return 获取的字符串长度。-1为错误
**/
int32_t get_string(file_map filemap, const char* section_name, const char* key_name,
const char* default_value, char* dest_buff, uint32_t buff_size) {
std:: string strTmp;
strTmp = section_name;
std::transform(strTmp.begin(), strTmp.end(), strTmp.begin(), ::tolower);
if (filemap.find(strTmp) == filemap.end()) {
strncpy(dest_buff, default_value, buff_size - 1);
return -1;
}
section_map& pSectionMap = filemap[strTmp];
strTmp = key_name;
std::transform(strTmp.begin(), strTmp.end(), strTmp.begin(), ::tolower);
if (pSectionMap.find(strTmp) == pSectionMap.end()) {
strncpy(dest_buff, default_value, buff_size - 1);
return -1;
}
std::string& strVal = pSectionMap[strTmp];
uint32_t ret = strVal.length();
if (buff_size <= ret) {
strncpy(dest_buff, strVal.c_str(), buff_size - 1);
ret = buff_size - 1;
} else {
strncpy(dest_buff, strVal.c_str(), buff_size);
ret = strlen(dest_buff);
}
return ret;
}
/**
* @brief 获取配置文件全路径
*
* @param [out] conf_path : 输出的全路径缓冲区
* @param [in] conf_path_size : 缓冲区大小
* @param [in] conf_file : 后续路径
* @return 获取成功/失败
**/
bool get_conf_path(char* conf_path, uint32_t conf_path_size, const char* conf_file) {
char proc[MAX_LINE_LEN + 1] = {0};
char basePath[MAX_LINE_LEN + 1] = {0};
int32_t count;
snprintf(proc, sizeof(proc), "/proc/%u/exe", (uint32_t)getpid());
count = readlink(proc, basePath, MAX_LINE_LEN);
if (count < 0 || count >= MAX_LINE_LEN) {
memset(conf_path, conf_path_size, 0);
return false;
} else {
basePath[count] = '\0';
}
dirname(basePath);
snprintf(conf_path, conf_path_size, "%s/%s", basePath, conf_file);
return true;
}
/**
* @brief 运行主函数,创建检测线程
*
* @return
**/
void check_ivr_main() {
//Check all IVR servers, update the info
std::vector <ip_info_t>::iterator iter = g_conf_info.vec_ivr_ip.begin();
for (; iter != g_conf_info.vec_ivr_ip.end(); iter++) {
ip_info_t tmpIPInfo = *iter;
int32_t cpu = 0;
int32_t chanNum = 0;
int32_t ivrret = check_ivr_server(tmpIPInfo.ip.c_str(), tmpIPInfo.port, &cpu, &chanNum);
if (0 == ivrret) {
g_ip_svrinfo[tmpIPInfo.ip_total.c_str()].cpu = cpu;
g_ip_svrinfo[tmpIPInfo.ip_total.c_str()].chan_num = chanNum;
g_ip_svrinfo[tmpIPInfo.ip_total.c_str()].is_available = true;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]IVR OK:ip=%s,cpu=%d,chan=%d\n",
(*iter).ip_total.c_str(), cpu, chanNum);
} else {
g_ip_svrinfo[tmpIPInfo.ip_total.c_str()].is_available = false;
//Log & Alarm
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[IVR_LB]IVR ERR:ip=%s,errno=%d\n",
(*iter).ip_total.c_str(), ivrret);
std::string title = "[ivr_loadbalance告警]IVR服务器初始化检测异常。IP=";
title += (*iter).ip_total;
std::string content;
std::stringstream ss;
ss << "[ivr_loadbalance告警]IVR服务器初始化检测异常。IP=" << (*iter).ip_total << "。错误码=" <<
ivrret;
ss >> content;
content += "\n错误码表:\n";
content += g_ivr_check_ret_str;
alarm_by_email(title, content, g_conf_info.str_email);
alarm_by_sms(content, g_conf_info.str_phone);
}
}
decision_ivr_server();
int32_t threadTag = g_conf_info.interval_time / g_conf_info.ivr_num;
//Create threads for every IVR Server
/*
iter = g_conf_info.vec_ivr_ip.begin();
for(int32_t i = 0; iter != g_conf_info.vec_ivr_ip.end(); i++,iter++)
{
ip_info_t tmpIPInfo = *iter;
int32_t threadret;
threadret = pthread_create(tid+i, NULL, check_ivr_pthread, &tmpIPInfo);
if(0 != threadret)
{
//Log & Alarm
}
}
*/
for (int32_t i = 0; i < g_conf_info.ivr_num; i++) {
int32_t threadret;
threadret = pthread_create(g_ptid + i, NULL, check_ivr_pthread, &(g_conf_info.vec_ivr_ip[i]));
if (0 != threadret) {
//Log & Alarm
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"[IVR_LB]CREATE THRD ERR:ip=%s,errno=%d\n",
g_conf_info.vec_ivr_ip[i].ip_total.c_str(), threadret);
std::string title = "[ivr_loadbalance告警]创建线程异常";
std::string content = "[ivr_loadbalance告警]创建线程异常。IVR IP=";
content += g_conf_info.vec_ivr_ip[i].ip_total.c_str();
alarm_by_email(title, content, g_conf_info.str_email);
alarm_by_sms(content, g_conf_info.str_phone);
}
usleep(threadTag * 1000);
}
}
/**
* @brief 检测IVR Server线程。每隔interval_time进行检测,并更新检测结果,并调用决策函数
*
* @param [in] : 此线程检测的IVR Server的IP地址
* @return
**/
void* check_ivr_pthread(void* pip_info_t) {
ip_info_t* pipInfo = (ip_info_t*)pip_info_t;
int32_t cpu;
int32_t chanNum;
int32_t intervalTime = g_conf_info.interval_time;
bool hasAlarm = false;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB][pid:%d]CREATE THRD SUCCESS:ip=%s\n", pthread_self(), pipInfo->ip_total.c_str());
while (g_mod_running) {
g_ip_svrinfo[pipInfo->ip_total.c_str()].is_available = false;
int32_t ivrret = check_ivr_server(pipInfo->ip.c_str(), pipInfo->port, &cpu, &chanNum);
if (0 == ivrret) {
//此处更新数据未加锁。
//读取IVR状态。由于不加锁,需要is_available最后更新
g_ip_svrinfo[pipInfo->ip_total.c_str()].cpu = cpu;
g_ip_svrinfo[pipInfo->ip_total.c_str()].chan_num = chanNum;
g_ip_svrinfo[pipInfo->ip_total.c_str()].is_available = true;
//Unlock ?
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB][pid:%d]IVR OK:ip=%s,cpu=%d,chan=%d\n",
pthread_self(), pipInfo->ip_total.c_str(), cpu, chanNum);
if (hasAlarm) {
hasAlarm = false;
std::string title = "[ivr_loadbalance告警解除]IVR服务器连接恢复。IP=";
title += pipInfo->ip_total;
std::string content = "[ivr_loadbalance告警解除]IVR服务器连接恢复。IP=";
content += pipInfo->ip_total;
alarm_by_email(title, content, g_conf_info.str_email);
}
} else {
g_ip_svrinfo[pipInfo->ip_total.c_str()].is_available = false;
//Warning Log
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"[IVR_LB][pid:%d]IVR ERR:ip=%s,errno=%d\n",
pthread_self(), pipInfo->ip_total.c_str(), ivrret);
if (!hasAlarm) {
hasAlarm = true;
std::string title = "[ivr_loadbalance告警]IVR服务器连接失败。IP=";
title += pipInfo->ip_total;
std::string content;
std::stringstream ss;
ss << "[ivr_loadbalance告警]IVR服务器连接失败。IP=" << pipInfo->ip_total << "。错误码=" << ivrret;
ss >> content;
content += "\n错误码:\n";
content += g_ivr_check_ret_str;
alarm_by_email(title, content, g_conf_info.str_email);
}
}
//Choose a server
decision_ivr_server();
//Sleep for a while
usleep(intervalTime * 1000);
}
}
/**
* @brief 检测IVR Server
*
* @param [in] ip_addr : 检测的IP地址,无port部分
* @param [in] port : 检测的port部分
* @param [out] cpu : IVR Server的CPU信息
* @param [out] chan_num : IVR Server的已用通道数
* @return 0-成功,其它-失败
**/
int32_t check_ivr_server(const char* ip_addr, uint32_t port, int32_t* cpu, int32_t* chan_num) {
struct timeval startTime, endTime, timeoutTime;
double timeUsed;
int32_t sockfd;
char buffer[MAX_LINE_LEN + 1];
struct sockaddr_in serverAddr;
struct hostent host, * ptmpHost;
char strPtmpHost[MAX_LINE_LEN + 1] = {0};
int32_t hostRes = 0;
int32_t hostErr = 0;
int32_t nbytes = 0;
int32_t getbytes = 0;
int32_t ret = IVR_SUCCESS;
int32_t tmpRet = 0;
char* tmpbuf = NULL;
//host = gethostbyname(ip_addr);
hostRes = gethostbyname_r(ip_addr, &host, strPtmpHost, MAX_LINE_LEN, &ptmpHost, &hostErr);
if (hostRes != 0 || NULL == ptmpHost) {
//Log & Alarm
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[IVR_LB][pid:%d]GET HOST ERR:ip=%s:%d\n",
pthread_self(), ip_addr, port);
ret = IVR_CREATE_SOCK_ERR;
goto CHECK_END;
}
if (-1 == (sockfd = socket(AF_INET, SOCK_STREAM, 0))) {
//Log & Alarm
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"[IVR_LB][pid:%d]CREATE SOCK ERR:ip=%s:%d\n", pthread_self(), ip_addr, port);
ret = IVR_CREATE_SOCK_ERR;
goto CHECK_END;
}
bzero(&serverAddr, sizeof(serverAddr));
serverAddr.sin_family = AF_INET;
serverAddr.sin_port = htons(port);
serverAddr.sin_addr = *((struct in_addr*)host.h_addr);
//设置recv和send的超时时间
timeoutTime.tv_sec = g_conf_info.connect_timeout / 1000;
timeoutTime.tv_usec = g_conf_info.connect_timeout % 1000;
setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &timeoutTime, sizeof(timeoutTime));
setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, &timeoutTime, sizeof(timeoutTime));
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB][pid:%d]CONNECT IVR:ip=%s:%d\n",
pthread_self(), ip_addr, port);
gettimeofday(&startTime, 0);
if (-1 == (tmpRet = connect(sockfd, (struct sockaddr*)(&serverAddr), sizeof(serverAddr)))) {
//Log & Alarm
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[IVR_LB][pid:%d]CONNECT ERR:ip=%s:%d\n",
pthread_self(), ip_addr, port);
ret = IVR_CONNECT_ERR;
goto CHECK_CLOSE;
}
//接收"Connect"消息
bzero(&buffer, sizeof(buffer));
getbytes = 9;
tmpbuf = buffer;
do {
nbytes = recv(sockfd, tmpbuf, getbytes, 0);
if (nbytes > 0) {
tmpbuf += nbytes;
getbytes -= nbytes;
} else if (EINTR == errno) {
//中断,继续读
continue;
} else {
//读取错误
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"[IVR_LB][pid:%d]CONNECT MSG ERR:ip=%s:%d,errno=%d\n",
pthread_self(), ip_addr, port, errno);
ret = IVR_RECV_CONN_ERR2;
goto CHECK_CLOSE;
}
} while (0 != getbytes);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB][pid:%d]RECV FROM IVR:ip=%s:%d,msg=%s\n",
pthread_self(), ip_addr, port, buffer);
if (0 != getbytes || 0 != strncmp(buffer, "connect\n\n", strlen("connect\n\n"))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"[IVR_LB][pid:%d]CONNECT MSG ERR:ip=%s:%d,msg=%s\n",
pthread_self(), ip_addr, port, buffer);
ret = IVR_RECV_CONN_ERR1;
goto CHECK_CLOSE;
}
//发送检测消息
// sprintf(buffer, "content-type:command/reply\nreply-text:+ok\n\n\n");
// sprintf(buffer, "content-type:command/reply\nreply-text:+ok accepted\n\n\n");
sprintf(buffer, "caller-unique-id:xyz\ncontent-type:command/reply\nreply-text:+ok\n\n");
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB][pid:%d]SEND TO IVR:ip=%s:%d,msg=%s\n",
pthread_self(), ip_addr, port, buffer);
if (send(sockfd, buffer, strlen(buffer), 0) < 0) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"[IVR_LB][pid:%d]SEND MSG ERR:ip=%s,port=%d,msg=%d\n",
pthread_self(), ip_addr, port, buffer);
ret = IVR_SEND_ERR;
goto CHECK_CLOSE;
}
//接收反馈
bzero(&buffer, sizeof(buffer));
getbytes = 17;
tmpbuf = buffer;
do {
nbytes = recv(sockfd, tmpbuf, getbytes, 0);
if (nbytes > 0) {
tmpbuf += nbytes;
getbytes -= nbytes;
} else if (EINTR == errno) {
//中断,继续读
continue;
} else {
//读取错误
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"[IVR_LB][pid:%d]RECV MSG ERR:ip=%s,port=%d,errno=%d\n",
pthread_self(), ip_addr, port, errno);
ret = IVR_RECV_INFO_ERR2;
goto CHECK_CLOSE;
}
} while (0 != getbytes);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB][pid:%d]RECV FROM IVR:ip=%s:%d,msg=%s\n",
pthread_self(), ip_addr, port, buffer);
if (0 != getbytes || sscanf(buffer, "cpu=%d,chan=%d", cpu, chan_num) != 2) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"[IVR_LB][pid:%d]RECV MSG ERR:ip=%s,port=%d,msg=%s\n",
pthread_self(), ip_addr, port, buffer);
ret = IVR_RECV_INFO_ERR1;
goto CHECK_CLOSE;
}
gettimeofday(&endTime , 0);
timeUsed = (endTime.tv_usec - startTime.tv_usec) / 1000 + (endTime.tv_sec - startTime.tv_sec) * 1000;
if (timeUsed >= g_conf_info.connect_timeout) {
//查看链接是否超时
//Log & Alarm
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"[IVR_LB][pid:%d]CONNECT TIMEOUT:ip=%s:%d,timeUsed=%lf\n",
pthread_self(), ip_addr, port, timeUsed);
ret = IVR_CONNECT_TIMEOUT;
goto CHECK_CLOSE;
}
CHECK_CLOSE:
close(sockfd);
CHECK_END:
return ret;
}
/**
* @brief 决策方法。从现有IVR Server中选择一个"负载最小"的Server,并更新到IVR_Host中。
* 服务器均不可用,设置为默认IVR地址。
*
* @return
**/
void decision_ivr_server() {
server_info_t minInfo;
std::string minIP;
uint32_t cpuThr = g_conf_info.cpu_threshold;
int32_t i = 0;
//寻找第一个可用的服务器
for (; i < g_conf_info.ivr_num; i++) {
std::string tmpIP = g_conf_info.vec_ivr_ip[i].ip_total;
server_info_t& tmpInfo = g_ip_svrinfo[tmpIP];
if (tmpInfo.is_available) {
minInfo.cpu = tmpInfo.cpu;
minInfo.chan_num = tmpInfo.chan_num;
minIP = tmpIP;
break;
}
}
//扫到向量尾,说明没有可用服务器,使用默认地址,并发出警告
if (i == g_conf_info.ivr_num) {
minIP = g_conf_info.default_ivr_ip.ip_total;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[IVR_LB][pid:%d]NO IVR SERVER\n",
pthread_self());
if (!g_no_ivr_alarm) {
g_no_ivr_alarm = true;
//No available server. Log & Alarm
std::string title = "[ivr_loadbalance告警]目前无可用服务器。启动备用服务器:";
title += minIP;
std::string content = "[ivr_loadbalance告警]目前无用服务器。启动备用服务器:";
content += minIP;
alarm_by_email(title, content, g_conf_info.str_email);
alarm_by_sms(content, g_conf_info.str_phone);
}
}
//仍有可用服务器(未到达末尾),继续寻找最优服务器
//策略:
// 1)cpu均大于阈值的,选择cpu较小的;
// 2) cpu1>阈值,cpu2<阈值的,选择cpu较小的;
// 3) cpu均小于阈值的,选择通道数较小的
for (; i < g_conf_info.ivr_num; i++) {
std::string tmpIP = g_conf_info.vec_ivr_ip[i].ip_total;
server_info_t& tmpInfo = g_ip_svrinfo[tmpIP];
if (tmpInfo.is_available) {
if (minInfo.cpu >= cpuThr) {
if (tmpInfo.cpu < minInfo.cpu) {
minInfo.cpu = tmpInfo.cpu;
minInfo.chan_num = tmpInfo.chan_num;
minIP = tmpIP;
}
} else if (tmpInfo.cpu < cpuThr) {
if (tmpInfo.chan_num < minInfo.chan_num) {
minInfo.cpu = tmpInfo.cpu;
minInfo.chan_num = tmpInfo.chan_num;
minIP = tmpIP;
}
}
}
}
std::string oldIP = switch_core_get_variable("IVR_HOST");
// std::string oldIP;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB][pid:%d]IVR HOST:oldip=%s,newip=%s\n",
pthread_self(), oldIP.c_str(), minIP.c_str());
if (oldIP != minIP) {
if (g_no_ivr_alarm && minIP != g_conf_info.default_ivr_ip.ip_total) {
g_no_ivr_alarm = false;
std::string title = "[ivr_loadbalance告警解除]目前有可用服务器。IP=";
title += minIP;
std::string content = "[ivr_loadbalance告警解除]目前有可用服务器。IP=";
content += minIP;
alarm_by_email(title, content, g_conf_info.str_email);
alarm_by_sms(content, g_conf_info.str_phone);
}
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE,
"[IVR_LB][pid:%d]IVR HOST CHANGE:oldip=%s,newip=%s\n",
pthread_self(), oldIP.c_str(), minIP.c_str());
switch_core_set_variable("IVR_HOST", minIP.c_str());
}
}
/**
* @brief 等待创建的所有线程退出
*
* @return
**/
void exit_threads() {
g_mod_running = false;
for (int32_t i = 0; i < g_conf_info.ivr_num; i++) {
int32_t threadret;
threadret = pthread_join(g_ptid[i], NULL);
if (0 != threadret) {
//Log & Alarm
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "[IVR_LB]EXIT THRD ERR:ip=%s,errno=%d\n",
g_conf_info.vec_ivr_ip[i].ip_total.c_str(), threadret);
}
}
}
/**
* @brief 邮件告警
*
* @param [in] title : 邮件
* @param [in] content : 邮件内容
* @param [in] emaillist : 发件人
* @return 发送成功/失败
**/
bool alarm_by_email(std::string& title, std::string& content, const std::string& emaillist) {
bool ret = false;
if (emaillist.empty()) {
return false;
}
//去掉单引号 防止命令
title.erase(
remove_if(title.begin(), title.end(), std::bind2nd(std::equal_to<char>(), '\'')), title.end());
content.erase(
remove_if(content.begin(), content.end(), std::bind2nd(std::equal_to<char>(), '\'')),
content.end());
//去掉百分号
title.erase(
remove_if(title.begin(), title.end(), std::bind2nd(std::equal_to<char>(), '%')), title.end());
content.erase(
remove_if(content.begin(), content.end(), std::bind2nd(std::equal_to<char>(), '%')), content.end());
std::ostringstream ostm;
ostm << "/bin/echo " << "'" << content << "'";
ostm << " | mail -v -s " << "'" << title << "'";
ostm << " " << emaillist;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]SEND MAIL:cmd=%s\n",
ostm.str().c_str());
int32_t result = system(ostm.str().c_str());
// int32_t result = true;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]SEND MAIL RET:ret=%d\n", result);
if (0 == result) {
ret = true;
} else {
ret = false;
}
return ret;
}
/**
* @brief 短信告警
*
* @param [in] content : 短信内容
* @param [in] smslist : 发件人
* @return 发送成功/失败
**/
bool alarm_by_sms(std::string& content, const ::std::string& smslist) {
bool ret = false;
//去掉单引号 防止命令
content.erase(
remove_if(content.begin(), content.end(), std::bind2nd(std::equal_to<char>(), '\'')),
content.end());
//去掉百分号
content.erase(
remove_if(content.begin(), content.end(), std::bind2nd(std::equal_to<char>(), '%')), content.end());
std::vector<std::string> number_vec;
if (smslist.empty()) {
return false;
}
std::string::size_type sizePos = 0;
std::string::size_type sizePrevPos = 0;
while ((sizePos = smslist.find_first_of("," , sizePos)) != std::string::npos) {
std::string strtemp = smslist.substr(sizePrevPos , sizePos - sizePrevPos);
number_vec.push_back(strtemp);
sizePrevPos = ++ sizePos;
}
number_vec.push_back(&smslist[sizePrevPos]);
for (uint32_t i = 0; i < number_vec.size(); i++) {
std::ostringstream ostm;
ostm << "/bin/gsmsend -s 0.0.0.0:0 -s 0.0.0.0:0 ";//use to send SMS
ostm << number_vec[i] << "@'" << content << "'";
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]SEND SMS:cmd=%s\n",
ostm.str().c_str());
int32_t result = system(ostm.str().c_str());
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "[IVR_LB]SEND SMS RET:ret=%d\n", result);
if (0 == result) {
ret = true;
} else {
ret = false;
}
}
return ret;
}