summaryrefslogtreecommitdiffstats
path: root/akode/lib/decoderpluginhandler.cpp
blob: d5dba2e3d0aebb7e4cec9265b97cf74b76ab1c1d (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
/*  aKode: DecoderPluginHandler

    Copyright (C) 2004 Allan Sandfeld Jensen <kde@carewolf.com>

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

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/

#include "akodelib.h"
#include "decoder.h"
#include "wav_decoder.h"

namespace aKode {

list<string> DecoderPluginHandler::listDecoderPlugins() {
    const list<string> plugin_list = PluginHandler::listPlugins();
    list<string> decoder_list;
    for (list<string>::const_iterator i = plugin_list.begin(); i != plugin_list.end(); i++)
        if (i->length() > 8 && i->substr(i->length()-8,8) == "_decoder")
            decoder_list.push_back(i->substr(0,i->length()-8));
    return decoder_list;
}

DecoderPluginHandler::DecoderPluginHandler(const string lib) : decoder_plugin(0)
{
    if (lib.size() > 0)
        load(lib);
}

bool DecoderPluginHandler::load(const string name)
{
    if (library_loaded) return false;

    bool res = PluginHandler::load(name+"_decoder");
    if (res)
        decoder_plugin = (DecoderPlugin*)loadPlugin(name+"_decoder");
    else
        if (name == "wav") {
            decoder_plugin = &wav_decoder;
            res = true;
        } else
            return false;

    return res;
}

void DecoderPluginHandler::unload() {
    decoder_plugin = 0;
    PluginHandler::unload();
}

Decoder* DecoderPluginHandler::openDecoder(File *src) {
    if (decoder_plugin)
        return decoder_plugin->openDecoder(src);
    else
        return 0;
}

} //namespace