ef25dc6424588450690242109a8854b61f0554b8
[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                         add_fonts_from_asset(reel_index, sub->asset());
48                 }
49
50                 for (auto ccap: reel->closed_captions()) {
51                         add_fonts_from_asset(reel_index, ccap->asset());
52                 }
53
54                 ++reel_index;
55         }
56 }
57
58
59 void
60 FontIDAllocator::add_fonts_from_asset(int reel_index, shared_ptr<const dcp::SubtitleAsset> asset)
61 {
62         for (auto const& font: asset->font_data()) {
63                 _map[Font(reel_index, asset->id(), font.first)] = 0;
64         }
65
66         if (asset->font_data().empty()) {
67                 _map[Font(reel_index, asset->id(), "")] = 0;
68         }
69 }
70
71
72 void
73 FontIDAllocator::add_font(int reel_index, string asset_id, string font_id)
74 {
75         _map[Font(reel_index, asset_id, font_id)] = 0;
76 }
77
78
79 void
80 FontIDAllocator::allocate()
81 {
82         /* Last reel index that we have; i.e. the last prefix number that would be used by "old"
83          * font IDs (i.e. ones before this FontIDAllocator was added and used)
84          */
85         auto const last_reel = std::max_element(
86                 _map.begin(),
87                 _map.end(),
88                 [] (std::pair<Font, int> const& a, std::pair<Font, int> const& b) {
89                         return a.first.reel_index < b.first.reel_index;
90                 })->first.reel_index;
91
92         /* Number of times each ID has been used */
93         std::map<string, int> used_count;
94
95         for (auto& font: _map) {
96                 auto const proposed = String::compose("%1_%2", font.first.reel_index, font.first.font_id);
97                 if (used_count.find(proposed) != used_count.end()) {
98                         /* This ID was already used; we need to disambiguate it.  Do so by using
99                          * an ID above last_reel
100                          */
101                         font.second = last_reel + used_count[proposed];
102                         ++used_count[proposed];
103                 } else {
104                         /* This ID was not yet used */
105                         used_count[proposed] = 1;
106                         font.second = font.first.reel_index;
107                 }
108         }
109 }
110
111
112 string
113 FontIDAllocator::font_id(int reel_index, string asset_id, string font_id) const
114 {
115         auto iter = _map.find(Font(reel_index, asset_id, font_id));
116         DCPOMATIC_ASSERT(iter != _map.end());
117         return String::compose("%1_%2", iter->second, font_id);
118 }
119