Merge branch 'master' of https://code.google.com/r/asfa194-clementineremote into remote
This commit is contained in:
commit
22322593aa
|
@ -16,6 +16,7 @@ enum MsgType {
|
|||
STOP = 23;
|
||||
NEXT = 24;
|
||||
PREV = 25;
|
||||
TOOGLE_SHUFFLE = 26;
|
||||
|
||||
// Messages send from server to client
|
||||
INFOS = 40;
|
||||
|
@ -33,13 +34,14 @@ enum EngineState {
|
|||
}
|
||||
|
||||
message Message {
|
||||
required MsgType msgType = 1;
|
||||
required int32 version = 1;
|
||||
required MsgType msgType = 2;
|
||||
|
||||
optional EngineState state = 2;
|
||||
optional ClementineInfos infos = 3;
|
||||
optional SongMetadata currentSong = 4;
|
||||
optional int32 volume = 5;
|
||||
repeated Playlist playlists = 6;
|
||||
optional EngineState state = 3;
|
||||
optional ClementineInfos infos = 4;
|
||||
optional SongMetadata currentSong = 5;
|
||||
optional int32 volume = 6;
|
||||
repeated Playlist playlists = 7;
|
||||
}
|
||||
|
||||
message ClementineInfos {
|
||||
|
|
|
@ -218,6 +218,7 @@ set(SOURCES
|
|||
networkremote/networkremote.cpp
|
||||
networkremote/incomingdataparser.cpp
|
||||
networkremote/outgoingdatacreator.cpp
|
||||
networkremote/remoteclient.cpp
|
||||
|
||||
playlist/dynamicplaylistcontrols.cpp
|
||||
playlist/playlist.cpp
|
||||
|
@ -496,6 +497,7 @@ set(HEADERS
|
|||
networkremote/networkremote.h
|
||||
networkremote/incomingdataparser.h
|
||||
networkremote/outgoingdatacreator.h
|
||||
networkremote/remoteclient.h
|
||||
|
||||
playlist/dynamicplaylistcontrols.h
|
||||
playlist/playlist.h
|
||||
|
|
|
@ -43,6 +43,8 @@ IncomingDataParser::IncomingDataParser(Application* app)
|
|||
app_->player(), SLOT(PlayAt(int,Engine::TrackChangeFlags,bool)));
|
||||
connect(this, SIGNAL(SetActivePlaylist(int)),
|
||||
app_->playlist_manager(), SLOT(SetActivePlaylist(int)));
|
||||
connect(this, SIGNAL(ShuffleCurrent()),
|
||||
app_->playlist_manager(), SLOT(ShuffleCurrent()));
|
||||
}
|
||||
|
||||
IncomingDataParser::~IncomingDataParser() {
|
||||
|
@ -52,13 +54,12 @@ bool IncomingDataParser::close_connection() {
|
|||
return close_connection_;
|
||||
}
|
||||
|
||||
void IncomingDataParser::Parse(const QByteArray& b64_data) {
|
||||
void IncomingDataParser::Parse(const QByteArray& data) {
|
||||
close_connection_ = false;
|
||||
QByteArray pb_data = QByteArray::fromBase64(b64_data);
|
||||
|
||||
// Parse the incoming data
|
||||
pb::remote::Message msg;
|
||||
if (!msg.ParseFromArray(pb_data.constData(), pb_data.size())) {
|
||||
if (!msg.ParseFromArray(data.constData(), data.size())) {
|
||||
qLog(Info) << "Couldn't parse data";
|
||||
return;
|
||||
}
|
||||
|
@ -90,6 +91,8 @@ void IncomingDataParser::Parse(const QByteArray& b64_data) {
|
|||
break;
|
||||
case pb::remote::CHANGE_SONG: ChangeSong(&msg);
|
||||
break;
|
||||
case pb::remote::TOOGLE_SHUFFLE: emit ShuffleCurrent();
|
||||
break;
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,9 +11,11 @@ public:
|
|||
IncomingDataParser(Application* app);
|
||||
~IncomingDataParser();
|
||||
|
||||
void Parse(const QByteArray& pb_data);
|
||||
bool close_connection();
|
||||
|
||||
public slots:
|
||||
void Parse(const QByteArray& pb_data);
|
||||
|
||||
signals:
|
||||
void SendClementineInfos();
|
||||
void SendFirstData();
|
||||
|
@ -29,6 +31,7 @@ signals:
|
|||
void SetVolume(int volume);
|
||||
void PlayAt(int i, Engine::TrackChangeFlags change, bool reshuffle);
|
||||
void SetActivePlaylist(int id);
|
||||
void ShuffleCurrent();
|
||||
|
||||
private:
|
||||
Application* app_;
|
||||
|
|
|
@ -26,15 +26,17 @@
|
|||
|
||||
const char* NetworkRemote::kSettingsGroup = "NetworkRemote";
|
||||
const int NetworkRemote::kDefaultServerPort = 5500;
|
||||
const int NetworkRemote::kProtocolBufferVersion = 1;
|
||||
|
||||
NetworkRemote::NetworkRemote(Application* app)
|
||||
: app_(app)
|
||||
{
|
||||
signals_connected_ = false;
|
||||
}
|
||||
|
||||
|
||||
NetworkRemote::~NetworkRemote() {
|
||||
server_->close();
|
||||
StopServer();
|
||||
delete incoming_data_parser_;
|
||||
delete outgoing_data_creator_;
|
||||
}
|
||||
|
@ -45,6 +47,14 @@ void NetworkRemote::ReadSettings() {
|
|||
s.beginGroup(NetworkRemote::kSettingsGroup);
|
||||
use_remote_ = s.value("use_remote").toBool();
|
||||
port_ = s.value("port").toInt();
|
||||
|
||||
// Use only non public ips must be true be default
|
||||
if (s.contains("only_non_public_ip")) {
|
||||
only_non_public_ip_ = s.value("only_non_public_ip").toBool();
|
||||
} else {
|
||||
only_non_public_ip_ = true;
|
||||
}
|
||||
|
||||
if (port_ == 0) {
|
||||
port_ = kDefaultServerPort;
|
||||
}
|
||||
|
@ -53,9 +63,12 @@ void NetworkRemote::ReadSettings() {
|
|||
|
||||
void NetworkRemote::SetupServer() {
|
||||
server_ = new QTcpServer();
|
||||
server_ipv6_ = new QTcpServer();
|
||||
incoming_data_parser_ = new IncomingDataParser(app_);
|
||||
outgoing_data_creator_ = new OutgoingDataCreator(app_);
|
||||
|
||||
outgoing_data_creator_->SetClients(&clients_);
|
||||
|
||||
connect(app_->current_art_loader(),
|
||||
SIGNAL(ArtLoaded(const Song&, const QString&, const QImage&)),
|
||||
outgoing_data_creator_,
|
||||
|
@ -76,11 +89,11 @@ void NetworkRemote::StartServer() {
|
|||
|
||||
qLog(Info) << "Starting network remote";
|
||||
|
||||
clients_ = NULL;
|
||||
|
||||
connect(server_, SIGNAL(newConnection()), this, SLOT(AcceptConnection()));
|
||||
connect(server_ipv6_, SIGNAL(newConnection()), this, SLOT(AcceptConnection()));
|
||||
|
||||
server_->listen(QHostAddress::Any, port_);
|
||||
server_ipv6_->listen(QHostAddress::AnyIPv6, port_);
|
||||
|
||||
qLog(Info) << "Listening on port " << port_;
|
||||
}
|
||||
|
@ -88,6 +101,8 @@ void NetworkRemote::StartServer() {
|
|||
void NetworkRemote::StopServer() {
|
||||
if (server_->isListening()) {
|
||||
server_->close();
|
||||
server_ipv6_->close();
|
||||
clients_.clear();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -97,10 +112,8 @@ void NetworkRemote::ReloadSettings() {
|
|||
}
|
||||
|
||||
void NetworkRemote::AcceptConnection() {
|
||||
if (!clients_) {
|
||||
// Create a new QList with clients
|
||||
clients_ = new QList<QTcpSocket*>();
|
||||
outgoing_data_creator_->SetClients(clients_);
|
||||
if (!signals_connected_) {
|
||||
signals_connected_ = true;
|
||||
|
||||
// Setting up the signals, but only once
|
||||
connect(incoming_data_parser_, SIGNAL(SendClementineInfos()),
|
||||
|
@ -122,23 +135,50 @@ void NetworkRemote::AcceptConnection() {
|
|||
connect(app_->player()->engine(), SIGNAL(StateChanged(Engine::State)),
|
||||
outgoing_data_creator_, SLOT(StateChanged(Engine::State)));
|
||||
}
|
||||
QTcpSocket* client = server_->nextPendingConnection();
|
||||
|
||||
clients_->push_back(client);
|
||||
if (server_->hasPendingConnections()) {
|
||||
QTcpSocket* client_socket = server_->nextPendingConnection();
|
||||
// Check if our ip is in private scope
|
||||
if (only_non_public_ip_
|
||||
&& !IpIsPrivate(client_socket->peerAddress().toIPv4Address())) {
|
||||
qLog(Info) << "Got a connection from public ip" <<
|
||||
client_socket->peerAddress().toString();
|
||||
} else {
|
||||
CreateRemoteClient(client_socket);
|
||||
// TODO: Check private ips for ipv6
|
||||
}
|
||||
|
||||
// Connect to the slot IncomingData when receiving data
|
||||
connect(client, SIGNAL(readyRead()), this, SLOT(IncomingData()));
|
||||
}
|
||||
|
||||
void NetworkRemote::IncomingData() {
|
||||
QTcpSocket* client = static_cast<QTcpSocket*>(QObject::sender());
|
||||
|
||||
// Now read all the data from the socket
|
||||
QByteArray data;
|
||||
data = client->readAll();
|
||||
incoming_data_parser_->Parse(data);
|
||||
|
||||
if (incoming_data_parser_->close_connection()) {
|
||||
client->close();
|
||||
} else {
|
||||
// No checks on ipv6
|
||||
CreateRemoteClient(server_ipv6_->nextPendingConnection());
|
||||
}
|
||||
}
|
||||
|
||||
bool NetworkRemote::IpIsPrivate(int ip) {
|
||||
int private_local = QHostAddress("127.0.0.1").toIPv4Address();
|
||||
int private_a = QHostAddress("10.0.0.0").toIPv4Address();
|
||||
int private_b = QHostAddress("172.16.0.0").toIPv4Address();
|
||||
int private_c = QHostAddress("192.168.0.0").toIPv4Address();
|
||||
|
||||
// Check if we have a private ip address
|
||||
if (ip == private_local
|
||||
|| (ip >= private_a && ip < private_a + 16777216)
|
||||
|| (ip >= private_b && ip < private_b + 1048576)
|
||||
|| (ip >= private_c && ip < private_c + 65536)) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
void NetworkRemote::CreateRemoteClient(QTcpSocket *client_socket) {
|
||||
if (client_socket) {
|
||||
// Add the client to the list
|
||||
RemoteClient* client = new RemoteClient(app_, client_socket);
|
||||
clients_.push_back(client);
|
||||
|
||||
// Connect the signal to parse data
|
||||
connect(client, SIGNAL(Parse(QByteArray)),
|
||||
incoming_data_parser_, SLOT(Parse(QByteArray)));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef NETWORKREMOTE_H
|
||||
#define NETWORKREMOTE_H
|
||||
|
||||
#include <QtNetwork>
|
||||
#include <QTcpServer>
|
||||
#include <QTcpSocket>
|
||||
|
||||
|
@ -9,12 +8,14 @@
|
|||
#include "core/application.h"
|
||||
#include "incomingdataparser.h"
|
||||
#include "outgoingdatacreator.h"
|
||||
#include "remoteclient.h"
|
||||
|
||||
class NetworkRemote : public QThread {
|
||||
Q_OBJECT
|
||||
public:
|
||||
static const char* kSettingsGroup;
|
||||
static const int kDefaultServerPort;
|
||||
static const int kProtocolBufferVersion;
|
||||
|
||||
NetworkRemote(Application* app);
|
||||
~NetworkRemote();
|
||||
|
@ -24,19 +25,24 @@ public slots:
|
|||
void StartServer();
|
||||
void ReloadSettings();
|
||||
void AcceptConnection();
|
||||
void IncomingData();
|
||||
|
||||
private:
|
||||
QTcpServer* server_;
|
||||
QList<QTcpSocket*>* clients_;
|
||||
QTcpServer* server_ipv6_;
|
||||
IncomingDataParser* incoming_data_parser_;
|
||||
OutgoingDataCreator* outgoing_data_creator_;
|
||||
int port_;
|
||||
bool use_remote_;
|
||||
bool only_non_public_ip_;
|
||||
bool signals_connected_;
|
||||
Application* app_;
|
||||
|
||||
QList<RemoteClient*> clients_;
|
||||
|
||||
void StopServer();
|
||||
void ReadSettings();
|
||||
void CreateRemoteClient(QTcpSocket* client_socket);
|
||||
bool IpIsPrivate(int ip);
|
||||
};
|
||||
|
||||
#endif // NETWORKREMOTE_H
|
||||
|
|
|
@ -16,11 +16,11 @@
|
|||
*/
|
||||
|
||||
#include "outgoingdatacreator.h"
|
||||
#include "networkremote.h"
|
||||
#include "core/logging.h"
|
||||
|
||||
OutgoingDataCreator::OutgoingDataCreator(Application* app)
|
||||
: app_(app),
|
||||
clients_(NULL)
|
||||
: app_(app)
|
||||
{
|
||||
// Create Keep Alive Timer
|
||||
keep_alive_timer_ = new QTimer(this);
|
||||
|
@ -31,7 +31,7 @@ OutgoingDataCreator::OutgoingDataCreator(Application* app)
|
|||
OutgoingDataCreator::~OutgoingDataCreator() {
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SetClients(QList<QTcpSocket*>* clients) {
|
||||
void OutgoingDataCreator::SetClients(QList<RemoteClient*>* clients) {
|
||||
clients_ = clients;
|
||||
// After we got some clients, start the keep alive timer
|
||||
// Default: every 10 seconds
|
||||
|
@ -40,21 +40,21 @@ void OutgoingDataCreator::SetClients(QList<QTcpSocket*>* clients) {
|
|||
|
||||
void OutgoingDataCreator::SendDataToClients(pb::remote::Message* msg) {
|
||||
// Check if we have clients to send data to
|
||||
if (!clients_ || clients_->size() == 0) {
|
||||
if (clients_->empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
QTcpSocket* sock;
|
||||
foreach(sock, *clients_) {
|
||||
// Add the Version number
|
||||
msg->set_version(NetworkRemote::kProtocolBufferVersion);
|
||||
|
||||
RemoteClient* client;
|
||||
foreach(client, *clients_) {
|
||||
// Check if the client is still active
|
||||
if (sock->state() == QTcpSocket::ConnectedState) {
|
||||
std::string data = msg->SerializeAsString();
|
||||
QByteArray b64_data = QByteArray::fromRawData(data.data(), data.length());
|
||||
sock->write(b64_data.toBase64());
|
||||
sock->write("\n");
|
||||
sock->flush();
|
||||
if (client->State() == QTcpSocket::ConnectedState) {
|
||||
client->SendData(msg);
|
||||
} else {
|
||||
clients_->removeAt(clients_->indexOf(sock));
|
||||
clients_->removeAt(clients_->indexOf(client));
|
||||
delete client;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -137,7 +137,7 @@ void OutgoingDataCreator::CurrentSongChanged(const Song& song, const QString& ur
|
|||
current_uri_ = uri;
|
||||
current_image_ = img;
|
||||
|
||||
if (clients_) {
|
||||
if (!clients_->empty()) {
|
||||
// Create the message
|
||||
pb::remote::Message msg;
|
||||
msg.set_msgtype(pb::remote::CURRENT_METAINFOS);
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#include "playlist/playlist.h"
|
||||
#include "playlist/playlistmanager.h"
|
||||
#include "remotecontrolmessages.pb.h"
|
||||
#include "remoteclient.h"
|
||||
|
||||
class OutgoingDataCreator : public QObject {
|
||||
Q_OBJECT
|
||||
|
@ -20,7 +21,7 @@ public:
|
|||
OutgoingDataCreator(Application* app);
|
||||
~OutgoingDataCreator();
|
||||
|
||||
void SetClients(QList<QTcpSocket*>* clients);
|
||||
void SetClients(QList<RemoteClient*>* clients);
|
||||
|
||||
public slots:
|
||||
void SendClementineInfos();
|
||||
|
@ -36,7 +37,7 @@ public slots:
|
|||
|
||||
private:
|
||||
Application* app_;
|
||||
QList<QTcpSocket*>* clients_;
|
||||
QList<RemoteClient*>* clients_;
|
||||
Song current_song_;
|
||||
QString current_uri_;
|
||||
QImage current_image_;
|
||||
|
|
|
@ -0,0 +1,83 @@
|
|||
/* This file is part of Clementine.
|
||||
Copyright 2013, Andreas Muttscheller <asfa194@gmail.com>
|
||||
|
||||
Clementine 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Clementine 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.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "core/logging.h"
|
||||
|
||||
#include "remoteclient.h"
|
||||
|
||||
#include <QDataStream>
|
||||
|
||||
RemoteClient::RemoteClient(Application* app, QTcpSocket* client)
|
||||
: app_(app),
|
||||
client_(client)
|
||||
{
|
||||
// Open the buffer
|
||||
buffer_.setData(QByteArray());
|
||||
buffer_.open(QIODevice::ReadWrite);
|
||||
reading_protobuf_ = false;
|
||||
|
||||
// Connect to the slot IncomingData when receiving data
|
||||
connect(client, SIGNAL(readyRead()), this, SLOT(IncomingData()));
|
||||
}
|
||||
|
||||
|
||||
RemoteClient::~RemoteClient() {
|
||||
}
|
||||
|
||||
void RemoteClient::IncomingData() {
|
||||
while (client_->bytesAvailable()) {
|
||||
if (!reading_protobuf_) {
|
||||
// Read the length of the next message
|
||||
QDataStream s(client_);
|
||||
s >> expected_length_;
|
||||
reading_protobuf_ = true;
|
||||
}
|
||||
|
||||
// Read some of the message
|
||||
buffer_.write(
|
||||
client_->read(expected_length_ - buffer_.size()));
|
||||
|
||||
// Did we get everything?
|
||||
if (buffer_.size() == expected_length_) {
|
||||
// Parse the message
|
||||
emit Parse(buffer_.data());
|
||||
|
||||
// Clear the buffer
|
||||
buffer_.close();
|
||||
buffer_.setData(QByteArray());
|
||||
buffer_.open(QIODevice::ReadWrite);
|
||||
reading_protobuf_ = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void RemoteClient::SendData(pb::remote::Message *msg) {
|
||||
// Serialize the message
|
||||
std::string data = msg->SerializeAsString();
|
||||
|
||||
// write the length of the data first
|
||||
QDataStream s(client_);
|
||||
s << qint32(data.length());
|
||||
s.writeRawData(data.data(), data.length());
|
||||
|
||||
// Flush data
|
||||
client_->flush();
|
||||
}
|
||||
|
||||
QAbstractSocket::SocketState RemoteClient::State() {
|
||||
return client_->state();
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
#ifndef REMOTECLIENT_H
|
||||
#define REMOTECLIENT_H
|
||||
|
||||
#include <QAbstractSocket>
|
||||
#include <QTcpSocket>
|
||||
#include <QBuffer>
|
||||
|
||||
#include "core/application.h"
|
||||
#include "incomingdataparser.h"
|
||||
|
||||
class RemoteClient : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
RemoteClient(Application* app, QTcpSocket* client);
|
||||
~RemoteClient();
|
||||
|
||||
void SendData(pb::remote::Message* msg);
|
||||
QAbstractSocket::SocketState State();
|
||||
|
||||
private slots:
|
||||
void IncomingData();
|
||||
|
||||
signals:
|
||||
void Parse(const QByteArray& pb_data);
|
||||
|
||||
private:
|
||||
Application* app_;
|
||||
|
||||
QTcpSocket* client_;
|
||||
bool reading_protobuf_;
|
||||
quint32 expected_length_;
|
||||
QBuffer buffer_;
|
||||
};
|
||||
|
||||
#endif // REMOTECLIENT_H
|
|
@ -51,6 +51,13 @@ void NetworkRemoteSettingsPage::Load() {
|
|||
}
|
||||
|
||||
ui_->use_remote->setChecked(s.value("use_remote").toBool());
|
||||
if (s.contains("only_non_public_ip")) {
|
||||
ui_->only_non_public_ip->setChecked(s.value("only_non_public_ip").toBool());
|
||||
} else {
|
||||
// Default yes
|
||||
ui_->only_non_public_ip->setChecked(true);
|
||||
s.setValue("only_non_public_ip", true);
|
||||
}
|
||||
|
||||
s.endGroup();
|
||||
}
|
||||
|
@ -61,6 +68,7 @@ void NetworkRemoteSettingsPage::Save() {
|
|||
s.beginGroup(NetworkRemote::kSettingsGroup);
|
||||
s.setValue("port", ui_->remote_port->value());
|
||||
s.setValue("use_remote", ui_->use_remote->isChecked());
|
||||
s.setValue("only_non_public_ip", ui_->only_non_public_ip->isChecked());
|
||||
|
||||
s.endGroup();
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>400</width>
|
||||
<width>475</width>
|
||||
<height>300</height>
|
||||
</rect>
|
||||
</property>
|
||||
|
@ -33,7 +33,7 @@
|
|||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_15">
|
||||
<widget class="QLabel" name="label_remote_port">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>171</width>
|
||||
|
@ -63,6 +63,26 @@
|
|||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="only_non_public_ip">
|
||||
<property name="toolTip">
|
||||
<string>Only accept connections from clients within the ip ranges:
|
||||
10.x.x.x
|
||||
172.16.0.0 - 172.31.255.255
|
||||
192.168.x.x</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Accept non public clients only</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
Loading…
Reference in New Issue