summaryrefslogtreecommitdiffstats
path: root/mediaplayer/MediaplayerBluezBackend.cpp
blob: db189acb8fa89872d0b1750167fb16f22edd0a94 (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
/*
 * Copyright (C) 2022 Konsulko Group
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <QDebug>
#include "MediaplayerBluezBackend.h"
#include "mediaplayer.h"


MediaplayerBluezBackend::MediaplayerBluezBackend(Mediaplayer *player, QQmlContext *context, QObject *parent) :
	MediaplayerBackend(player, parent)
{
	m_bluetooth = new Bluetooth(false, context, true);
	if (!m_bluetooth)
		qFatal("Could not create Bluetooth");

	// Connect up metadata updates
	connect(m_bluetooth,
		&Bluetooth::mediaConnectedChanged,
		player,
		&Mediaplayer::updateBluetoothMediaConnected);
#if 0
	connect(m_bluetooth,
		&Bluetooth::mediaPropertiesChanged,
		player,
		&Mediaplayer::updateBluetoothMetadata);
#else
	// Proxy Bluetooth metadata updates so we can cache the
	// latest update locally to allow for quick refreshes.
	connect(m_bluetooth,
		&Bluetooth::mediaPropertiesChanged,
		this,
		&MediaplayerBluezBackend::updateMetadata);
	connect(this,
		&MediaplayerBluezBackend::metadataUpdate,
		player,
		&Mediaplayer::updateBluetoothMetadata);
#endif
}

MediaplayerBluezBackend::~MediaplayerBluezBackend()
{
	delete m_bluetooth;
}

void MediaplayerBluezBackend::start()
{
	m_bluetooth->start();
}

void MediaplayerBluezBackend::refresh_metadata()
{
	// Try to avoid driving a D-Bus request if we have a cached update
	if (m_cached_metadata.isEmpty())
		m_bluetooth->refresh_media_state();
	else
		emit metadataUpdate(m_cached_metadata);
}

// Slots

void MediaplayerBluezBackend::updateMetadata(QVariantMap metadata)
{
	m_cached_metadata = metadata;
	emit metadataUpdate(metadata);
}

// Control methods

void MediaplayerBluezBackend::play()
{
	m_bluetooth->media_control(Bluetooth::MediaAction::Play);
}

void MediaplayerBluezBackend::pause()
{
	m_bluetooth->media_control(Bluetooth::MediaAction::Pause);
}

void MediaplayerBluezBackend::previous()
{
	m_bluetooth->media_control(Bluetooth::MediaAction::Previous);
}

void MediaplayerBluezBackend::next()
{
	m_bluetooth->media_control(Bluetooth::MediaAction::Next);
}

void MediaplayerBluezBackend::seek(int milliseconds)
{
	// Not implemented, currently not needed by demo app
	// It is not quite obvious how this is implemented with the AVRCP
	// commands not taking a position/offset.
}

// Relative to current position
void MediaplayerBluezBackend::fastforward(int milliseconds)
{
	// Not implemented, currently not needed by demo app
	// It is not quite obvious how this is implemented with the AVRCP
	// commands not taking a position/offset.
}

// Relative to current position
void MediaplayerBluezBackend::rewind(int milliseconds)
{
	// Not implemented, currently not needed by demo app
	// It is not quite obvious how this is implemented with the AVRCP
	// commands not taking a position/offset.
}

void MediaplayerBluezBackend::picktrack(int track)
{
	// Not implemented
}

void MediaplayerBluezBackend::volume(int volume)
{
	// Not implemented
}

void MediaplayerBluezBackend::loop(QString state)
{
	// Not implemented, but potentially possible by setting player property
	// with bluez-glib addition
}

void MediaplayerBluezBackend::connect_media()
{
	m_bluetooth->media_control(Bluetooth::MediaAction::Connect);
}

void MediaplayerBluezBackend::disconnect_media()
{
	m_bluetooth->media_control(Bluetooth::MediaAction::Disconnect);
}