Don't connect to GraphUpdated more than once.
[harmattan/cameraplus] / src / mountprotector.cpp
1 /*!
2  * This file is part of CameraPlus.
3  *
4  * Copyright (C) 2012-2013 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 "mountprotector.h"
22 #include <QDir>
23 #include <QTemporaryFile>
24 #include <QDeclarativeInfo>
25
26 MountProtector::MountProtector(QObject *parent) :
27   QObject(parent), m_file(0) {
28
29 }
30
31 MountProtector::~MountProtector() {
32   unlock();
33 }
34
35 QString MountProtector::path() const {
36   return m_path;
37 }
38
39 void MountProtector::setPath(const QString& path) {
40   if (m_path != path) {
41     m_path = path;
42     emit pathChanged();
43   }
44 }
45
46 bool MountProtector::lock() {
47   if (m_file) {
48     return true;
49   }
50
51   if (m_path.isEmpty()) {
52     return false;
53   }
54
55   QString path = QString("%1%2.cameraplus_tmp_XXXXXX").arg(m_path).arg(QDir::separator());
56   m_file = new QTemporaryFile(path);
57   m_file->setAutoRemove(true);
58   if (!m_file->open()) {
59     qmlInfo(this) << "Failed to lock" << m_file->errorString();
60     delete m_file;
61     m_file = 0;
62     return false;
63   }
64
65   if (!QFile::remove(m_file->fileName())) {
66     qmlInfo(this) << "Failed to remove temporarily file" << m_file->fileName();
67   }
68
69   return true;
70 }
71
72 void MountProtector::unlock() {
73   if (m_file) {
74     delete m_file;
75     m_file = 0;
76   }
77 }