OTHER: make promoe compile against rv-split
This commit is contained in:
parent
982660510a
commit
4df3266088
5 changed files with 81 additions and 11 deletions
61
lib/compat.h
Normal file
61
lib/compat.h
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
/**
|
||||||
|
* This file is a part of Esperanza, an XMMS2 Client.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2005-2007 XMMS2 Team
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* This program 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 General Public License for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __COMPAT_H__
|
||||||
|
#define __COMPAT_H__
|
||||||
|
|
||||||
|
#ifdef HAVE_XMMSV
|
||||||
|
#undef HAVE_XMMSV
|
||||||
|
#define HAVE_XMMSV 1
|
||||||
|
#else
|
||||||
|
#include <xmmsc/xmmsc_idnumbers.h>
|
||||||
|
#define HAVE_XMMSV (XMMS_IPC_PROTOCOL_VERSION >= 13)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <QString>
|
||||||
|
#include <QtDebug>
|
||||||
|
|
||||||
|
#if HAVE_XMMSV
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <xmmsc/xmmsc_value.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
inline QString
|
||||||
|
decodeXmmsUrl (const QString &path)
|
||||||
|
{
|
||||||
|
QByteArray p_enc = path.toUtf8 ();
|
||||||
|
#if HAVE_XMMSV
|
||||||
|
// TODO: error checking...
|
||||||
|
xmmsv_t *v_enc = xmmsv_new_string (p_enc.constData ());
|
||||||
|
xmmsv_t *p_dec = xmmsv_decode_url (v_enc);
|
||||||
|
xmmsv_unref (v_enc);
|
||||||
|
const char *p;
|
||||||
|
unsigned int p_len;
|
||||||
|
xmmsv_get_bin (p_dec, reinterpret_cast<const unsigned char **>(&p), &p_len);
|
||||||
|
QString ret = QString::fromUtf8 (p, p_len);
|
||||||
|
xmmsv_unref (p_dec);
|
||||||
|
// Free p?
|
||||||
|
return ret;
|
||||||
|
#else
|
||||||
|
char *p_dec = const_cast<char *> (xmmsc_result_decode_url (NULL, p_enc.constData ()));
|
||||||
|
return QString::fromUtf8 (p_dec);
|
||||||
|
free (p_dec);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
@ -28,6 +28,7 @@ HEADERS += xclient.h \
|
||||||
playlistmodel.h \
|
playlistmodel.h \
|
||||||
xmmsqt4.h \
|
xmmsqt4.h \
|
||||||
sourcepref.h \
|
sourcepref.h \
|
||||||
|
compat.h \
|
||||||
debug.h
|
debug.h
|
||||||
|
|
||||||
QT += network
|
QT += network
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,8 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <xmmsclient/xmmsclient++.h>
|
#include <xmmsclient/xmmsclient++.h>
|
||||||
|
#include "compat.h"
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QHash>
|
#include <QHash>
|
||||||
|
|
@ -32,7 +32,11 @@
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "playlistmodel.h"
|
#include "playlistmodel.h"
|
||||||
|
|
||||||
|
#if !HAVE_XMMSV
|
||||||
#include "sourcepref.h"
|
#include "sourcepref.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <QtDebug>
|
||||||
|
|
||||||
QString
|
QString
|
||||||
XClient::stdToQ (const std::string &str)
|
XClient::stdToQ (const std::string &str)
|
||||||
|
|
@ -222,14 +226,16 @@ XClient::propDictToQHash (const std::string &key,
|
||||||
} else {
|
} else {
|
||||||
QString val;
|
QString val;
|
||||||
if (key == "url") {
|
if (key == "url") {
|
||||||
/* This really is wrong ...*/
|
QString tmp = QString::fromUtf8 (boost::get< std::string >(value).c_str ());
|
||||||
char *c = const_cast<char *>(xmmsc_result_decode_url (NULL, boost::get< std::string >(value).c_str ()));
|
#if 0
|
||||||
val = QString::fromUtf8 (c);
|
val = decodeXmmsUrl (tmp);
|
||||||
val = val.mid (val.lastIndexOf ("/") + 1);
|
#else
|
||||||
|
tmp = decodeXmmsUrl (tmp);
|
||||||
|
val = tmp.mid (tmp.lastIndexOf ("/") + 1);
|
||||||
if (val.isEmpty ()) {
|
if (val.isEmpty ()) {
|
||||||
val = QString::fromUtf8 (c);
|
val = tmp;
|
||||||
}
|
}
|
||||||
free (c);
|
#endif
|
||||||
} else {
|
} else {
|
||||||
val = QString::fromUtf8 (boost::get< std::string > (value).c_str ());
|
val = QString::fromUtf8 (boost::get< std::string > (value).c_str ());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
#define __XCLIENT_H__
|
#define __XCLIENT_H__
|
||||||
|
|
||||||
#include <xmmsclient/xmmsclient++.h>
|
#include <xmmsclient/xmmsclient++.h>
|
||||||
|
#include "compat.h"
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QHash>
|
#include <QHash>
|
||||||
|
|
@ -33,6 +34,10 @@ class XCollection;
|
||||||
class PlaylistModel;
|
class PlaylistModel;
|
||||||
|
|
||||||
#define SOURCEPREF_HACK
|
#define SOURCEPREF_HACK
|
||||||
|
// Doesn't work for XMMSV yet
|
||||||
|
#if HAVE_XMMSV
|
||||||
|
#undef SOURCEPREF_HACK
|
||||||
|
#endif
|
||||||
|
|
||||||
class XClient : public QObject {
|
class XClient : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
|
||||||
|
|
@ -128,11 +128,8 @@ BrowseModel::list_cb (const Xmms::List< Xmms::Dict > &res)
|
||||||
}
|
}
|
||||||
name += QString::fromStdString (d.get<std::string> ("title"));
|
name += QString::fromStdString (d.get<std::string> ("title"));
|
||||||
} else {
|
} else {
|
||||||
const char *tmp;
|
|
||||||
QString tmp2 = path.mid (path.lastIndexOf ("/")+1);
|
QString tmp2 = path.mid (path.lastIndexOf ("/")+1);
|
||||||
tmp = xmmsc_result_decode_url (NULL, tmp2.toAscii ());
|
name = decodeXmmsUrl (tmp2);
|
||||||
name = QString::fromUtf8 (tmp);
|
|
||||||
free ((char *)tmp);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue