low space handling:
[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
29 FileNaming::FileNaming(QObject *parent) :
30   QObject(parent) {
31
32 }
33
34 FileNaming::~FileNaming() {
35
36 }
37
38 QString FileNaming::imageSuffix() const {
39   return m_image;
40 }
41
42 void FileNaming::setImageSuffix(const QString& suffix) {
43   if (m_image != suffix) {
44     m_image = suffix;
45     emit imageSuffixChanged();
46   }
47 }
48
49 QString FileNaming::videoSuffix() const {
50   return m_video;
51 }
52
53 void FileNaming::setVideoSuffix(const QString& suffix) {
54   if (m_video != suffix) {
55     m_video = suffix;
56     emit videoSuffixChanged();
57   }
58 }
59
60 QString FileNaming::imageFileName() {
61   return fileName(m_image);
62 }
63
64 QString FileNaming::videoFileName() {
65   return fileName(m_video);
66 }
67
68 QString FileNaming::fileName(const QString& suffix) {
69   if (suffix.isEmpty()) {
70     return QString();
71   }
72
73   if (!QDir::root().mkpath(PATH)) {
74     qWarning() << "Failed to create" << PATH;
75     return QString();
76   }
77
78   // Shamelessly stolen from Aura
79   QDir dir(PATH);
80   QString date = QDate::currentDate().toString("yyyyMMdd");
81
82   QStringList filters(QString("*%1_*").arg(date));
83   QStringList entries = dir.entryList(filters, QDir::Files, QDir::Name);
84
85   int index = 0;
86
87   if (!entries.isEmpty()) {
88     QString name = QFile(entries.last()).fileName();
89     index = name.section('_', 1, 1).section('.', 0, 0).toInt();
90   }
91
92   ++index;
93
94   QString name = QString("%1%2_%3.%4").arg(PATH).arg(date).arg(QString().sprintf("%03i", index)).
95     arg(suffix);
96
97   return name;
98 }
99
100 QString FileNaming::path() const {
101   return PATH;
102 }