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