Don't reuse file names
[harmattan/cameraplus] / src / filenaming.h
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #ifndef FILE_NAMING_H
24 #define FILE_NAMING_H
25
26 #include <QObject>
27
28 class Settings;
29
30 class FileNaming : public QObject {
31   Q_OBJECT
32
33   Q_PROPERTY(QString imageSuffix READ imageSuffix WRITE setImageSuffix NOTIFY imageSuffixChanged);
34   Q_PROPERTY(QString videoSuffix READ videoSuffix WRITE setVideoSuffix NOTIFY videoSuffixChanged);
35   Q_PROPERTY(QString imagePath READ imagePath WRITE setImagePath NOTIFY imagePathChanged);
36   Q_PROPERTY(QString videoPath READ videoPath WRITE setVideoPath NOTIFY videoPathChanged);
37   Q_PROPERTY(QString temporaryVideoPath READ temporaryVideoPath WRITE setTemporaryVideoPath NOTIFY temporaryVideoPathChanged);
38   Q_PROPERTY(Settings *settings READ settings WRITE setSettings NOTIFY settingsChanged);
39
40 public:
41   FileNaming(QObject *parent = 0);
42   ~FileNaming();
43
44   QString imageSuffix() const;
45   void setImageSuffix(const QString& suffix);
46
47   QString videoSuffix() const;
48   void setVideoSuffix(const QString& suffix);
49
50   Q_INVOKABLE QString imageFileName();
51   Q_INVOKABLE QString videoFileName();
52   Q_INVOKABLE QString temporaryVideoFileName();
53
54   QString imagePath() const;
55   void setImagePath(const QString& path);
56
57   QString videoPath() const;
58   void setVideoPath(const QString& path);
59
60   QString temporaryVideoPath() const;
61   void setTemporaryVideoPath(const QString& path);
62
63   Settings *settings() const;
64   void setSettings(Settings *settings);
65
66 signals:
67   void imageSuffixChanged();
68   void videoSuffixChanged();
69   void imagePathChanged();
70   void videoPathChanged();
71   void temporaryVideoPathChanged();
72   void settingsChanged();
73
74 private:
75   QString fileName(const QString& path, const QString& suffix);
76   QString canonicalPath(const QString& path);
77   QString temporaryPath();
78
79   QString m_imageSuffix;
80   QString m_videoSuffix;
81   QString m_imagePath;
82   QString m_videoPath;
83   QString m_temporaryVideoPath;
84
85   Settings *m_settings;
86 };
87
88 #endif /* FILE_NAMING_H */