]> git.sur5r.net Git - minitube/blob - src/videodefinition.cpp
12cfd12c1f0c2e914fff892b049e17ae0cefd4e5
[minitube] / src / videodefinition.cpp
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube 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 3 of the License, or
9 (at your option) any later version.
10
11 Minitube 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 Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #include "videodefinition.h"
22
23 namespace {
24 static const int kEmptyDefinitionCode = -1;
25
26 static const VideoDefinition kEmptyDefinition(QString(), kEmptyDefinitionCode);
27
28 template <typename T, T (VideoDefinition::*Getter)() const>
29 const VideoDefinition &getDefinitionForImpl(T matchValue) {
30     const auto &defs = VideoDefinition::getDefinitions();
31     for (const VideoDefinition &def : defs) {
32         if ((def.*Getter)() == matchValue) return def;
33     }
34     return kEmptyDefinition;
35 }
36 }
37
38 // static
39 const QVector<VideoDefinition> &VideoDefinition::getDefinitions() {
40     static const QVector<VideoDefinition> definitions = {
41             VideoDefinition(QLatin1String("360p"), 18), VideoDefinition(QLatin1String("720p"), 22),
42             VideoDefinition(QLatin1String("1080p"), 37)};
43     return definitions;
44 }
45
46 // static
47 const VideoDefinition &VideoDefinition::forName(const QString &name) {
48     return getDefinitionForImpl<const QString &, &VideoDefinition::getName>(name);
49 }
50
51 // static
52 const VideoDefinition &VideoDefinition::forCode(int code) {
53     return getDefinitionForImpl<int, &VideoDefinition::getCode>(code);
54 }
55
56 VideoDefinition::VideoDefinition(const QString &name, int code) : m_name(name), m_code(code) {}
57
58 bool VideoDefinition::isEmpty() const {
59     return m_code == kEmptyDefinitionCode && m_name.isEmpty();
60 }