71a085fb1172d65d7c2e92ea97079aa0e813cd6c
[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
30 class CameraResourcesWorker;
31
32 class CameraResources : public QObject {
33   Q_OBJECT
34
35   Q_PROPERTY(bool acquired READ acquired NOTIFY acquiredChanged);
36   Q_PROPERTY(bool hijacked READ hijacked NOTIFY hijackedChanged);
37   Q_PROPERTY(bool scaleAcquired READ isScaleAcquired NOTIFY scaleAcquisitionChanged);
38
39   Q_ENUMS(Mode);
40   Q_ENUMS(ResourceType);
41
42 public:
43   typedef enum {
44     None,
45     Image,
46     Video,
47     Recording,
48   } Mode;
49
50   CameraResources(QObject *parent = 0);
51   ~CameraResources();
52
53   Q_INVOKABLE bool acquire(const Mode& mode);
54
55   bool acquired() const;
56   bool hijacked() const;
57   bool isScaleAcquired() const;
58
59 signals:
60   void acquiredChanged();
61   void hijackedChanged();
62   void updated();
63   void scaleAcquisitionChanged();
64
65 private:
66   bool isResourceGranted(const ResourcePolicy::ResourceType& resource) const;
67
68   CameraResourcesWorker *m_worker;
69   QThread m_thread;
70 };
71
72 class CameraResourcesWorker : public QObject {
73   Q_OBJECT
74
75 public:
76   CameraResourcesWorker(QObject *parent = 0);
77   ~CameraResourcesWorker();
78
79 public slots:
80   void acquire(bool *ok, const CameraResources::Mode& mode);
81   void acquired(bool *ok);
82   void hijacked(bool *ok);
83   void isResourceGranted(bool *ok, int resource);
84
85 signals:
86   void acquiredChanged();
87   void hijackedChanged();
88   void updated();
89
90 private slots:
91   void init();
92
93   void resourcesReleased();
94   void lostResources();
95   void resourcesGranted(const QList<ResourcePolicy::ResourceType>& optional);
96   void resourcesDenied();
97
98 private:
99   bool release();
100
101   bool updateSet(const QList<ResourcePolicy::ResourceType>& required,
102                  const QList<ResourcePolicy::ResourceType>& optional =
103                  QList<ResourcePolicy::ResourceType>());
104
105   QList<ResourcePolicy::ResourceType> listSet();
106
107   void setAcquired(bool acquired);
108   void setHijacked(bool hijacked);
109
110   ResourcePolicy::ResourceSet *m_set;
111
112   CameraResources::Mode m_mode;
113   bool m_acquired;
114   bool m_acquiring;
115   bool m_hijacked;
116 };
117
118 #endif /* CAMERA_RESOURCES_H */