File: filewriter.h

package info (click to toggle)
sailcut 1.3.5-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,976 kB
  • ctags: 1,120
  • sloc: cpp: 12,369; python: 127; xml: 46; makefile: 7; sh: 7
file content (178 lines) | stat: -rw-r--r-- 4,586 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
 * Copyright (C) 1993-2009 Robert & Jeremy Laine
 * See AUTHORS file for a full list of contributors.
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef FILEWRITER_H
#define FILEWRITER_H

#ifdef WIN32
#define CRLF   endl
#else
#define CRLF "\r\n"
#endif

#include <iostream>
#include <stdexcept>

#include <QFileDialog>
#include <QMessageBox>

using namespace std;

class read_error : public runtime_error
{
public:
    read_error(const string &message) : runtime_error(message)
    {
        cout << what() << endl;
    }
};

class write_error : public runtime_error
{
public:
    write_error(const string &message) : runtime_error(message)
    {
        cout << what() << endl;
    }
};

/** This is a generic class used as the base for various file
 *  input and output modules.
 */
template <class objtype>
class CFileWriter : public QObject
{
public:
    /** The constructor.
     *
     * @param ext the file extension
     * @param desc description of the file type
     */
    CFileWriter(const QString &ext, const QString &desc) : _ext(ext), _desc(desc)
    {}
    ;


    /** Perform the actual reading operation, may be overriden
     *  to provide this functionality.
     */
    virtual const objtype read(const QString &) const
    {
        throw logic_error("Reading is not supported for this file type.");
    };


    /** Display a dialog then read file.
     *
     * @param dest the object we read to
     * @param filename initial file name
     */
    QString readDialog(objtype &dest, const QString &filename = "") const
    {
        QString newfilename = QFileDialog::getOpenFileName(0, tr("Open"), QFileInfo(filename).absolutePath(), _desc + " (*" + _ext + ")");

        if (!newfilename.isNull())
        {
            try
            {
                dest = read(newfilename);
            }
            catch (read_error e)
            {
                readErrorMessage();
                newfilename = QString::null;
            }
        }
        return newfilename;
    };


    /** Show an error message indicating that reading failed.
     */
    static void readErrorMessage()
    {
        QMessageBox::information(0, tr("error"), tr("There was an error reading from the selected file."));
    };


    /** Perform the actual writing operation, must be overriden.
     */
    virtual void write(const objtype &, const QString &) const = 0;


    /** Opens of a dialog to ask for a filename
     *  then writes to a file.
     *
     *  @param obj The object to write.
     *  @param filename The filename to start off with (default = "")
     */
    QString writeDialog(const objtype &obj, const QString &filename = QString::null) const
    {
        QString newfilename = QFileDialog::getSaveFileName(0, tr("Save"), filename, _desc + " (*" + _ext + ")");
        if (newfilename.isNull())
            return newfilename;

        if (newfilename.right(_ext.length()).toLower() != _ext)
            newfilename += _ext;

        try
        {
            write(obj, newfilename);
        }
        catch (write_error e)
        {
            writeErrorMessage();
            newfilename = QString::null;
        }
        return newfilename;
    };


    /** Show an error message indicating that writing failed.
     */
    static void writeErrorMessage()
    {
        QMessageBox::information(0, tr("error"), tr("There was an error writing to the selected file."));
    };


    /** Return the file extension associated with this CFileWriter.
     */
    QString getExtension() const
    {
        return _ext;
    };

    /**
     * Returns whether the given file is associated with this CFileWriter.
     */
    bool isDocument(QString filename) const
    {
        return (filename.right(_ext.length()).toLower() == _ext);
    };

protected:
    /** file extension */
    QString _ext;
    /** description of the file type */
    QString _desc;
};


#endif