libsub
 All Classes Files Functions Variables
collect.h
1 /*
2  Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or
7  (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 
18 */
19 
20 #ifndef LIBSUB_COLLECT_H
21 #define LIBSUB_COLLECT_H
22 
23 #include "subtitle.h"
24 #include "raw_subtitle.h"
25 
26 namespace sub {
27 
31 template <class T>
32 T
33 collect (std::list<RawSubtitle> raw)
34 {
35  raw.sort ();
36 
37  T out;
38 
39  boost::optional<Subtitle> current;
40  for (std::list<RawSubtitle>::const_iterator i = raw.begin (); i != raw.end(); ++i) {
41  if (current && current->same_metadata (*i)) {
42  /* This RawSubtitle can be added to current... */
43  if (!current->lines.empty() && current->lines.back().same_metadata (*i)) {
44  /* ... and indeed to its last line */
45  current->lines.back().blocks.push_back (Block (*i));
46  } else {
47  /* ... as a new line */
48  current->lines.push_back (Line (*i));
49  }
50  } else {
51  /* We must start a new Subtitle */
52  if (current) {
53  out.push_back (current.get ());
54  }
55  current = Subtitle (*i);
56  }
57  }
58 
59  if (current) {
60  out.push_back (current.get ());
61  }
62 
63  return out;
64 }
65 
66 }
67 
68 #endif
Definition: collect.h:26