Bump version.
[simple-x264-launcher.git] / src / model_logFile.cpp
blobb7a9a99a6b51e49a100d6fdc171bba956cc593b0
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #include "model_logFile.h"
23 #include "thread_encode.h"
25 #include <QIcon>
26 #include <QApplication>
27 #include <QClipboard>
28 #include <QDir>
29 #include <QTextStream>
31 LogFileModel::LogFileModel(const QString &sourceName, const QString &outputName, const QString &configName)
33 m_lines << "Job not started yet." << QString();
34 m_lines << QString("Scheduled source: %1").arg(QDir::toNativeSeparators(sourceName));
35 m_lines << QString("Scheduled output: %1").arg(QDir::toNativeSeparators(outputName));
36 m_lines << QString("Scheduled config: %1").arg(configName);
37 m_firstLine = true;
40 LogFileModel::~LogFileModel(void)
44 ///////////////////////////////////////////////////////////////////////////////
45 // Model interface
46 ///////////////////////////////////////////////////////////////////////////////
48 int LogFileModel::columnCount(const QModelIndex &parent) const
50 return 1;
53 int LogFileModel::rowCount(const QModelIndex &parent) const
55 return m_lines.count();
58 QVariant LogFileModel::headerData(int section, Qt::Orientation orientation, int role) const
60 return QVariant();
63 QModelIndex LogFileModel::index(int row, int column, const QModelIndex &parent) const
65 return createIndex(row, column, NULL);
68 QModelIndex LogFileModel::parent(const QModelIndex &index) const
70 return QModelIndex();
73 QVariant LogFileModel::data(const QModelIndex &index, int role) const
75 if((role == Qt::DisplayRole) || (role == Qt::ToolTipRole))
77 if(index.row() >= 0 && index.row() < m_lines.count() && index.column() == 0)
79 return m_lines.at(index.row());
83 return QVariant();
86 ///////////////////////////////////////////////////////////////////////////////
87 // Public API
88 ///////////////////////////////////////////////////////////////////////////////
90 void LogFileModel::copyToClipboard(void)
92 QClipboard *clipboard = QApplication::clipboard();
93 clipboard->setText(m_lines.join("\r\n"));
96 bool LogFileModel::saveToLocalFile(const QString &fileName)
98 QFile file(fileName);
99 if(!file.open(QIODevice::WriteOnly | QIODevice::Truncate))
101 return false;
104 QTextStream stream(&file);
105 stream.setCodec("UTF-8");
106 stream.setGenerateByteOrderMark(true);
108 for(QStringList::ConstIterator iter = m_lines.constBegin(); iter != m_lines.constEnd(); iter++)
110 stream << (*iter) << QLatin1String("\r\n");
111 if(stream.status() != QTextStream::Status::Ok)
113 file.close();
114 return false;
118 stream.flush();
119 if(stream.status() != QTextStream::Status::Ok)
121 file.close();
122 return false;
125 file.close();
126 return true;
129 ///////////////////////////////////////////////////////////////////////////////
130 // Slots
131 ///////////////////////////////////////////////////////////////////////////////
133 void LogFileModel::addLogMessage(const QUuid &jobId, const QString &text)
135 beginInsertRows(QModelIndex(), m_lines.count(), m_lines.count());
137 if(m_firstLine)
139 m_firstLine = false;
140 m_lines.clear();
143 QStringList lines = text.split("\n");
144 for(int i = 0; i < lines.count(); i++)
146 m_lines.append(lines.at(i));
149 endInsertRows();