Merge remote-tracking branch 'origin/main' into v2.17.x
[dcpomatic.git] / src / lib / font_id_allocator.cc
1 /*
2     Copyright (C) 2023 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "compose.hpp"
23 #include "constants.h"
24 #include "dcpomatic_assert.h"
25 #include "font_id_allocator.h"
26 #include <dcp/reel.h>
27 #include <dcp/reel_closed_caption_asset.h>
28 #include <dcp/reel_subtitle_asset.h>
29 #include <dcp/subtitle_asset.h>
30 #include <set>
31 #include <string>
32 #include <vector>
33
34
35 using std::shared_ptr;
36 using std::set;
37 using std::string;
38 using std::vector;
39
40
41 void
42 FontIDAllocator::add_fonts_from_reels(vector<shared_ptr<dcp::Reel>> const& reels)
43 {
44         int reel_index = 0;
45         for (auto reel: reels) {
46                 if (auto sub = reel->main_subtitle()) {
47                         if (sub->asset_ref().resolved()) {
48                                 add_fonts_from_asset(reel_index, sub->asset());
49                         }
50                 }
51
52                 for (auto ccap: reel->closed_captions()) {
53                         if (ccap->asset_ref().resolved()) {
54                                 add_fonts_from_asset(reel_index, ccap->asset());
55                         }
56                 }
57
58                 ++reel_index;
59         }
60 }
61
62
63 void
64 FontIDAllocator::add_fonts_from_asset(int reel_index, shared_ptr<const dcp::SubtitleAsset> asset)
65 {
66         for (auto const& font: asset->font_data()) {
67                 add_font(reel_index, asset->id(), font.first);
68         }
69 }
70
71
72 void
73 FontIDAllocator::add_font(int reel_index, string asset_id, string font_id)
74 {
75         auto font = Font(reel_index, asset_id, font_id);
76         if (!_default_font) {
77                 _default_font = font;
78         }
79         _map[font] = {};
80 }
81
82
83 void
84 FontIDAllocator::allocate()
85 {
86         std::set<string> used_ids;
87
88         for (auto& font: _map) {
89                 auto proposed = font.first.font_id;
90                 int prefix = 0;
91                 while (used_ids.find(proposed) != used_ids.end()) {
92                         proposed = String::compose("%1_%2", prefix++, font.first.font_id);
93                         DCPOMATIC_ASSERT(prefix < 128);
94                 }
95                 font.second = proposed;
96                 used_ids.insert(proposed);
97         }
98 }
99
100
101 string
102 FontIDAllocator::font_id(int reel_index, string asset_id, string font_id) const
103 {
104         auto iter = _map.find(Font(reel_index, asset_id, font_id));
105         if (iter == _map.end()) {
106                 return default_font_id();
107         }
108         return iter->second;
109 }
110
111
112 string
113 FontIDAllocator::default_font_id() const
114 {
115         if (_default_font) {
116                 return font_id(_default_font->reel_index, _default_font->asset_id, _default_font->font_id);
117         }
118
119         return "default";
120 }