File size: 35,980 Bytes
27867f1 |
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 |
"""
MIT License
Copyright (C) 2023 ROCKY4546
https://github.com/rocky4546
This file is part of Cabernet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
"""
import logging
import os
import re
import requests
import socket
import sys
import threading
import time
import urllib.parse
from collections import OrderedDict
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
from cryptography.hazmat.backends import default_backend
from multiprocessing import Queue
from queue import Empty
from threading import Thread
import lib.common.utils as utils
import lib.m3u8 as m3u8
from lib.common.decorators import handle_url_except
from lib.common.decorators import handle_json_except
from lib.streams.atsc import ATSCMsg
from lib.streams.video import Video
from .pts_validation import PTSValidation
from .pts_resync import PTSResync
PLAY_LIST = OrderedDict()
PROCESSED_URLS = {}
IN_QUEUE = Queue()
OUT_QUEUE = Queue()
TERMINATE_REQUESTED = False
MAX_STREAM_QUEUE_SIZE = 20
STREAM_QUEUE = Queue()
OUT_QUEUE_LIST = []
HTTP_TIMEOUT=8
HTTP_RETRIES=3
MAINTAIN_HTTP_SESSION=True
PARALLEL_DOWNLOADS=3
IS_VOD = False
UID_COUNTER = 1
UID_PROCESSED = 1
class M3U8GetUriData(Thread):
def __init__(self, _queue_item, _uid_counter, _config):
global TERMINATE_REQUESTED
Thread.__init__(self)
self.queue_item = _queue_item
self.uid_counter = _uid_counter
self.video = Video(_config)
self.config = _config
self.logger = logging.getLogger(__name__ + str(threading.get_ident()))
self.pts_validation = None
if _config[M3U8Queue.config_section]['player-enable_pts_filter']:
self.pts_validation = PTSValidation(_config, M3U8Queue.channel_dict)
if not TERMINATE_REQUESTED:
self.start()
def run(self):
global UID_COUNTER
global UID_PROCESSED
global STREAM_QUEUE
global TERMINATE_REQUESTED
self.logger.trace('M3U8GetUriData started {} {} {}'.format(self.queue_item['data']['uri'], os.getpid(), threading.get_ident()))
m3u8_data = self.process_m3u8_item(self.queue_item)
if not TERMINATE_REQUESTED:
PROCESSED_URLS[self.uid_counter] = m3u8_data
STREAM_QUEUE.put({'uri_dt': 'check_processed_list'})
self.logger.trace('M3U8GetUriData terminated COUNTER {} {} {}'.format(self.uid_counter, os.getpid(), threading.get_ident()))
m3u8_data = None
self.queue_item = None
self.uid_counter = None
self.video = None
self.pts_validation = None
self.logger = None
@handle_url_except()
def get_uri_data(self, _uri, _retries):
"""
_retries is used by the decorator when a HTTP failure occurs
"""
global HTTP_TIMEOUT
global MAINTAIN_HTTP_SESSION
if not MAINTAIN_HTTP_SESSION:
M3U8Queue.http_session.close()
time.sleep(0.01)
M3U8Queue.http_session = requests.session()
self.logger.trace('HTTP HEADER: {}'.format(M3U8Queue.http_header))
resp = M3U8Queue.http_session.get(_uri, headers=M3U8Queue.http_header, timeout=HTTP_TIMEOUT, verify=False)
x = resp.content
resp.raise_for_status()
return x
def decrypt_stream(self, _data):
global HTTP_RETRIES
if _data['key'] and _data['key']['uri']:
if _data['key']['uri'] in M3U8Queue.key_list.keys():
key_data = M3U8Queue.key_list[_data['key']['uri']]
self.logger.debug('Reusing key {} {}'.format(os.getpid(), _data['key']['uri']))
elif not _data['key']['uri'].startswith('http'):
self.logger.warning('Unknown protocol, aborting {} {}'.format(os.getpid(), _data['key']['uri']))
return False
else:
key_uri = _data['key']['uri']
key_data = self.get_uri_data(key_uri, HTTP_RETRIES)
if key_data is not None:
M3U8Queue.key_list[_data['key']['uri']] = key_data
if _data['key']['iv'] is None:
# if iv is none, use a random value
iv = bytearray.fromhex('000000000000000000000000000000F6')
elif _data['key']['iv'].startswith('0x'):
iv = bytearray.fromhex(_data['key']['iv'][2:])
else:
iv = bytearray.fromhex(_data['key']['iv'])
cipher = Cipher(algorithms.AES(key_data), modes.CBC(iv), default_backend())
decryptor = cipher.decryptor()
self.video.data = decryptor.update(self.video.data)
if len(M3U8Queue.key_list.keys()) > 20:
del M3U8Queue.key_list[list(M3U8Queue.key_list)[0]]
return True
def atsc_processing(self):
if not M3U8Queue.atsc:
p_list = M3U8Queue.atsc_msg.extract_psip(self.video.data)
if len(p_list) != 0:
M3U8Queue.atsc = p_list
M3U8Queue.channel_dict['atsc'] = p_list
M3U8Queue.initialized_psi = True
return p_list
elif not M3U8Queue.initialized_psi:
p_list = M3U8Queue.atsc_msg.extract_psip(self.video.data)
if len(M3U8Queue.atsc) < len(p_list):
M3U8Queue.atsc = p_list
M3U8Queue.channel_dict['atsc'] = p_list
M3U8Queue.initialized_psi = True
return p_list
if len(M3U8Queue.atsc) == len(p_list):
for i in range(len(p_list)):
if p_list[i][4:] != M3U8Queue.atsc[i][4:]:
M3U8Queue.atsc = p_list
M3U8Queue.channel_dict['atsc'] = p_list
M3U8Queue.initialized_psi = True
is_changed = True
return p_list
return None
def is_pts_valid(self):
if self.pts_validation is None:
return True
results = self.pts_validation.check_pts(self.video)
if results['byteoffset'] != 0:
return False
if results['refresh_stream']:
return False
if results['reread_buffer']:
return False
return True
def get_stream_from_atsc(self):
if M3U8Queue.atsc is not None:
return M3U8Queue.atsc_msg.format_video_packets(M3U8Queue.atsc)
else:
self.logger.info(''.join([
'No ATSC msg available during filtered content, ',
'recommend running this channel again to catch the ATSC msg.']))
return M3U8Queue.atsc_msg.format_video_packets()
def process_m3u8_item(self, _queue_item):
global IS_VOD
global TERMINATE_REQUESTED
global PLAY_LIST
global OUT_QUEUE
global UID_PROCESSED
global HTTP_RETRIES
uri_dt = _queue_item['uri_dt']
data = _queue_item['data']
if data['filtered']:
PLAY_LIST[uri_dt]['played'] = True
return {'uri': data['uri'],
'data': data,
'stream': self.get_stream_from_atsc(),
'atsc': None}
else:
if IS_VOD:
count = self.config['stream']['vod_retries']
else:
count = 1
while count > 0:
self.video.data = self.get_uri_data(data['uri'], HTTP_RETRIES)
if self.video.data:
break
# TBD WHAT TO DO WITH THIS?
if count > 1:
out_queue_put({'uri': 'extend',
'data': data,
'stream': None,
'atsc': None})
count -= 1
if uri_dt not in PLAY_LIST.keys():
self.logger.debug('{} uri_dt not in PLAY_LIST keys {}'.format(os.getpid(), uri_dt))
return
if self.video.data is None:
PLAY_LIST[uri_dt]['played'] = True
return {'uri': data['uri'],
'data': data,
'stream': None,
'atsc': None
}
if not self.decrypt_stream(data):
# terminate if stream is not decryptable
TERMINATE_REQUESTED = True
M3U8Queue.pts_resync.terminate()
M3U8Queue.pts_resync = None
clear_queues()
PLAY_LIST[uri_dt]['played'] = True
return {'uri': 'terminate',
'data': data,
'stream': None,
'atsc': None}
if not self.is_pts_valid():
PLAY_LIST[uri_dt]['played'] = True
return {'uri': data['uri'],
'data': data,
'stream': None,
'atsc': None
}
atsc_default_msg = self.atsc_processing()
PLAY_LIST[uri_dt]['played'] = True
if self.uid_counter > UID_PROCESSED+1:
out_queue_put({'uri': 'extend',
'data': data,
'stream': None,
'atsc': None})
return {'uri': data['uri'],
'data': data,
'stream': self.video.data,
'atsc': atsc_default_msg
}
class M3U8Queue(Thread):
"""
This runs as an independent process (one per stream) to get and process the
data stream as fast as possible and return it to the tuner web server for
output to the client.
"""
is_stuck = None
http_session = requests.session()
http_header = None
key_list = {}
config_section = None
channel_dict = None
pts_resync = None
atsc = None
atsc_msg = None
initialized_psi = False
def __init__(self, _config, _channel_dict):
global MAINTAIN_HTTP_SESSION
Thread.__init__(self)
# Disable the CERT unverified warnings
requests.packages.urllib3.disable_warnings()
self.video = Video(_config)
self.q_action = None
self.logger = logging.getLogger(__name__ + str(threading.get_ident()))
self.config = _config
self.namespace = _channel_dict['namespace'].lower()
M3U8Queue.config_section = utils.instance_config_section(_channel_dict['namespace'], _channel_dict['instance'])
M3U8Queue.channel_dict = _channel_dict
MAINTAIN_HTTP_SESSION = self.config[_channel_dict['namespace'].lower()]['stream-g_http_session']
M3U8Queue.atsc_msg = ATSCMsg()
self.channel_dict = _channel_dict
M3U8Queue.atsc = _channel_dict['atsc']
if _channel_dict['json'].get('Header') is None:
M3U8Queue.http_header = {'User-agent': utils.DEFAULT_USER_AGENT}
else:
M3U8Queue.http_header = _channel_dict['json']['Header']
if _channel_dict['json'].get('use_date_on_m3u8_key') is None:
self.use_date_on_key = True
else:
self.use_date_on_key = _channel_dict['json']['use_date_on_m3u8_key']
M3U8Queue.pts_resync = PTSResync(_config, self.config_section, _channel_dict['uid'])
self.start()
def run(self):
global OUT_QUEUE
global STREAM_QUEUE
global TERMINATE_REQUESTED
global UID_COUNTER
global UID_PROCESSED
global PARALLEL_DOWNLOADS
global PROCESSED_URLS
global IS_VOD
try:
while not TERMINATE_REQUESTED:
queue_item = STREAM_QUEUE.get()
self.q_action = queue_item['uri_dt']
if queue_item['uri_dt'] == 'terminate':
self.logger.debug('Received terminate from internalproxy {}'.format(os.getpid()))
TERMINATE_REQUESTED = True
break
elif queue_item['uri_dt'] == 'status':
out_queue_put({'uri': 'running',
'data': None,
'stream': None,
'atsc': None})
continue
elif queue_item['uri_dt'] == 'check_processed_list':
self.logger.debug('#### Received check_processed_list request {} Received: {} Processed: {} Processed_Queue: {} Incoming_Queue: {}'
.format(os.getpid(), UID_COUNTER, UID_PROCESSED, len(PROCESSED_URLS), STREAM_QUEUE.qsize()))
self.check_processed_list()
continue
self.logger.debug('**** Running check_processed_list {} Received: {} Processed: {} Processed_Queue: {} Incoming_Queue: {}'
.format(os.getpid(), UID_COUNTER, UID_PROCESSED, len(PROCESSED_URLS), STREAM_QUEUE.qsize()))
self.check_processed_list()
while UID_COUNTER - UID_PROCESSED - len(PROCESSED_URLS) > PARALLEL_DOWNLOADS:
self.logger.debug('Slowed Processing: {} Received: {} Processed: {} Processed_Queue: {} Incoming_Queue: {}'
.format(os.getpid(), UID_COUNTER, UID_PROCESSED, len(PROCESSED_URLS), STREAM_QUEUE.qsize()))
time.sleep(.5)
self.check_processed_list()
if TERMINATE_REQUESTED:
break
self.process_queue = M3U8GetUriData(queue_item, UID_COUNTER, self.config)
if IS_VOD:
time.sleep(0.1)
else:
time.sleep(1.0)
UID_COUNTER += 1
except (KeyboardInterrupt, EOFError) as ex:
TERMINATE_REQUESTED = True
clear_queues()
if self.pts_resync is not None:
self.pts_resync.terminate()
self.pts_resync = None
time.sleep(0.01)
sys.exit()
except Exception as ex:
TERMINATE_REQUESTED = True
STREAM_QUEUE.put({'uri_dt': 'terminate'})
IN_QUEUE.put({'uri': 'terminate'})
if self.pts_resync is not None:
self.pts_resync.terminate()
self.pts_resync = None
clear_queues()
time.sleep(0.01)
self.logger.exception('{}'.format(
'UNEXPECTED EXCEPTION M3U8Queue='))
sys.exit()
# we are terminating so cleanup ffmpeg
if self.pts_resync is not None:
self.pts_resync.terminate()
self.pts_resync = None
time.sleep(0.01)
out_queue_put({'uri': 'terminate',
'data': None,
'stream': None,
'atsc': None})
PROCESSED_URLS.clear()
time.sleep(0.01)
TERMINATE_REQUESTED = True
self.logger.debug('M3U8Queue terminated {}'.format(os.getpid()))
def check_processed_list(self):
global UID_PROCESSED
global PROCESSED_URLS
if len(PROCESSED_URLS) > 0:
first_key = sorted(PROCESSED_URLS.keys())[0]
if first_key == UID_PROCESSED:
try:
self.video.data = PROCESSED_URLS[first_key]['stream']
M3U8Queue.pts_resync.resequence_pts(self.video)
if self.video.data is None and self.q_action != 'check_processed_list':
PLAY_LIST[self.q_action]['played'] = True
PROCESSED_URLS[first_key]['stream'] = self.video.data
out_queue_put(PROCESSED_URLS[first_key])
del PROCESSED_URLS[first_key]
UID_PROCESSED += 1
except TypeError as ex:
# If the first_key is null, then skip it and move on.
UID_PROCESSED += 1
class M3U8Process(Thread):
"""
process for managing the list of m3u8 data sections.
Includes managing the processing queue and providing
the M3U8Queue with what to process.
"""
def __init__(self, _config, _plugins, _channel_dict):
global HTTP_TIMEOUT
global HTTP_RETRIES
global PARALLEL_DOWNLOADS
Thread.__init__(self)
self.logger = logging.getLogger(__name__ + str(threading.get_ident()))
self.config = _config
self.channel_dict = _channel_dict
if _channel_dict['json'].get('Header') is None:
self.header = {'User-agent': utils.DEFAULT_USER_AGENT}
else:
self.header = _channel_dict['json']['Header']
if _channel_dict['json'].get('use_date_on_m3u8_key') is None:
self.use_date_on_key = True
else:
self.use_date_on_key = _channel_dict['json']['use_date_on_m3u8_key']
self.ch_uid = _channel_dict['uid']
self.is_starting = True
self.last_refresh = time.time()
self.plugins = _plugins
HTTP_TIMEOUT = self.config[_channel_dict['namespace'].lower()]['stream-g_http_timeout']
HTTP_RETRIES = self.config[_channel_dict['namespace'].lower()]['stream-g_http_retries']
PARALLEL_DOWNLOADS = self.config[_channel_dict['namespace'].lower()]['stream-g_concurrent_downloads']
self.config_section = utils.instance_config_section(_channel_dict['namespace'], _channel_dict['instance'])
self.use_full_duplicate_checking = self.config[self.config_section]['player-enable_full_duplicate_checking']
self.use_pathonly_checking = self.config[self.config_section].get('player-enable_pathonly_checking')
self.is_running = True
self.duration = 6
self.m3u8_q = M3U8Queue(_config, _channel_dict)
time.sleep(0.1)
self.file_filter = None
self.start()
def run(self):
global IS_VOD
global IN_QUEUE
global OUT_QUEUE
global TERMINATE_REQUESTED
self.stream_uri = self.get_stream_uri()
if not self.stream_uri:
self.logger.warning('Unknown Channel {}'.format(self.ch_uid))
out_queue_put({'uri': 'terminate',
'data': None,
'stream': None,
'atsc': None})
time.sleep(0.01)
self.terminate()
self.m3u8_q.join()
TERMINATE_REQUESTED = True
self.logger.debug('1 M3U8Process terminated {}'.format(os.getpid()))
return
else:
out_queue_put({'uri': 'running',
'data': None,
'stream': None,
'atsc': None})
time.sleep(0.01)
try:
self.logger.debug('M3U8: {} {}'.format(self.stream_uri, os.getpid()))
if self.config[self.config_section]['player-enable_url_filter']:
stream_filter = self.config[self.config_section]['player-url_filter']
if stream_filter is not None:
self.file_filter = re.compile(stream_filter)
else:
self.logger.warning('[{}]][player-enable_url_filter]'
' enabled but [player-url_filter] not set'
.format(self.config_section))
count = 2
while not TERMINATE_REQUESTED and count > 0:
added = 0
removed = 0
self.logger.debug('Reloading m3u8 stream queue {}'.format(os.getpid()))
playlist = self.get_m3u8_data(self.stream_uri, 2)
if playlist is None:
self.logger.debug('M3U Playlist is None, retrying')
self.sleep(self.duration+0.5)
count = count - 1
continue
count = 2
if playlist.playlist_type == 'vod' or self.config[self.config_section]['player-play_all_segments']:
if not IS_VOD:
self.logger.debug('Setting stream type to VOD {}'.format(os.getpid()))
IS_VOD = True
elif IS_VOD:
self.logger.debug('Setting stream type to non-VOD {}'.format(os.getpid()))
IS_VOD = False
removed += self.remove_from_stream_queue(playlist)
added += self.add_to_stream_queue(playlist)
if self.plugins.plugins[self.channel_dict['namespace']].plugin_obj \
.is_time_to_refresh_ext(self.last_refresh, self.channel_dict['instance']):
self.stream_uri = self.get_stream_uri()
self.logger.debug('M3U8: {} {}'
.format(self.stream_uri, os.getpid()))
self.last_refresh = time.time()
time.sleep(0.3)
elif self.duration > 0.5:
self.sleep(self.duration+0.5)
except Exception as ex:
self.logger.exception('{}'.format(
'UNEXPECTED EXCEPTION M3U8Process='))
self.terminate()
# wait for m3u8_q to finish so it can cleanup ffmpeg
self.m3u8_q.join()
TERMINATE_REQUESTED = True
self.logger.debug('M3U8Process terminated {}'.format(os.getpid()))
def sleep(self, _time):
global TERMINATE_REQUESTED
start_ttw = time.time()
for i in range(round(_time * 5)):
if not TERMINATE_REQUESTED:
time.sleep(self.duration * 0.2)
delta_ttw = time.time() - start_ttw
if delta_ttw > _time:
break
def terminate(self):
global STREAM_QUEUE
try:
STREAM_QUEUE.put({'uri_dt': 'terminate'})
time.sleep(0.01)
except ValueError as ex:
pass
def get_stream_uri(self):
return self.plugins.plugins[self.channel_dict['namespace']] \
.plugin_obj.get_channel_uri_ext(self.channel_dict['uid'], self.channel_dict['instance'])
@handle_url_except()
def get_m3u8_data(self, _uri, _retries):
# it sticks here. Need to find a work around for the socket.timeout per process
global MAINTAIN_HTTP_SESSION
if not MAINTAIN_HTTP_SESSION:
M3U8Queue.http_session.close()
time.sleep(0.01)
M3U8Queue.http_session = requests.session()
return m3u8.load(_uri, headers=self.header, http_session=M3U8Queue.http_session)
def segment_date_time(self, _segment):
if _segment:
return None
if _segment.current_program_date_time:
return None
return _segment.current_program_date_time.replace(microsecond=0)
def add_to_stream_queue(self, _playlist):
global PLAY_LIST
global STREAM_QUEUE
global TERMINATE_REQUESTED
total_added = 0
if _playlist.keys != [None]:
keys = [{"uri": key.absolute_uri, "method": key.method, "iv": key.iv}
for key in _playlist.keys if key]
if len(keys) != len(_playlist.segments):
keys = [{"uri": keys[0]['uri'], "method": keys[0]['method'], "iv": keys[0]['iv']}
for i in range(0, len(_playlist.segments))]
else:
keys = [None for i in range(0, len(_playlist.segments))]
num_segments = len(_playlist.segments)
if self.is_starting and not self.config[self.config_section]['player-play_all_segments']:
seg_to_play = self.config[self.config_section]['player-segments_to_play']
if _playlist.playlist_type == 'vod':
seg_to_play = num_segments
elif seg_to_play > num_segments:
seg_to_play = num_segments
skipped_seg = num_segments - seg_to_play
# total_added += self.add_segment(_playlist.segments[0], keys[0])
for m3u8_segment, key in zip(_playlist.segments[0:skipped_seg], keys[0:skipped_seg]):
total_added += self.add_segment(m3u8_segment, key, _default_played=True)
for i in range(skipped_seg, num_segments):
total_added += self.add_segment(
_playlist.segments[i], keys[i])
self.is_starting = False
else:
key_list = list(PLAY_LIST.keys())
if len(key_list) == 0:
i = 0
else:
last_key = list(PLAY_LIST.keys())[-1]
i = 0
for index, segment in enumerate(reversed(_playlist.segments)):
if self.use_full_duplicate_checking:
uri = segment.absolute_uri
elif self.use_pathonly_checking:
uri = urllib.parse.urlparse(segment.absolute_uri).path
else:
uri = segment.get_path_from_uri()
dt = self.segment_date_time(segment)
if self.use_date_on_key:
uri_dt = (uri, dt)
else:
uri_dt = (uri, 0)
if last_key == uri_dt:
i = num_segments - index
for m3u8_segment, key in zip(
_playlist.segments[i:num_segments], keys[i:num_segments]):
added = self.add_segment(m3u8_segment, key)
total_added += added
if added == 0 or TERMINATE_REQUESTED:
break
time.sleep(0.1)
return total_added
def add_segment(self, _segment, _key, _default_played=False):
global TERMINATE_REQUESTED
self.set_cue_status(_segment)
if self.use_full_duplicate_checking:
uri = _segment.absolute_uri
elif self.use_pathonly_checking:
uri = urllib.parse.urlparse(_segment.absolute_uri).path
else:
uri = _segment.get_path_from_uri()
uri_full = _segment.absolute_uri
dt = self.segment_date_time(_segment)
if self.use_date_on_key:
uri_dt = (uri, dt)
else:
uri_dt = (uri, 0)
if uri_dt not in PLAY_LIST.keys():
played = _default_played
filtered = False
cue_status = self.set_cue_status(_segment)
if self.file_filter is not None:
m = self.file_filter.match(urllib.parse.unquote(uri_full))
if m:
filtered = True
PLAY_LIST[uri_dt] = {
'uid': self.channel_dict['uid'],
'uri': uri_full,
'played': played,
'filtered': filtered,
'duration': _segment.duration,
'cue': cue_status,
'key': _key
}
if _segment.duration > 0:
# use geometric averaging of 4 items
self.duration = (self.duration*3 + _segment.duration)/4
try:
if not played and not TERMINATE_REQUESTED:
self.logger.debug('Added {} to play queue {}'
.format(uri_full, os.getpid()))
STREAM_QUEUE.put({'uri_dt': uri_dt,
'data': PLAY_LIST[uri_dt]})
return 1
if _default_played:
self.logger.debug('Skipping {} {} {}'
.format(uri_full, os.getpid(), _segment.program_date_time))
except ValueError as ex:
# queue is closed, terminating
pass
else:
self.logger.warning('DUPLICATE FOUND {}'.format(uri_dt))
return 0
def remove_from_stream_queue(self, _playlist):
global PLAY_LIST
total_removed = 0
if _playlist.discontinuity_sequence is not None:
disc_index = 0
total_index = len(_playlist.segments)
url_list = [key[0] for key in PLAY_LIST]
for i, segment in enumerate(reversed(_playlist.segments)):
if segment.discontinuity:
disc_index = total_index - i
break
for segment in _playlist.segments[disc_index:total_index]:
if self.use_full_duplicate_checking:
s_uri = segment.absolute_uri
elif self.use_pathonly_checking:
s_uri = urllib.parse.urlparse(segment.absolute_uri).path
else:
s_uri = segment.get_path_from_uri()
s_dt = self.segment_date_time(segment)
if self.use_date_on_key:
s_key = (s_uri, s_dt)
else:
s_key = (s_uri, 0)
if s_key in PLAY_LIST.keys():
continue
else:
try:
i = url_list.index(s_uri)
PLAY_LIST = utils.rename_dict_key(list(PLAY_LIST.keys())[i], s_key, PLAY_LIST)
except ValueError as ex:
# not in list
pass
for segment_key in list(PLAY_LIST.keys()):
is_found = False
for segment_m3u8 in _playlist.segments:
if self.use_full_duplicate_checking:
s_uri = segment_m3u8.absolute_uri
elif self.use_pathonly_checking:
s_uri = urllib.parse.urlparse(segment_m3u8.absolute_uri).path
else:
s_uri = segment_m3u8.get_path_from_uri()
s_dt = self.segment_date_time(segment_m3u8)
if self.use_date_on_key:
s_key = (s_uri, s_dt)
else:
s_key = (s_uri, 0)
if segment_key == s_key:
is_found = True
break
if not is_found:
if PLAY_LIST[segment_key]['played']:
del PLAY_LIST[segment_key]
total_removed += 1
self.logger.debug('Removed {} from play queue {}'
.format(segment_key[0], os.getpid()))
continue
else:
break
return total_removed
def set_cue_status(self, _segment):
if _segment.cue_out_start:
return 'out'
elif _segment.cue_in:
return 'in'
else:
return None
def clear_q(q):
try:
while True:
q.get_nowait()
except (Empty, ValueError, EOFError) as ex:
pass
def clear_queues():
# closing a multiprocessing queue with 'close' without emptying
# it will prevent a process dependant on that queue
# from terminating and fulfilling a 'join' if there was an entry in the queue
# so we need to proactivley clear all queue entries instead of closing the queues
global STREAM_QUEUE
global OUT_QUEUE
global IN_QUEUE
clear_q(OUT_QUEUE)
clear_q(STREAM_QUEUE)
clear_q(IN_QUEUE)
def out_queue_put(data_dict):
global OUT_QUEUE
logger = logging.getLogger(__name__)
for t in OUT_QUEUE_LIST:
data_dict['thread_id'] = t
OUT_QUEUE.put(data_dict)
time.sleep(0.01)
def start(_config, _plugins, _m3u8_queue, _data_queue, _channel_dict, extra=None):
"""
All items in this process must handle a socket timeout of 5.0
"""
global IN_QUEUE
global STREAM_QUEUE
global OUT_QUEUE
global TERMINATE_REQUESTED
logger = None
try:
utils.logging_setup(_plugins.config_obj.data)
logger = logging.getLogger(__name__)
socket.setdefaulttimeout(5.0)
IN_QUEUE = _m3u8_queue
STREAM_QUEUE = Queue(maxsize=MAX_STREAM_QUEUE_SIZE)
OUT_QUEUE = _data_queue
p_m3u8 = M3U8Process(_config, _plugins, _channel_dict)
while not TERMINATE_REQUESTED:
try:
q_item = IN_QUEUE.get()
if q_item['uri'] == 'terminate':
OUT_QUEUE_LIST.remove(q_item['thread_id'])
if not len(OUT_QUEUE_LIST):
TERMINATE_REQUESTED = True
clear_queues()
else:
clear_q(OUT_QUEUE)
time.sleep(0.01)
# clear queues in case queues are full (eg VOD) with queue.put stmts blocked
# p_m3u8 & m3u8_q then see TERMINATE_REQUESTED and exit including stopping ffmpeg
OUT_QUEUE.put({
'thread_id': q_item['thread_id'],
'uri': 'terminate',
'data': None,
'stream': None,
'atsc': None})
time.sleep(0.01)
if not len(OUT_QUEUE_LIST):
p_m3u8.join()
elif q_item['uri'] == 'status':
if q_item['thread_id'] not in OUT_QUEUE_LIST:
OUT_QUEUE_LIST.append(q_item['thread_id'])
logger.debug('Adding client thread {} to m3u8 queue list'.format(q_item['thread_id']))
STREAM_QUEUE.put({'uri_dt': 'status'})
logger.debug('Sending Status request to stream queue {}'.format(os.getpid()))
time.sleep(0.01)
elif q_item['uri'] == 'restart_http':
logger.debug('HTTP Session restarted {}'.format(os.getpid()))
temp_session = M3U8Queue.http_session
M3U8Queue.http_session = requests.session()
temp_session.close()
temp_session = None
time.sleep(0.01)
else:
logger.debug('UNKNOWN m3u8 queue request {}'.format(q_item['uri']))
except (KeyboardInterrupt, EOFError, TypeError, ValueError) as ex:
TERMINATE_REQUESTED = True
try:
clear_queues()
out_queue_put({
'uri': 'terminate',
'data': None,
'stream': None,
'atsc': None})
time.sleep(0.01)
STREAM_QUEUE.put({'uri_dt': 'terminate'})
time.sleep(0.1)
except (EOFError, TypeError, ValueError) as ex:
pass
logger.debug('4 m3u8_queue process terminated {}'.format(os.getpid()))
sys.exit()
clear_queues()
logger.debug('1 m3u8_queue process terminated {}'.format(os.getpid()))
sys.exit()
except Exception as ex:
logger.exception('{}'.format(
'UNEXPECTED EXCEPTION startup'))
TERMINATE_REQUESTED = True
logger.debug('3 m3u8_queue process terminated {}'.format(os.getpid()))
sys.exit()
except KeyboardInterrupt as ex:
TERMINATE_REQUESTED = True
logger.debug('2 m3u8_queue process terminated {}'.format(os.getpid()))
sys.exit()
|