c6c75941acb1cf229c4b5c1cc13ac7b9cce2ef4c
[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
73 private:
74   CameraResourcesWorker *m_worker;
75   QThread m_thread;
76 };
77
78 class CameraResourcesWorker : public QObject {
79   Q_OBJECT
80
81 public:
82   CameraResourcesWorker(QObject *parent = 0);
83   ~CameraResourcesWorker();
84
85 public slots:
86   void acquire(bool *ok, const CameraResources::Mode& mode);
87   void acquired(bool *ok);
88   void hijacked(bool *ok);
89   void isResourceGranted(bool *ok, const CameraResources::ResourceType& resource);
90
91 signals:
92   void acquiredChanged();
93   void hijackedChanged();
94
95 private slots:
96   void init();
97
98   void resourcesReleased();
99   void lostResources();
100   void resourcesGranted(const QList<ResourcePolicy::ResourceType>& optional);
101   void resourcesDenied();
102
103 private:
104   bool release();
105
106   bool updateSet(const QList<ResourcePolicy::ResourceType>& required,
107                  const QList<ResourcePolicy::ResourceType>& optional =
108                  QList<ResourcePolicy::ResourceType>());
109
110   QList<ResourcePolicy::ResourceType> listSet();
111
112   void setAcquired(bool acquired);
113   void setHijacked(bool hijacked);
114
115   ResourcePolicy::ResourceSet *m_set;
116
117   CameraResources::Mode m_mode;
118   QMutex m_mutex;
119   bool m_acquired;
120   bool m_acquiring;
121   bool m_hijacked;
122 };
123
124 #endif /* CAMERA_RESOURCES_H */