summaryrefslogtreecommitdiffstats
path: root/kradio3/src/internetradiostation.cpp
blob: 6bec8d2fa1acfd5f9436235892b7cc8e530a6ce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/***************************************************************************
                          internetradiostation.cpp  -  description
                             -------------------
    begin                : Sat March 29 2003
    copyright            : (C) 2003 by Klas Kalass
    email                : klas@kde.org
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "include/internetradiostation.h"
#include <typeinfo>
#include "include/radiostation-config.h"

/////////////////////////////////////////////////////////////////////////////

const char *StationUrlElement = "url";

static InternetRadioStation  emptyInternetRadioStation(registerStationClass);

/////////////////////////////////////////////////////////////////////////////

InternetRadioStation::InternetRadioStation()
    : RadioStation(),
      m_url()
{
}

InternetRadioStation::InternetRadioStation(const KURL &url)
    : RadioStation(),
      m_url(url)
{
}

InternetRadioStation::InternetRadioStation(const TQString &name,
                                           const TQString &shortName,
                                           const KURL &url)
    : RadioStation(name, shortName),
      m_url(url)
{
}

InternetRadioStation::InternetRadioStation(const InternetRadioStation &s)
    : RadioStation(s),
      m_url(s.m_url)
{
}


InternetRadioStation::InternetRadioStation(RegisterStationClass, const TQString &classname)
    : RadioStation(registerStationClass, !classname.isNull() ? classname : getClassName()),
      m_url()
{
}


/** returns an exact copy of this station*/
RadioStation *InternetRadioStation::copy() const
{
    return new InternetRadioStation(*this);
}

RadioStation *InternetRadioStation::copyNewID() const
{
    RadioStation *x = new InternetRadioStation(*this);
    x->generateNewStationID();
    return x;
}

InternetRadioStation::~InternetRadioStation()
{
}


/*  = 0 : this.url = s.url
    > 0 : this.url > s.url
    < 0 : this.url < s.url
    other class than FrequencyRadioStation: compare typeid(.).name()
*/
int InternetRadioStation::compare(const RadioStation &_s) const
{
    InternetRadioStation const *s = dynamic_cast<InternetRadioStation const*>(&_s);

    if (!s)
        return (typeid(this).name() > typeid(&_s).name()) ? 1 : -1;

    TQString thisurl = m_url.url(-1);    // -1: remove trailing '/'
    TQString thaturl = s->m_url.url(-1);

    // empty urls are never identical
    if (thisurl.length () == 0)
        return -1;
    if (thaturl.length() == 0)
        return 1;

    return thisurl.compare(thaturl);
}



bool InternetRadioStation::isValid() const
{
    // TODO: maybe we need to do more to validate this...
    return !m_url.isEmpty();
}

TQString InternetRadioStation::longName() const
{
    TQString longN = name();
    if (!longN.isEmpty()) {
        longN = i18n("%1, %2").tqarg(longN).tqarg(description());
    } else {
        longN = description();
    }

    return longN;
}


TQString InternetRadioStation::description() const
{
    return m_url.url();
}


bool InternetRadioStation::setProperty(const TQString &pn, const TQString &val)
{
    bool retval = false;
    if (pn == StationUrlElement) {
        m_url = val;
        retval = true;
    } else {
        retval = RadioStation::setProperty(pn, val);
    }
    return retval;
}

TQString InternetRadioStation::getProperty(const TQString &pn) const
{
    if (pn == StationUrlElement) {
        return m_url.url();
    } else {
        return RadioStation::getProperty(pn);
    }
}

TQStringList InternetRadioStation::getPropertyNames() const
{
    TQStringList l = RadioStation::getPropertyNames();
    l.push_back(StationUrlElement);
    return l;
}


RadioStationConfig *InternetRadioStation::createEditor() const
{
    return new UndefinedRadioStationConfig(NULL);
}

bool InternetRadioStation::operator == (const RadioStation &x) const
{
    if (!RadioStation::operator == (x))
        return false;

    InternetRadioStation const *fx = dynamic_cast<InternetRadioStation const*>(&x);
    if (!fx)
        return false;
    return m_url == fx->m_url;
}