summaryrefslogtreecommitdiff
path: root/fmrxservice.cpp
blob: 1bf18c12bd7448d6ae9ed452ab1e997ea53141a9 (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
#include <QtCore/QFile>
#include <QtDebug>

#include "fmrxcontrol.h"
#include "fmrxproxy.h"
#include "fmrxthread.h"
#include "fmrxservice.h"

struct FmRxPriv
{
	FmRxThread *thread;
	FmRxProxy *proxy;
	FmRxControl *control;
	bool active;
	double frequency;
	quint16 signalLevel;
};

FmRxService::FmRxService(QObject *parent) :
    QMediaService(parent)
{
	d = new FmRxPriv;
	d->thread = new FmRxThread(this);
	d->proxy = new FmRxProxy(this);
	d->control = new FmRxControl(this);
	d->active = false;

	connect(d->proxy, SIGNAL(Tuned(double)), this, SLOT(handleTuned(double)));
	connect(d->proxy, SIGNAL(Stopped()), this, SLOT(handleStopped()));
	connect(d->proxy, SIGNAL(SignalLevelChanged(ushort)), this, SLOT(handleSignalLevelChanged(ushort)));
	connect(d->proxy, SIGNAL(PiReceived(ushort)), this, SIGNAL(piReceived(ushort)));
	connect(d->proxy, SIGNAL(PsReceived(QString)), this, SIGNAL(psReceived(QString)));
	connect(d->proxy, SIGNAL(RtReceived(QString)), this, SIGNAL(rtReceived(QString)));
}

FmRxService::~FmRxService()
{
	delete d;
}

QMediaControl *FmRxService::requestControl(const char *name)
{
	if (qstrcmp(name, QRadioTunerControl_iid) == 0)
		return d->control;

	return 0;
}

void FmRxService::releaseControl(QMediaControl *control)
{
	// Nothing to do; the control instance will be free when the service is freed
}

void FmRxService::start()
{
	if (d->thread->isRunning()) {
		qWarning("FmRxService already started");
		return;
	}
	d->thread->setInputFd(d->proxy->Connect());
	d->thread->start();
}

void FmRxService::stop()
{
	d->thread->stop();
}

bool FmRxService::isAvailable() const
{
	// TODO Check avaibility of fmrxd service
	return true;
}

QtMultimediaKit::AvailabilityError FmRxService::availabilityError() const
{
	return QtMultimediaKit::NoError;
}

bool FmRxService::isActive() const
{
	return d->active;
}

void FmRxService::handleTuned(double frequency)
{
	if (!qFuzzyCompare(d->frequency, frequency)) {
		d->frequency = frequency;
		emit tuned(frequency);
	}
	if (!d->active) {
		d->active = true;
		emit started();
	}
}

void FmRxService::handleStopped()
{
	if (d->active) {
		d->active = false;
		emit stopped();
	}
}

void FmRxService::handleSignalLevelChanged(ushort level)
{
	d->signalLevel = level;
	if (d->active) {
		emit signalLevelChanged(level);
	}
}

double FmRxService::frequency()
{
	return d->frequency;
}

void FmRxService::setFrequency(double frequency)
{
	d->proxy->Tune(frequency);
}

void FmRxService::searchForward()
{
	d->proxy->SearchForward();
}

void FmRxService::searchBackward()
{
	d->proxy->SearchBackward();
}

ushort FmRxService::signalLevel() const
{
	return d->signalLevel;
}