Initial Qt5 port
[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_image;
45 }
46
47 void FileNaming::setImageSuffix(const QString& suffix) {
48   if (m_image != suffix) {
49     m_image = suffix;
50     emit imageSuffixChanged();
51   }
52 }
53
54 QString FileNaming::videoSuffix() const {
55   return m_video;
56 }
57
58 void FileNaming::setVideoSuffix(const QString& suffix) {
59   if (m_video != suffix) {
60     m_video = suffix;
61     emit videoSuffixChanged();
62   }
63 }
64
65 QString FileNaming::imageFileName() {
66   return fileName(m_image);
67 }
68
69 QString FileNaming::videoFileName() {
70   return fileName(m_video);
71 }
72
73 QString FileNaming::fileName(const QString& suffix) {
74   QString path = FileNaming::path();
75   QString date = QDate::currentDate().toString("yyyyMMdd");
76   QDir dir(path);
77
78   if (suffix.isEmpty()) {
79     return QString();
80   }
81
82   if (path.isEmpty()) {
83     return QString();
84   }
85
86   if (date != m_date) {
87     m_index = -1;
88     m_date = date;
89   }
90
91   if (m_index == -1) {
92     QStringList filters(QString("*%1_*").arg(date));
93     QStringList entries = dir.entryList(filters, QDir::Files, QDir::Name);
94     if (entries.isEmpty()) {
95       m_index = 0;
96     }
97     else {
98       QString name = QFile(entries.last()).fileName();
99       m_index = name.section('_', 1, 1).section('.', 0, 0).toInt();
100     }
101   }
102
103   ++m_index;
104
105   QString name = QString("%1%2_%3.%4").arg(path).arg(date).arg(QString().sprintf("%03i", m_index)).
106     arg(suffix);
107
108   if (QFile(name).exists()) {
109     return QString();
110   }
111
112   return name;
113 }
114
115 QString FileNaming::path() {
116   if (m_path.isEmpty()) {
117     m_path = canonicalPath(PATH);
118   }
119
120   return m_path;
121 }
122
123 QString FileNaming::temporaryPath() {
124   if (m_temp.isEmpty()) {
125     m_temp = canonicalPath(TEMP_PATH);
126   }
127
128   return m_temp;
129 }
130
131 QString FileNaming::canonicalPath(const QString& path) {
132   if (!QDir::root().mkpath(path)) {
133     qmlInfo(this) << "Failed to create path" << path;
134     return QString();
135   }
136
137   QString newPath = QFileInfo(path).canonicalFilePath();
138
139   if (newPath.isEmpty()) {
140     return newPath;
141   }
142
143   if (!newPath.endsWith(QDir::separator())) {
144     newPath.append(QDir::separator());
145   }
146
147   return newPath;
148 }
149
150 QString FileNaming::temporaryVideoFileName() {
151   QString path = temporaryPath();
152
153   if (path.isEmpty()) {
154     return path;
155   }
156
157   return QString("%1.cameraplus_video.tmp").arg(path);
158 }