ab950ac55cb9b61bef8aa3561d3dd5f890fc969c
[harmattan/cameraplus] / src / filenaming.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 "filenaming.h"
22 #include <QDir>
23 #include <QDate>
24 #include <QFile>
25 #if defined(QT4)
26 #include <QDeclarativeInfo>
27 #elif defined(QT5)
28 #include <QQmlInfo>
29 #endif
30
31 #define PATH QString("%1%2MyDocs%2DCIM%2").arg(QDir::homePath()).arg(QDir::separator())
32 #define TEMP_PATH QString("%1%2MyDocs%2.cameraplus%2").arg(QDir::homePath()).arg(QDir::separator())
33
34 FileNaming::FileNaming(QObject *parent) :
35   QObject(parent), m_index(-1) {
36
37 }
38
39 FileNaming::~FileNaming() {
40
41 }
42
43 QString FileNaming::imageSuffix() const {
44   return m_imageSuffix;
45 }
46
47 void FileNaming::setImageSuffix(const QString& suffix) {
48   if (m_imageSuffix != suffix) {
49     m_imageSuffix = suffix;
50     emit imageSuffixChanged();
51   }
52 }
53
54 QString FileNaming::videoSuffix() const {
55   return m_videoSuffix;
56 }
57
58 void FileNaming::setVideoSuffix(const QString& suffix) {
59   if (m_videoSuffix != suffix) {
60     m_videoSuffix = suffix;
61     emit videoSuffixChanged();
62   }
63 }
64
65 QString FileNaming::imageFileName() {
66   return fileName(m_imagePath, m_imageSuffix);
67 }
68
69 QString FileNaming::videoFileName() {
70   return fileName(m_videoPath, m_videoSuffix);
71 }
72
73 QString FileNaming::fileName(const QString& path, const QString& suffix) {
74   QString date = QDate::currentDate().toString("yyyyMMdd");
75   QDir dir(path);
76
77   if (suffix.isEmpty()) {
78     return QString();
79   }
80
81   if (path.isEmpty()) {
82     return QString();
83   }
84
85   if (date != m_date) {
86     m_index = -1;
87     m_date = date;
88   }
89
90   if (m_index == -1) {
91     QStringList filters(QString("*%1_*").arg(date));
92     QStringList entries = dir.entryList(filters, QDir::Files, QDir::Name);
93     if (entries.isEmpty()) {
94       m_index = 0;
95     }
96     else {
97       QString name = QFile(entries.last()).fileName();
98       m_index = name.section('_', 1, 1).section('.', 0, 0).toInt();
99     }
100   }
101
102   ++m_index;
103
104   QString name = QString("%1%2_%3.%4").arg(path).arg(date).arg(QString().sprintf("%03i", m_index)).
105     arg(suffix);
106
107   if (QFile(name).exists()) {
108     return QString();
109   }
110
111   return name;
112 }
113
114 QString FileNaming::canonicalPath(const QString& path) {
115   if (!QDir::root().mkpath(path)) {
116     qmlInfo(this) << "Failed to create path" << path;
117     return QString();
118   }
119
120   QString newPath = QFileInfo(path).canonicalFilePath();
121
122   if (newPath.isEmpty()) {
123     return newPath;
124   }
125
126   if (!newPath.endsWith(QDir::separator())) {
127     newPath.append(QDir::separator());
128   }
129
130   return newPath;
131 }
132
133 QString FileNaming::temporaryVideoFileName() {
134   if (m_temporaryVideoPath.isEmpty()) {
135     return QString();
136   }
137
138   return QString("%1.cameraplus_video.tmp").arg(m_temporaryVideoPath);
139 }
140
141 QString FileNaming::imagePath() const {
142   return m_imagePath;
143 }
144
145 void FileNaming::setImagePath(const QString& path) {
146   QString p = canonicalPath(path);
147
148   if (m_imagePath != p) {
149     m_imagePath = p;
150     emit imagePathChanged();
151   }
152 }
153
154 QString FileNaming::videoPath() const {
155   return m_videoPath;
156 }
157
158 void FileNaming::setVideoPath(const QString& path) {
159   QString p = canonicalPath(path);
160
161   if (m_videoPath != p) {
162     m_videoPath = p;
163     emit videoPathChanged();
164   }
165 }
166
167 QString FileNaming::temporaryVideoPath() const {
168   return m_temporaryVideoPath;
169 }
170
171 void FileNaming::setTemporaryVideoPath(const QString& path) {
172   QString p = canonicalPath(path);
173
174   if (m_temporaryVideoPath != p) {
175     m_temporaryVideoPath = p;
176     emit temporaryVideoPathChanged();
177   }
178 }