82bb19fb42cfef2ea28d5bd77f30e68d26a54307
[harmattan/cameraplus] / lib / qtcamdevice.cpp
1 /*!
2  * This file is part of CameraPlus.
3  *
4  * Copyright (C) 2012 Mohammed Sameer <msameer@foolab.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21 #include "qtcamdevice.h"
22 #include "qtcamviewfinder.h"
23 #include "qtcamconfig.h"
24 #include "qtcamdevice_p.h"
25 #include <QDebug>
26 #include <gst/gst.h>
27 #include "qtcamgstreamermessagelistener.h"
28 #include "qtcammode.h"
29 #include "qtcamimagemode.h"
30 #include "qtcamvideomode.h"
31 #include "qtcamnotifications.h"
32 #include "gst/gstcopy.h"
33 #include "qtcampropertysetter.h"
34 #include "qtcamanalysisbin.h"
35
36 QtCamDevice::QtCamDevice(QtCamConfig *config, const QString& name,
37                          const QVariant& id, QObject *parent) :
38   QObject(parent), d_ptr(new QtCamDevicePrivate) {
39
40   static gboolean register_copy = TRUE;
41   if (register_copy) {
42     qt_cam_copy_register();
43     register_copy = FALSE;
44   }
45
46   d_ptr->q_ptr = this;
47   d_ptr->name = name;
48   d_ptr->id = id;
49   d_ptr->conf = config;
50
51   d_ptr->cameraBin = gst_element_factory_make("camerabin2", "QtCameraCameraBin");
52   if (!d_ptr->cameraBin) {
53     qCritical() << "Failed to create camerabin";
54     return;
55   }
56
57   d_ptr->propertySetter = new QtCamPropertySetter(d_ptr);
58
59   d_ptr->createAndAddElement(d_ptr->conf->audioSource(), "audio-source", "QtCameraAudioSrc");
60   if (!d_ptr->conf->wrapperVideoSource().isEmpty() &&
61       !d_ptr->conf->wrapperVideoSourceProperty().isEmpty()) {
62     d_ptr->createAndAddVideoSourceAndWrapper();
63   }
64   else {
65     d_ptr->createAndAddVideoSource();
66   }
67
68   d_ptr->setDevicePoperty();
69
70   int flags =
71     0x00000001 /* no-audio-conversion - Do not use audio conversion elements */
72     | 0x00000002 /* no-video-conversion - Do not use video conversion elements */
73     | 0x00000004 /* no-viewfinder-conversion - Do not use viewfinder conversion elements */
74     | 0x00000008; /* no-image-conversion - Do not use image conversion elements */
75
76   g_object_set(d_ptr->cameraBin, "flags", flags, NULL);
77
78   d_ptr->setAudioCaptureCaps();
79
80   QStringList viewfinderFilters = d_ptr->conf->viewfinderFilters();
81   if (!viewfinderFilters.isEmpty()) {
82     d_ptr->viewfinderFilters =
83       QtCamAnalysisBin::create(viewfinderFilters, "QtCamViewfinderFilters");
84
85     if (!d_ptr->viewfinderFilters) {
86       qWarning() << "Failed to create viewfinder filters";
87     }
88     else {
89       g_object_set(d_ptr->cameraBin, "viewfinder-filter", d_ptr->viewfinderFilters->bin(), NULL);
90     }
91   }
92
93   d_ptr->listener = new QtCamGStreamerMessageListener(gst_element_get_bus(d_ptr->cameraBin),
94                                                       d_ptr, this);
95
96   QObject::connect(d_ptr->listener, SIGNAL(error(const QString&, int, const QString&)),
97                    this, SLOT(_d_error(const QString&, int, const QString&)));
98   QObject::connect(d_ptr->listener, SIGNAL(started()), this, SLOT(_d_started()));
99   QObject::connect(d_ptr->listener, SIGNAL(stopped()), this, SLOT(_d_stopped()));
100   QObject::connect(d_ptr->listener, SIGNAL(stopping()), this, SLOT(_d_stopping()));
101
102   g_signal_connect(d_ptr->cameraBin, "notify::idle",
103                    G_CALLBACK(QtCamDevicePrivate::on_idle_changed), d_ptr);
104
105   g_signal_connect(d_ptr->wrapperVideoSource, "notify::ready-for-capture",
106                    G_CALLBACK(QtCamDevicePrivate::on_ready_for_capture_changed), d_ptr);
107
108   d_ptr->image = new QtCamImageMode(d_ptr, this);
109   d_ptr->video = new QtCamVideoMode(d_ptr, this);
110
111   d_ptr->notifications = new QtCamNotifications(this, this);
112 }
113
114 QtCamDevice::~QtCamDevice() {
115   stop(true);
116
117   d_ptr->image->deactivate();
118   d_ptr->video->deactivate();
119
120   delete d_ptr->image; d_ptr->image = 0;
121   delete d_ptr->video; d_ptr->video = 0;
122
123   delete d_ptr->propertySetter;
124
125   delete d_ptr->viewfinderFilters;
126
127   if (d_ptr->cameraBin) {
128     gst_object_unref(d_ptr->cameraBin);
129   }
130
131   delete d_ptr; d_ptr = 0;
132 }
133
134 bool QtCamDevice::setViewfinder(QtCamViewfinder *viewfinder) {
135   if (isRunning()) {
136     qWarning() << "QtCamDevice: pipeline must be stopped before setting a viewfinder";
137     return false;
138   }
139
140   if (d_ptr->viewfinder == viewfinder) {
141     return true;
142   }
143
144   if (!viewfinder) {
145     qWarning() << "QtCamDevice: viewfinder cannot be unset.";
146     return false;
147   }
148
149   if (d_ptr->viewfinder) {
150     qWarning() << "QtCamDevice: viewfinder cannot be replaced.";
151     return false;
152   }
153
154   if (!viewfinder->setDevice(this)) {
155     return false;
156   }
157
158   d_ptr->viewfinder = viewfinder;
159
160   return true;
161 }
162
163 QtCamViewfinder *QtCamDevice::viewfinder() const {
164   return d_ptr->viewfinder;
165 }
166
167 bool QtCamDevice::start() {
168   if (d_ptr->error) {
169     qWarning() << "Pipeline must be stopped first because of an error.";
170     return false;
171   }
172
173   if (!d_ptr->cameraBin) {
174     qWarning() << "Missing camerabin";
175     return false;
176   }
177
178   if (!d_ptr->viewfinder) {
179     qWarning() << "Viewfinder not set";
180     return false;
181   }
182
183   if (isRunning()) {
184     return true;
185   }
186
187   if (!d_ptr->active) {
188     d_ptr->image->activate();
189   }
190   else {
191     d_ptr->active->applySettings();
192   }
193
194   // Set sink.
195   if (!d_ptr->setViewfinderSink()) {
196     return false;
197   }
198
199   GstStateChangeReturn err = gst_element_set_state(d_ptr->cameraBin, GST_STATE_PLAYING);
200   if (err == GST_STATE_CHANGE_FAILURE) {
201     qWarning() << "Failed to start camera pipeline";
202     return false;
203   }
204
205   // We need to wait for startup to complet. There's a race condition somewhere in the pipeline.
206   // If we set the scene mode to night and update the resolution while starting up
207   // then subdevsrc2 barfs:
208   // streaming task paused, reason not-negotiated (-4)
209   GstState state;
210   if (err != GST_STATE_CHANGE_ASYNC) {
211     return true;
212   }
213
214   if (gst_element_get_state(d_ptr->cameraBin, &state, 0, GST_CLOCK_TIME_NONE)
215       != GST_STATE_CHANGE_SUCCESS) {
216     // We are seriously screwed up :(
217     return false;
218   }
219
220   if (state != GST_STATE_PLAYING) {
221     // Huh ? Is this even possible ??
222     return false;
223   }
224
225   return true;
226 }
227
228 bool QtCamDevice::stop(bool force) {
229   if (!d_ptr->cameraBin) {
230     return true;
231   }
232
233   if (d_ptr->error) {
234     gst_element_set_state(d_ptr->cameraBin, GST_STATE_NULL);
235     d_ptr->error = false;
236
237     d_ptr->viewfinder->stop();
238
239     return true;
240   }
241
242   GstState state;
243   gst_element_get_state(d_ptr->cameraBin, &state, 0, GST_CLOCK_TIME_NONE);
244
245   if (state == GST_STATE_NULL) {
246     // Nothing to do.
247     return true;
248   }
249
250   if (!isIdle()) {
251     if (!force) {
252       return false;
253     }
254   }
255
256   // First we go to ready:
257   GstStateChangeReturn st = gst_element_set_state(d_ptr->cameraBin, GST_STATE_READY);
258   if (st != GST_STATE_CHANGE_FAILURE) {
259     // Flush the bus:
260     d_ptr->listener->flushMessages();
261   }
262
263   // Now to NULL
264   gst_element_set_state(d_ptr->cameraBin, GST_STATE_NULL);
265
266   d_ptr->viewfinder->stop();
267
268   return true;
269 }
270
271 bool QtCamDevice::isRunning() {
272   if (!d_ptr->cameraBin) {
273     return false;
274   }
275
276   GstState state;
277   GstStateChangeReturn err = gst_element_get_state(d_ptr->cameraBin,
278                                                    &state, 0, GST_CLOCK_TIME_NONE);
279
280   if (err == GST_STATE_CHANGE_FAILURE || state != GST_STATE_PLAYING) {
281     return false;
282   }
283
284   return true;
285 }
286
287 bool QtCamDevice::isIdle() {
288   if (!d_ptr->cameraBin) {
289     return true;
290   }
291
292   gboolean idle = FALSE;
293   g_object_get(d_ptr->cameraBin, "idle", &idle, NULL);
294
295   return idle == TRUE;
296 }
297
298 QtCamImageMode *QtCamDevice::imageMode() const {
299   return d_ptr->image;
300 }
301
302 QtCamVideoMode *QtCamDevice::videoMode() const {
303   return d_ptr->video;
304 }
305
306 QtCamMode *QtCamDevice::activeMode() const {
307   return d_ptr->active;
308 }
309
310 QString QtCamDevice::name() const {
311   return d_ptr->name;
312 }
313
314 QVariant QtCamDevice::id() const {
315   return d_ptr->id;
316 }
317
318 QtCamConfig *QtCamDevice::config() const {
319   return d_ptr->conf;
320 }
321
322 QtCamGStreamerMessageListener *QtCamDevice::listener() const {
323   return d_ptr->listener;
324 }
325
326 QtCamNotifications *QtCamDevice::notifications() const {
327   return d_ptr->notifications;
328 }
329
330 #include "moc_qtcamdevice.cpp"