]> git.sur5r.net Git - minitube/blob - src/videodefinition.cpp
Imported Upstream version 2.5.1
[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 QList<VideoDefinition>& definitions = VideoDefinition::getDefinitions();
31     const int size = definitions.size();
32     for (int ii = 0; ii < size; ++ii) {
33         const VideoDefinition& def = definitions.at(ii);
34         if ((def.*Getter)() == matchValue)
35             return def;
36     }
37
38     return kEmptyDefinition;
39 }
40 }
41
42 // static
43 const QList<VideoDefinition>& VideoDefinition::getDefinitions() {
44     static QList<VideoDefinition> definitions = QList<VideoDefinition>()
45         << VideoDefinition(QLatin1String("360p"), 18)
46         << VideoDefinition(QLatin1String("720p"), 22)
47         << VideoDefinition(QLatin1String("1080p"), 37);
48     return definitions;
49 }
50
51 // static
52 const VideoDefinition& VideoDefinition::getDefinitionFor(const QString& name) {
53     return getDefinitionForImpl<const QString&, &VideoDefinition::getName>(name);
54 }
55
56 // static
57 const VideoDefinition& VideoDefinition::getDefinitionFor(int code) {
58     return getDefinitionForImpl<int, &VideoDefinition::getCode>(code);
59 }
60
61 VideoDefinition::VideoDefinition(const QString& name, int code) :
62     m_name(name),
63     m_code(code) {
64 }
65
66 VideoDefinition::VideoDefinition(const VideoDefinition& other) :
67     m_name(other.m_name),
68     m_code(other.m_code) {
69 }
70
71 bool VideoDefinition::isEmpty() const {
72     return m_code == kEmptyDefinitionCode && m_name.isEmpty();
73 }