Davidliu 1 month ago
parent
commit
9d855ead9e
1 changed files with 25 additions and 0 deletions
  1. 25 0
      src/core/voip/bot.py

+ 25 - 0
src/core/voip/bot.py

@@ -9,6 +9,8 @@ import queue
 import threading
 import traceback
 import sys
+from random import randint
+
 import pjsua2 as pj
 from enum import Enum
 from datetime import datetime
@@ -567,6 +569,22 @@ class ToTextBotAgent:
         return parsed_response
 
 
+class RandomIntVal():
+    def __init__(self):
+        self.value = randint(0, 100000)
+
+class AsyncJob(pj.PendingJob):
+    def __init__(self):
+        super().__init__()
+        self.val = RandomIntVal()
+        print("Job created id:", id(self), "value:", self.val.value)
+
+    def execute(self, is_pending):
+        print("Executing job value:", self.val.value, is_pending)
+
+    def __del__(self):
+        print("Job deleted id:", id(self), "value:", self.val.value)
+
 @singleton_keys
 class BotAgent:
 
@@ -593,6 +611,12 @@ class BotAgent:
         self.daemon_job_scheduler.add_job(self._main_thread_daemon, 'interval', seconds=1, max_instances=1, name='bot_agent_daemon')
         self.daemon_job_scheduler.start()
 
+    def _add_new_job(self):
+        print("Creating job 1")
+        job = AsyncJob()
+        print("Adding job 1")
+        self.ep.utilAddPendingJob(job)
+
     def _create_pjsua2(self, timeout_sec=86400):
         start_time = time.time()
         try:
@@ -614,6 +638,7 @@ class BotAgent:
             self.ep.transportCreate(pj.PJSIP_TRANSPORT_UDP, sipTpConfig)
             # Start the library
             self.ep.libStart()
+            self._add_new_job()
 
             for user_part in self.user_part_range:
                 acfg = build_account_config(self.host, self.port, user_part, self.password, timeout_sec)