Code cleanup
[harmattan/cameraplus] / lib / qtcamimagemode.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 "qtcamimagemode.h"
22 #include "qtcammode_p.h"
23 #include "qtcamdevice_p.h"
24 #include "qtcamimagesettings.h"
25 #include "qtcamdevice.h"
26
27 class QtCamImageModePrivate : public QtCamModePrivate {
28 public:
29   QtCamImageModePrivate(QtCamDevicePrivate *dev) :
30   QtCamModePrivate(dev),
31   settings(dev->conf->imageSettings(dev->id)),
32   resolution(settings->defaultResolution()) {
33
34   }
35
36   ~QtCamImageModePrivate() {
37     delete settings;
38   }
39
40   QtCamImageSettings *settings;
41   QtCamImageResolution resolution;
42 };
43
44 QtCamImageMode::QtCamImageMode(QtCamDevicePrivate *dev, QObject *parent) :
45   QtCamMode(new QtCamImageModePrivate(dev), "mode-image", "image-done", parent) {
46
47   d = (QtCamImageModePrivate *)d_ptr;
48
49   QString name = d_ptr->dev->conf->imageEncodingProfileName();
50   QString path = d_ptr->dev->conf->imageEncodingProfilePath();
51
52   if (!name.isEmpty() && !path.isEmpty()) {
53     GstEncodingProfile *profile = d_ptr->loadProfile(path, name);
54     if (profile) {
55       setProfile(profile);
56     }
57   }
58 }
59
60 QtCamImageMode::~QtCamImageMode() {
61   d = 0;
62 }
63
64 bool QtCamImageMode::canCapture() {
65   return QtCamMode::canCapture() && d_ptr->dev->isWrapperReady();
66 }
67
68 void QtCamImageMode::applySettings() {
69   bool night = d_ptr->inNightMode();
70
71   int fps = night ? d->resolution.nightFrameRate() : d->resolution.frameRate();
72
73   d_ptr->setCaps("viewfinder-caps", d->resolution.viewfinderResolution(), fps);
74
75   // FIXME:
76   // Ideally, we should query the image-capture-supported-caps and get a proper framerate
77   // as it seems that subdevsrc2 can only capture 15 FPS for at least the highest resolution
78   // we use. For now we will not set any FPS.
79   d_ptr->setCaps("image-capture-caps", d->resolution.captureResolution(), -1);
80
81   d_ptr->setPreviewSize(d->resolution.previewResolution());
82
83   // If we don't reset the caps then: if we switch from video to image then we fail
84   // the next time we restart the pipeline.
85   d_ptr->resetCaps("video-capture-caps");
86 }
87
88 void QtCamImageMode::start() {
89   // Nothing
90 }
91
92 void QtCamImageMode::stop() {
93   // Nothing
94 }
95
96 bool QtCamImageMode::capture(const QString& fileName) {
97   if (!canCapture()) {
98     return false;
99   }
100
101   if (fileName.isEmpty()) {
102     return false;
103   }
104
105   d_ptr->setFileName(fileName);
106
107   g_object_set(d_ptr->dev->cameraBin, "location", fileName.toUtf8().data(), NULL);
108   g_signal_emit_by_name(d_ptr->dev->cameraBin, "start-capture", NULL);
109
110   return true;
111 }
112
113 bool QtCamImageMode::setResolution(const QtCamImageResolution& resolution) {
114   d->resolution = resolution;
115
116   if (!d_ptr->dev->q_ptr->isRunning()) {
117     // We will return true here because setting the resolution on a non-running pipeline
118     // doesn't make much sense (Probably the only use case is as a kind of optimization only).
119     // We will set it anyway when the pipeline gets started.
120     return true;
121   }
122
123   if (!d_ptr->dev->q_ptr->isIdle()) {
124     return false;
125   }
126
127   applySettings();
128
129   return true;
130 }
131
132 void QtCamImageMode::setProfile(GstEncodingProfile *profile) {
133   if (!d_ptr->dev->cameraBin) {
134     gst_encoding_profile_unref(profile);
135     return;
136   }
137
138   g_object_set(d_ptr->dev->cameraBin, "image-profile", profile, NULL);
139 }
140
141 QtCamImageSettings *QtCamImageMode::settings() const {
142   return d->settings;
143 }