Use canonical paths for our storage and temporary paths.
[harmattan/cameraplus] / src / filenaming.cpp
1 /*!
2  * This file is part of CameraPlus.
3  *
4  * Copyright (C) 2012 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 <QDebug>
24 #include <QDate>
25 #include <QFile>
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) {
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   if (suffix.isEmpty()) {
71     return QString();
72   }
73
74   QString path = FileNaming::path();
75   if (path.isEmpty()) {
76     return QString();
77   }
78
79   // Shamelessly stolen from Aura
80   QDir dir(path);
81   QString date = QDate::currentDate().toString("yyyyMMdd");
82
83   QStringList filters(QString("*%1_*").arg(date));
84   QStringList entries = dir.entryList(filters, QDir::Files, QDir::Name);
85
86   int index = 0;
87
88   if (!entries.isEmpty()) {
89     QString name = QFile(entries.last()).fileName();
90     index = name.section('_', 1, 1).section('.', 0, 0).toInt();
91   }
92
93   ++index;
94
95   QString name = QString("%1%2_%3.%4").arg(path).arg(date).arg(QString().sprintf("%03i", index)).
96     arg(suffix);
97
98   return name;
99 }
100
101 QString FileNaming::path() {
102   if (m_path.isEmpty()) {
103     m_path = canonicalPath(PATH);
104   }
105
106   return m_path;
107 }
108
109 QString FileNaming::temporaryPath() {
110   if (m_temp.isEmpty()) {
111     m_temp = canonicalPath(TEMP_PATH);
112   }
113
114   return m_temp;
115 }
116
117 QString FileNaming::canonicalPath(const QString& path) {
118   if (!QDir::root().mkpath(path)) {
119     qWarning() << "Failed to create path" << path;
120     return QString();
121   }
122
123   QString newPath = QFileInfo(path).canonicalFilePath();
124
125   if (newPath.isEmpty()) {
126     return newPath;
127   }
128
129   if (!newPath.endsWith(QDir::separator())) {
130     newPath.append(QDir::separator());
131   }
132
133   return newPath;
134 }
135
136 QString FileNaming::temporaryVideoFileName() {
137   QString path = temporaryPath();
138
139   if (path.isEmpty()) {
140     return path;
141   }
142
143   return QString("%1.cameraplus_video.tmp").arg(path);
144 }