|
@@ -168,7 +168,7 @@ class Account(pj.Account):
|
|
|
print("***OnRegState: " + prm.reason, ai.id,ai.isDefault,ai.uri,ai.regIsConfigured,ai.regIsActive,ai.regExpiresSec,ai.regStatus,ai.regStatusText,ai.regLastErr,ai.onlineStatus,ai.onlineStatusText)
|
|
|
|
|
|
def onIncomingCall(self, prm):
|
|
|
- self.agent.logger.info("daviddebugger::onIncomingCall::%s ", prm.callId)
|
|
|
+ # self.agent.logger.info("daviddebugger::onIncomingCall::%s ", prm.callId)
|
|
|
ai = self.getInfo()
|
|
|
print("***onIncomingCall: ", prm.callId, ai.id,ai.isDefault,ai.uri,ai.regIsConfigured,ai.regIsActive,ai.regExpiresSec,ai.regStatus,ai.regStatusText,ai.regLastErr,ai.onlineStatus,ai.onlineStatusText)
|
|
|
|
|
@@ -523,7 +523,7 @@ class BotAgent:
|
|
|
self.cache.set_register_per_hours(expire=timeout_sec - (60*3))
|
|
|
# Create and initialize the library
|
|
|
ep_cfg = pj.EpConfig()
|
|
|
- ep_cfg.uaConfig.threadCnt = 1
|
|
|
+ ep_cfg.uaConfig.threadCnt = 8
|
|
|
ep_cfg.uaConfig.mainThreadOnly = False
|
|
|
ep_cfg.uaConfig.maxCalls = 32
|
|
|
ep_cfg.uaConfig.maxAccounts = 32
|
|
@@ -583,8 +583,13 @@ class BotAgent:
|
|
|
registry.BOT_AGENT_LIVES.set(self.user_part_pool.qsize())
|
|
|
self.ep.libHandleEvents(100)
|
|
|
|
|
|
+ self.logger.info("create pjsua will shutdown")
|
|
|
+ self.call_players.clear()
|
|
|
+ self.accounts.clear()
|
|
|
+ self.calls.clear()
|
|
|
# Destroy the library
|
|
|
self.ep.libDestroy()
|
|
|
+ self.logger.info("create pjsua already shutdown")
|
|
|
|
|
|
def main_thread_daemon(self):
|
|
|
while not self.daemon_stopping:
|
|
@@ -615,7 +620,8 @@ class BotAgent:
|
|
|
continue
|
|
|
if len(v) == 1:
|
|
|
sec = datetime.now().timestamp() - v[0]
|
|
|
- if sec > 90:
|
|
|
+ self.logger.info("daviddebugger::play_complete_degree_check, sec=%s", sec)
|
|
|
+ if sec > 10:
|
|
|
return True
|
|
|
return False
|
|
|
|
|
@@ -721,14 +727,16 @@ class BotAgent:
|
|
|
except:
|
|
|
pass
|
|
|
self.logger.info("destroy, come in 22222")
|
|
|
- self.call_players.clear()
|
|
|
- self.accounts.clear()
|
|
|
- self.calls.clear()
|
|
|
+ # self.call_players.clear()
|
|
|
+ # self.accounts.clear()
|
|
|
+ # self.calls.clear()
|
|
|
# # Destroy the library
|
|
|
# self.ep.libDestroy()
|
|
|
+ time.sleep(0.2)
|
|
|
self.logger.info("destroy, come in 33333")
|
|
|
|
|
|
if not self.pjsua_thread.is_alive():
|
|
|
+ self.logger.info("destroy, pre thread already stopped")
|
|
|
return
|
|
|
ident = self.pjsua_thread.ident
|
|
|
thread_id = ctypes.pythonapi.PyThreadState_SetAsyncExc
|