Added updated() signal to be used to detect change of optional resources.
[harmattan/cameraplus] / src / cameraresources.h
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012 Mohammed Sameer <msameer@foolab.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #ifndef CAMERA_RESOURCES_H
24 #define CAMERA_RESOURCES_H
25
26 #include <QObject>
27 #include <QThread>
28 #include <policy/resource-set.h>
29 class CameraResourcesWorker;
30
31 class CameraResources : public QObject {
32   Q_OBJECT
33
34   Q_PROPERTY(bool acquired READ acquired NOTIFY acquiredChanged);
35   Q_PROPERTY(bool hijacked READ hijacked NOTIFY hijackedChanged);
36
37   Q_ENUMS(Mode);
38   Q_ENUMS(ResourceType);
39
40 public:
41   typedef enum {
42     None,
43     Image,
44     Video,
45     Recording,
46     PostCapture,
47   } Mode;
48
49   typedef enum {
50     AudioPlaybackType = ResourcePolicy::AudioPlaybackType,
51     VideoPlaybackType = ResourcePolicy::VideoPlaybackType,
52     AudioRecorderType = ResourcePolicy::AudioRecorderType,
53     VideoRecorderType = ResourcePolicy::VideoRecorderType,
54     ScaleButtonType = ResourcePolicy::ScaleButtonType,
55     SnapButtonType = ResourcePolicy::SnapButtonType,
56     LensCoverType = ResourcePolicy::LensCoverType,
57   } ResourceType;
58
59   CameraResources(QObject *parent = 0);
60   ~CameraResources();
61
62   Q_INVOKABLE bool acquire(const Mode& mode);
63
64   Q_INVOKABLE bool isResourceGranted(const ResourceType& resource);
65
66   bool acquired() const;
67   bool hijacked() const;
68
69 signals:
70   void acquiredChanged();
71   void hijackedChanged();
72   void updated();
73
74 private:
75   CameraResourcesWorker *m_worker;
76   QThread m_thread;
77 };
78
79 class CameraResourcesWorker : public QObject {
80   Q_OBJECT
81
82 public:
83   CameraResourcesWorker(QObject *parent = 0);
84   ~CameraResourcesWorker();
85
86 public slots:
87   void acquire(bool *ok, const CameraResources::Mode& mode);
88   void acquired(bool *ok);
89   void hijacked(bool *ok);
90   void isResourceGranted(bool *ok, const CameraResources::ResourceType& resource);
91
92 signals:
93   void acquiredChanged();
94   void hijackedChanged();
95   void updated();
96
97 private slots:
98   void init();
99
100   void resourcesReleased();
101   void lostResources();
102   void resourcesGranted(const QList<ResourcePolicy::ResourceType>& optional);
103   void resourcesDenied();
104
105 private:
106   bool release();
107
108   bool updateSet(const QList<ResourcePolicy::ResourceType>& required,
109                  const QList<ResourcePolicy::ResourceType>& optional =
110                  QList<ResourcePolicy::ResourceType>());
111
112   QList<ResourcePolicy::ResourceType> listSet();
113
114   void setAcquired(bool acquired);
115   void setHijacked(bool hijacked);
116
117   ResourcePolicy::ResourceSet *m_set;
118
119   CameraResources::Mode m_mode;
120   QMutex m_mutex;
121   bool m_acquired;
122   bool m_acquiring;
123   bool m_hijacked;
124 };
125
126 #endif /* CAMERA_RESOURCES_H */