-
Notifications
You must be signed in to change notification settings - Fork 0
/
formatter.py
662 lines (563 loc) · 32.2 KB
/
formatter.py
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
import copy
import csv
import json
from io import StringIO
from pathlib import Path
from ruamel.yaml import YAML
from typing import Any, cast, TypedDict
from typing_extensions import NotRequired
from isdb_scanner.constants import TransportStreamInfo
from isdb_scanner.constants import TransportStreamInfoList
from isdb_scanner.tuner import ISDBTuner
class BaseFormatter:
"""
フォーマッターの基底クラス
"""
def __init__(self,
save_file_path: Path,
terrestrial_ts_infos: list[TransportStreamInfo],
bs_ts_infos: list[TransportStreamInfo],
cs_ts_infos: list[TransportStreamInfo],
exclude_pay_tv: bool = False,
) -> None:
"""
Args:
save_file_path (Path): 保存先のファイルパス
terrestrial_ts_infos (list[TransportStreamInfo]): スキャン結果の地上波の TS 情報
bs_ts_infos (list[TransportStreamInfo]): スキャン結果の BS の TS 情報
cs_ts_infos (list[TransportStreamInfo]): スキャン結果の CS の TS 情報
exclude_pay_tv (bool): 有料放送 (+ショップチャンネル&QVC) を除外し、地上波と BS 無料放送のみを保存するか
"""
self._save_file_path = save_file_path
self._terrestrial_ts_infos = terrestrial_ts_infos
self._bs_ts_infos = bs_ts_infos
self._cs_ts_infos = cs_ts_infos
self._exclude_pay_tv = exclude_pay_tv
# 与えられた TS 情報から有料放送サービスを除外
## 地上波は実運用上有料放送は存在しないが、念のため除外しておく
if exclude_pay_tv is True:
for terrestrial_ts_info in self._terrestrial_ts_infos:
terrestrial_ts_info.services = [service for service in terrestrial_ts_info.services if service.is_free is True]
for bs_ts_info in self._bs_ts_infos:
bs_ts_info.services = [service for service in bs_ts_info.services if service.is_free is True]
for cs_ts_info in self._cs_ts_infos:
# CS はショップチャンネルと QVC 以外の全サービスが有料放送 (スカパー!) として運用されている上、
# 無料とはいえわざわざ通販チャンネルを見る人がいるとも思えないので全てのサービスを除外する
cs_ts_info.services = []
def format(self) -> str:
"""
フォーマットを実行する (実装はサブクラスで行う)
Returns:
str: フォーマットされた文字列
"""
raise NotImplementedError
def save(self) -> str:
"""
フォーマットを実行し、結果をファイルに保存する
Returns:
str: フォーマットされた文字列
"""
formatted_str = self.format()
with open(self._save_file_path, mode='w', encoding='utf-8') as f:
f.write(formatted_str)
return formatted_str
class JSONFormatter(BaseFormatter):
"""
スキャン解析結果である TS 情報を JSON データとして保存するフォーマッター
"""
def format(self) -> str:
"""
JSON データとしてフォーマットする
Returns:
str: フォーマットされた文字列
"""
# BS のみ、有料放送を除外する場合で、TS 内のサービスが空 (= TS 内に無料放送サービスが存在しない) ならその TS 自体を削除する
# (有料放送を除外する場合は、この時点ですでに各 TS 情報のサービス情報から有料放送が除外されている)
## 正確には有料放送の TS に無料独立データ放送が含まれる場合もあるので (WOWOW など) 、それらも除外してから判定する
## 独立データ放送の service_type は 0xC0 なので、それ以外のサービスが空かどうかで判定する
bs_ts_infos = list(filter((
lambda ts_info: (self._exclude_pay_tv is False) or
(len([service for service in ts_info.services if service.service_type != 0xC0]) > 0)
), copy.deepcopy(self._bs_ts_infos)))
channels_dict = {
'Terrestrial': TransportStreamInfoList(root=self._terrestrial_ts_infos).model_dump(mode='json'),
'BS': TransportStreamInfoList(root=bs_ts_infos).model_dump(mode='json'),
'CS': TransportStreamInfoList(root=self._cs_ts_infos).model_dump(mode='json'),
}
# 有料放送を除外する場合、CS の TS 情報は空になっているはずなので、それを削除する
if self._exclude_pay_tv is True:
channels_dict.pop('CS')
formatted_str = json.dumps(channels_dict, indent=4, ensure_ascii=False)
return formatted_str
class EDCBChSet4TxtFormatter(BaseFormatter):
"""
スキャン解析結果である TS 情報を EDCB の ChSet4.txt (ファイル名に対応する BonDriver で受信可能なチャンネル設定データ) として保存するフォーマッター
初期化時は保存対象の ChSet4.txt に対応する BonDriver の種別 (地上波 or 衛星 or マルチチューナー) に合わせた TS 情報のみを引数に渡すこと
このフォーマッターで生成される ChSet4.txt は BonDriver_mirakc / BonDriver_Mirakurun 専用で、
他 BonDriver では物理チャンネルやチューナー空間の対応を別途変更する必要がある
"""
def format(self) -> str:
"""
EDCB の ChSet4.txt としてフォーマットする
Returns:
str: フォーマットされた文字列
"""
# 各 TS 情報を物理チャンネル昇順でソート
## この時点で処理対象が地上波チューナーなら BS/CS の TS 情報、衛星チューナーなら地上波の TS 情報として空のリストが渡されているはず
terrestrial_ts_infos = sorted(self._terrestrial_ts_infos, key=lambda x: x.physical_channel)
bs_ts_infos = sorted(self._bs_ts_infos, key=lambda x: x.physical_channel)
cs_ts_infos = sorted(self._cs_ts_infos, key=lambda x: x.physical_channel)
# 各トランスポートストリームのサービス情報を service_id 昇順でソート
for ts_info in terrestrial_ts_infos:
ts_info.services = sorted(ts_info.services, key=lambda x: x.service_id)
for ts_info in bs_ts_infos:
ts_info.services = sorted(ts_info.services, key=lambda x: x.service_id)
for ts_info in cs_ts_infos:
ts_info.services = sorted(ts_info.services, key=lambda x: x.service_id)
"""
ChSet4.txt のフォーマット:
ch_name, service_name, network_name, space, ch, network_id, transport_stream_id, service_id, service_type, partial_flag, use_view_flag, remocon_id
ch_name は物理チャンネル名で任意の値でよく、ISDBScanner では物理チャンネル名をそのまま使用する
space (チューナー空間) は BonDriver_mirakc の場合、地上波: 0, BS: 1, CS: 2
ch (物理チャンネルに対応する BonDriver の通し番号) BonDriver_mirakc の場合、地上波・BS・CS それぞれで 0 から通し番号を振る
partial_flag は is_oneseg に対応する (ワンセグ放送の場合は 1 、それ以外は 0)
use_view_flag は service_type が映像サービスの場合は 1 、それ以外は 0
remocon_id は remote_control_key_id に対応する (リモコンキー ID が存在しないチャンネルでは 0)
"""
# ヘッダーなし TSV (CRLF) に変換
## 実際のファイル書き込みは save() メソッドで行うため、ここでは StringIO に書き込む
string_io = StringIO()
writer = csv.writer(string_io, delimiter='\t', lineterminator='\r\n')
for ts_infos in [terrestrial_ts_infos, bs_ts_infos, cs_ts_infos]:
ch = 0 # 地上波・BS・CS ごとにチューナー空間が異なるので、通し番号をリセットする
for ts_info in ts_infos:
# 有料放送を除外する場合で、TS 内のサービスが空 (= TS 内に無料放送サービスが存在しない) ならチャンネル自体を登録しない
# (有料放送を除外する場合は、この時点ですでに各 TS 情報のサービス情報から有料放送が除外されている)
## 正確には有料放送の TS に無料独立データ放送が含まれる場合もあるので (WOWOW など) 、それらも除外してから判定する
## 独立データ放送の service_type は 0xC0 なので、それ以外のサービスが空かどうかで判定する
if self._exclude_pay_tv is True and len([service for service in ts_info.services if service.service_type != 0xC0]) == 0:
continue
for service in ts_info.services:
ch_name_prefix = ''
space = 0
if ts_info.broadcast_type == 'Terrestrial':
# 地上波
ch_name_prefix = 'Terrestrial'
space = 0
elif ts_info.broadcast_type == 'BS':
# BS
ch_name_prefix = 'BS'
space = 1
elif ts_info.broadcast_type == 'CS1' or ts_info.broadcast_type == 'CS2':
# CS
ch_name_prefix = 'CS'
space = 2
ch_name = f'{ch_name_prefix}:{ts_info.physical_channel}'
partial_flag = 1 if service.is_oneseg else 0
use_view_flag = 1 if service.isVideoServiceType() else 0
remocon_id = ts_info.remote_control_key_id if ts_info.remote_control_key_id is not None else 0
writer.writerow([
ch_name,
service.service_name,
ts_info.network_name,
space,
ch,
ts_info.network_id,
ts_info.transport_stream_id,
service.service_id,
service.service_type,
partial_flag,
use_view_flag,
remocon_id,
])
ch += 1 # 0 スタートなので処理完了後にインクリメントする
# StringIO の先頭にシークする
string_io.seek(0)
# メモリ上に保存した TSV を文字列として取得して返す
## EDCB は UTF-8 with BOM でないと受け付けないため、先頭に BOM を付与する
return '\ufeff' + string_io.getvalue()
class EDCBChSet5TxtFormatter(BaseFormatter):
"""
スキャン解析結果である TS 情報を EDCB の ChSet5.txt (EDCB 全体で受信可能なチャンネル設定データ) として保存するフォーマッター
各チューナー (BonDriver) に依存する情報は ChSet4.txt の方に書き込まれる
"""
def format(self) -> str:
"""
EDCB の ChSet5.txt としてフォーマットする
Returns:
str: フォーマットされた文字列
"""
# 地上波・BS・CS の TS 情報を結合し、network_id, transport_stream_id それぞれ昇順でソート
ts_infos = self._terrestrial_ts_infos + self._bs_ts_infos + self._cs_ts_infos
ts_infos = sorted(ts_infos, key=lambda x: (x.network_id, x.transport_stream_id))
# 各トランスポートストリームのサービス情報を service_id 昇順でソート
for ts_info in ts_infos:
ts_info.services = sorted(ts_info.services, key=lambda x: x.service_id)
"""
ChSet5.txt のフォーマット:
service_name, network_name, network_id, transport_stream_id, service_id, service_type, partial_flag, epg_cap_flag, search_flag (未使用)
partial_flag は is_oneseg に対応する (ワンセグ放送の場合は 1 、それ以外は 0)
epg_cap_flag と search_flag (定義のみで未使用) は service_type が映像サービスの場合は 1 、それ以外は 0
"""
# ヘッダーなし TSV (CRLF) に変換
## 実際のファイル書き込みは save() メソッドで行うため、ここでは StringIO に書き込む
string_io = StringIO()
writer = csv.writer(string_io, delimiter='\t', lineterminator='\r\n')
for ts_info in ts_infos:
# 有料放送を除外する場合で、TS 内のサービスが空 (= TS 内に無料放送サービスが存在しない) ならチャンネル自体を登録しない
# (有料放送を除外する場合は、この時点ですでに各 TS 情報のサービス情報から有料放送が除外されている)
## 正確には有料放送の TS に無料独立データ放送が含まれる場合もあるので (WOWOW など) 、それらも除外してから判定する
## 独立データ放送の service_type は 0xC0 なので、それ以外のサービスが空かどうかで判定する
if self._exclude_pay_tv is True and len([service for service in ts_info.services if service.service_type != 0xC0]) == 0:
continue
for service in ts_info.services:
partial_flag = 1 if service.is_oneseg else 0
epg_cap_flag = 1 if service.isVideoServiceType() else 0
search_flag = 1 if service.isVideoServiceType() else 0
writer.writerow([
service.service_name,
ts_info.network_name,
ts_info.network_id,
ts_info.transport_stream_id,
service.service_id,
service.service_type,
partial_flag,
epg_cap_flag,
search_flag,
])
# StringIO の先頭にシークする
string_io.seek(0)
# メモリ上に保存した TSV を文字列として取得して返す
## EDCB は UTF-8 with BOM でないと受け付けないため、先頭に BOM を付与する
return '\ufeff' + string_io.getvalue()
class MirakurunChannel(TypedDict):
name: str
type: str
channel: str
isDisabled: NotRequired[bool]
class MirakurunChannelsYmlFormatter(BaseFormatter):
"""
スキャン解析結果である TS 情報を Mirakurun のチャンネル設定ファイルとして保存するフォーマッター
"""
def __init__(self,
save_file_path: Path,
terrestrial_ts_infos: list[TransportStreamInfo],
bs_ts_infos: list[TransportStreamInfo],
cs_ts_infos: list[TransportStreamInfo],
exclude_pay_tv: bool = False,
recpt1_compatible: bool = False,
) -> None:
"""
Args:
save_file_path (Path): 保存先のファイルパス
terrestrial_ts_infos (list[TransportStreamInfo]): スキャン結果の地上波の TS 情報
bs_ts_infos (list[TransportStreamInfo]): スキャン結果の BS の TS 情報
cs_ts_infos (list[TransportStreamInfo]): スキャン結果の CS の TS 情報
exclude_pay_tv (bool): 有料放送 (+ショップチャンネル&QVC) を除外し、地上波と BS 無料放送のみを保存するか
recpt1_compatible (bool): recpt1 と互換性のある物理チャンネル指定フォーマットで保存するか
"""
self._recpt1_compatible = recpt1_compatible
super().__init__(save_file_path, terrestrial_ts_infos, bs_ts_infos, cs_ts_infos, exclude_pay_tv)
def format(self) -> str:
"""
Mirakurun のチャンネル設定ファイルとしてフォーマットする
Returns:
str: フォーマットされた文字列
"""
# 各 TS 情報を物理チャンネル昇順でソートして結合
## この時点で処理対象が地上波チューナーなら BS/CS の TS 情報、衛星チューナーなら地上波の TS 情報として空のリストが渡されているはず
terrestrial_ts_infos = sorted(self._terrestrial_ts_infos, key=lambda x: x.physical_channel)
bs_ts_infos = sorted(self._bs_ts_infos, key=lambda x: x.physical_channel)
cs_ts_infos = sorted(self._cs_ts_infos, key=lambda x: x.physical_channel)
ts_infos = terrestrial_ts_infos + bs_ts_infos + cs_ts_infos
# Mirakurun のチャンネル設定ファイル用のデータ構造に変換
mirakurun_channels: list[MirakurunChannel] = []
for ts_info in ts_infos:
if ts_info.broadcast_type == 'Terrestrial':
mirakurun_name = ts_info.network_name
mirakurun_type = 'GR'
else:
mirakurun_name = ts_info.physical_channel
mirakurun_type = 'BS' if ts_info.broadcast_type == 'BS' else 'CS'
# 有料放送を除外する場合で、TS 内のサービスが空 (= TS 内に無料放送サービスが存在しない) ならチャンネル自体を登録しない
# (有料放送を除外する場合は、この時点ですでに各 TS 情報のサービス情報から有料放送が除外されている)
## 正確には有料放送の TS に無料独立データ放送が含まれる場合もあるので (WOWOW など) 、それらも除外してから判定する
## 独立データ放送の service_type は 0xC0 なので、それ以外のサービスが空かどうかで判定する
if self._exclude_pay_tv is True and len([service for service in ts_info.services if service.service_type != 0xC0]) == 0:
continue
if self._recpt1_compatible is True:
# recpt1 互換の物理チャンネル指定フォーマット
mirakurun_channel = ts_info.physical_channel_recpt1
else:
# recisdb 互換の物理チャンネル指定フォーマット
mirakurun_channel = ts_info.physical_channel_recisdb
channel: MirakurunChannel = {
'name': mirakurun_name,
'type': mirakurun_type,
'channel': mirakurun_channel,
'isDisabled': False,
}
mirakurun_channels.append(channel)
# YAML に変換
string_io = StringIO()
yaml = YAML()
yaml.preserve_quotes = True
yaml.indent(mapping=2, sequence=4, offset=2)
yaml.dump(mirakurun_channels, string_io)
# StringIO の先頭にシークする
string_io.seek(0)
# メモリ上に保存した YAML を文字列として取得して返す
return string_io.getvalue()
class MirakurunTuner(TypedDict):
name: str
types: list[str]
command: str
decoder: NotRequired[str]
isDisabled: NotRequired[bool]
class MirakurunTunersYmlFormatter(BaseFormatter):
"""
取得したチューナー情報を Mirakurun のチューナー設定ファイルとして保存するフォーマッター
"""
def __init__(self,
save_file_path: Path,
isdbt_tuners: list[ISDBTuner],
isdbs_tuners: list[ISDBTuner],
multi_tuners: list[ISDBTuner],
recpt1_compatible: bool = False,
) -> None:
"""
Args:
save_file_path (Path): 保存先のファイルパス
isdbt_tuners (list[ISDBTuner]): ISDB-T 専用チューナーのリスト
isdbs_tuners (list[ISDBTuner]): ISDB-S 専用チューナーのリスト
multi_tuners (list[ISDBTuner]): ISDB-T/ISDB-S 共用チューナーのリスト
recpt1_compatible (bool): recpt1 と互換性のある物理チャンネル指定フォーマットで保存するか
"""
self._save_file_path = save_file_path
self._isdbt_tuners = isdbt_tuners
self._isdbs_tuners = isdbs_tuners
self._multi_tuners = multi_tuners
self._recpt1_compatible = recpt1_compatible
def format(self) -> str:
"""
Mirakurun のチューナー設定ファイルとしてフォーマットする
Returns:
str: フォーマットされた文字列
"""
def get_tuner_command(device_path: Path) -> str:
if self._recpt1_compatible is True:
return f'recpt1 --device {device_path} <channel> - -'
else:
return f'recisdb tune --device {device_path} --channel <channel> -'
# Mirakurun のチューナー設定ファイル用のデータ構造に変換
mirakurun_tuners: list[MirakurunTuner] = []
for isdbt_tuner in self._isdbt_tuners:
# recpt1 は DVB 版チューナーに非対応なのでスキップ
if self._recpt1_compatible is True and isdbt_tuner.device_type == 'V4L-DVB':
continue
tuner: MirakurunTuner = {
'name': isdbt_tuner.name,
'types': ['GR'],
'command': get_tuner_command(isdbt_tuner.device_path),
}
if self._recpt1_compatible is True:
# recpt1 にも B25 デコード機能はあるが、安定性に難があるらしいので arib-b25-stream-test を使用する
# recisdb は既定で自動的にデコードを行うため、指定する必要はない
tuner['decoder'] = 'arib-b25-stream-test'
tuner['isDisabled'] = False
mirakurun_tuners.append(tuner)
for isdbs_tuner in self._isdbs_tuners:
# recpt1 は DVB 版チューナーに非対応なのでスキップ
if self._recpt1_compatible is True and isdbs_tuner.device_type == 'V4L-DVB':
continue
tuner: MirakurunTuner = {
'name': isdbs_tuner.name,
'types': ['BS', 'CS'],
'command': get_tuner_command(isdbs_tuner.device_path),
}
if self._recpt1_compatible is True:
# recpt1 にも B25 デコード機能はあるが、安定性に難があるらしいので arib-b25-stream-test を使用する
# recisdb は既定で自動的にデコードを行うため、指定する必要はない
tuner['decoder'] = 'arib-b25-stream-test'
tuner['isDisabled'] = False
mirakurun_tuners.append(tuner)
for multi_tuner in self._multi_tuners:
# recpt1 は DVB 版チューナーに非対応なのでスキップ
if self._recpt1_compatible is True and multi_tuner.device_type == 'V4L-DVB':
continue
tuner: MirakurunTuner = {
'name': multi_tuner.name,
'types': ['GR', 'BS', 'CS'],
'command': get_tuner_command(multi_tuner.device_path),
}
if self._recpt1_compatible is True:
# recpt1 にも B25 デコード機能はあるが、安定性に難があるらしいので arib-b25-stream-test を使用する
# recisdb は既定で自動的にデコードを行うため、指定する必要はない
tuner['decoder'] = 'arib-b25-stream-test'
tuner['isDisabled'] = False
mirakurun_tuners.append(tuner)
# YAML に変換
string_io = StringIO()
yaml = YAML()
yaml.preserve_quotes = True
yaml.indent(mapping=2, sequence=4, offset=2)
yaml.dump(mirakurun_tuners, string_io)
# StringIO の先頭にシークする
string_io.seek(0)
# メモリ上に保存した YAML を文字列として取得して返す
return string_io.getvalue()
class MirakcChannel(TypedDict):
name: str
type: str
channel: str
disabled: NotRequired[bool]
class MirakcTuner(TypedDict):
name: str
types: list[str]
command: str # mirakc には decoder の項目がなく、別途 config.yml の filters.decode-filter.command として指定する
disabled: NotRequired[bool]
class MirakcConfigYmlFormatter(BaseFormatter):
"""
取得したチューナー情報とスキャン解析結果である TS 情報を mirakc の設定ファイルとして保存するフォーマッター
"""
def __init__(self,
save_file_path: Path,
isdbt_tuners: list[ISDBTuner],
isdbs_tuners: list[ISDBTuner],
multi_tuners: list[ISDBTuner],
terrestrial_ts_infos: list[TransportStreamInfo],
bs_ts_infos: list[TransportStreamInfo],
cs_ts_infos: list[TransportStreamInfo],
exclude_pay_tv: bool = False,
recpt1_compatible: bool = False,
mirakc_config_template: dict[str, Any] = {
'server': {
'addrs': [
{'http': '0.0.0.0:40772'},
],
},
'epg': {
'cache-dir': '/var/lib/mirakc/epg',
},
'channels': [],
'tuners': [],
},
) -> None:
"""
Args:
save_file_path (Path): 保存先のファイルパス
isdbt_tuners (list[ISDBTuner]): ISDB-T 専用チューナーのリスト
isdbs_tuners (list[ISDBTuner]): ISDB-S 専用チューナーのリスト
multi_tuners (list[ISDBTuner]): ISDB-T/ISDB-S 共用チューナーのリスト
terrestrial_ts_infos (list[TransportStreamInfo]): スキャン結果の地上波の TS 情報
bs_ts_infos (list[TransportStreamInfo]): スキャン結果の BS の TS 情報
cs_ts_infos (list[TransportStreamInfo]): スキャン結果の CS の TS 情報
exclude_pay_tv (bool): 有料放送 (+ショップチャンネル&QVC) を除外し、地上波と BS 無料放送のみを保存するか
recpt1_compatible (bool): recpt1 と互換性のある物理チャンネル指定フォーマットで保存するか
mirakc_config_template (dict[str, Any]): mirakc の設定ファイルのひな形 (channels と tuners は空のリストで初期化されている必要がある)
"""
self._isdbt_tuners = isdbt_tuners
self._isdbs_tuners = isdbs_tuners
self._multi_tuners = multi_tuners
self._recpt1_compatible = recpt1_compatible
super().__init__(save_file_path, terrestrial_ts_infos, bs_ts_infos, cs_ts_infos, exclude_pay_tv)
assert 'channels' in mirakc_config_template and type(mirakc_config_template['channels']) is list
assert 'tuners' in mirakc_config_template and type(mirakc_config_template['tuners']) is list
self._mirakc_config_template = mirakc_config_template
def format(self) -> str:
"""
mirakc の設定ファイルとしてフォーマットする
Returns:
str: フォーマットされた文字列
"""
# ひな形の設定データ
mirakc_config = copy.deepcopy(self._mirakc_config_template) # ひな型が変更されないようにコピーする
# recpt1 にも B25 デコード機能はあるが、安定性に難があるらしいので arib-b25-stream-test を使用する
if self._recpt1_compatible is True:
mirakc_config['filters'] = {
'decode-filter': {
'command': 'arib-b25-stream-test',
},
}
# 各 TS 情報を物理チャンネル昇順でソートして結合
## この時点で処理対象が地上波チューナーなら BS/CS の TS 情報、衛星チューナーなら地上波の TS 情報として空のリストが渡されているはず
terrestrial_ts_infos = sorted(self._terrestrial_ts_infos, key=lambda x: x.physical_channel)
bs_ts_infos = sorted(self._bs_ts_infos, key=lambda x: x.physical_channel)
cs_ts_infos = sorted(self._cs_ts_infos, key=lambda x: x.physical_channel)
ts_infos = terrestrial_ts_infos + bs_ts_infos + cs_ts_infos
# mirakc のチャンネル設定ファイル用のデータ構造に変換
for ts_info in ts_infos:
if ts_info.broadcast_type == 'Terrestrial':
mirakc_name = ts_info.network_name
mirakc_type = 'GR'
else:
mirakc_name = ts_info.physical_channel
mirakc_type = 'BS' if ts_info.broadcast_type == 'BS' else 'CS'
# 有料放送を除外する場合で、TS 内のサービスが空 (= TS 内に無料放送サービスが存在しない) ならチャンネル自体を登録しない
# (有料放送を除外する場合は、この時点ですでに各 TS 情報のサービス情報から有料放送が除外されている)
## 正確には有料放送の TS に無料独立データ放送が含まれる場合もあるので (WOWOW など) 、それらも除外してから判定する
## 独立データ放送の service_type は 0xC0 なので、それ以外のサービスが空かどうかで判定する
if self._exclude_pay_tv is True and len([service for service in ts_info.services if service.service_type != 0xC0]) == 0:
continue
if self._recpt1_compatible is True:
# recpt1 互換の物理チャンネル指定フォーマット
mirakc_channel = ts_info.physical_channel_recpt1
else:
# recisdb 互換の物理チャンネル指定フォーマット
mirakc_channel = ts_info.physical_channel_recisdb
channel: MirakcChannel = {
'name': mirakc_name,
'type': mirakc_type,
'channel': mirakc_channel,
'disabled': False,
}
cast(list[MirakcChannel], mirakc_config['channels']).append(channel)
def get_tuner_command(device_path: Path) -> str:
if self._recpt1_compatible is True:
return f'recpt1 --device {device_path} ' + '{{{channel}}} - -'
else:
return f'recisdb tune --device {device_path} --channel ' + '{{{channel}}} -'
# mirakc のチューナー設定ファイル用のデータ構造に変換
for isdbt_tuner in self._isdbt_tuners:
# recpt1 は DVB 版チューナーに非対応なのでスキップ
if self._recpt1_compatible is True and isdbt_tuner.device_type == 'V4L-DVB':
continue
tuner: MirakcTuner = {
'name': isdbt_tuner.name,
'types': ['GR'],
'command': get_tuner_command(isdbt_tuner.device_path),
'disabled': False,
}
cast(list[MirakcTuner], mirakc_config['tuners']).append(tuner)
for isdbs_tuner in self._isdbs_tuners:
# recpt1 は DVB 版チューナーに非対応なのでスキップ
if self._recpt1_compatible is True and isdbs_tuner.device_type == 'V4L-DVB':
continue
tuner: MirakcTuner = {
'name': isdbs_tuner.name,
'types': ['BS', 'CS'],
'command': get_tuner_command(isdbs_tuner.device_path),
'disabled': False,
}
cast(list[MirakcTuner], mirakc_config['tuners']).append(tuner)
for multi_tuner in self._multi_tuners:
# recpt1 は DVB 版チューナーに非対応なのでスキップ
if self._recpt1_compatible is True and multi_tuner.device_type == 'V4L-DVB':
continue
tuner: MirakcTuner = {
'name': multi_tuner.name,
'types': ['GR', 'BS', 'CS'],
'command': get_tuner_command(multi_tuner.device_path),
'disabled': False,
}
cast(list[MirakcTuner], mirakc_config['tuners']).append(tuner)
# YAML に変換
string_io = StringIO()
yaml = YAML()
yaml.preserve_quotes = True
yaml.indent(mapping=2, sequence=4, offset=2)
yaml.dump(mirakc_config, string_io)
# StringIO の先頭にシークする
string_io.seek(0)
# メモリ上に保存した YAML を文字列として取得して返す
return string_io.getvalue()