Record video in a hidden directory then copy it to target directory.
[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   if (!QDir::root().mkpath(PATH)) {
75     qWarning() << "Failed to create" << PATH;
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() const {
102   return PATH;
103 }
104
105 QString FileNaming::temporaryVideoFileName() {
106   if (!QDir::root().mkpath(TEMP_PATH)) {
107     qWarning() << "Failed to create temporary path" << TEMP_PATH;
108     return QString();
109   }
110
111   return QString("%1.cameraplus_video.tmp").arg(TEMP_PATH);
112 }