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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
#include "templatemanager_p.h"
#include "JlCompress.h"
#include "smallUsefulFunctions.h"
/*** TemplateHandle **********************************************************/
// *INDENT-OFF* (astyle-config)
TemplateHandle::TemplateHandle(const TemplateHandle &th) : m_tmpl(0) { setTmpl(th.m_tmpl); }
TemplateHandle::TemplateHandle(Template *tmpl) : m_tmpl(0) { setTmpl(tmpl); }
TemplateHandle::~TemplateHandle() { setTmpl(0); }
bool TemplateHandle::isValid() const { return (m_tmpl); }
TemplateHandle& TemplateHandle::operator = (const TemplateHandle& th) {
setTmpl(th.m_tmpl);
return *this;
}
QString TemplateHandle::name() const { return (m_tmpl) ? m_tmpl->name() : QString(); }
QString TemplateHandle::description() const { return (m_tmpl) ? m_tmpl->description() : QString(); }
QString TemplateHandle::author() const { return (m_tmpl) ? m_tmpl->author() : QString(); }
QString TemplateHandle::version() const { return (m_tmpl) ? m_tmpl->version() : QString(); }
QDate TemplateHandle::date() const { return (m_tmpl) ? m_tmpl->date() : QDate(); }
QString TemplateHandle::license() const { return (m_tmpl) ? m_tmpl->license() : QString(); }
QPixmap TemplateHandle::previewImage() const { return (m_tmpl) ? m_tmpl->previewImage() : QPixmap(); }
QString TemplateHandle::file() const { return (m_tmpl) ? m_tmpl->file() : QString(); }
bool TemplateHandle::isEditable() const { return (m_tmpl) ? m_tmpl->isEditable() : false; }
bool TemplateHandle::isMultifile() const { return (m_tmpl) ? m_tmpl->isMultifile() : false; }
bool TemplateHandle::createInFolder(const QString &path) const { return (m_tmpl) ? m_tmpl->createInFolder(path) : false; }
QStringList TemplateHandle::filesToOpen() const { return (m_tmpl) ? m_tmpl->filesToOpen() : QStringList(); }
// *INDENT-ON* (astyle-config)
void TemplateHandle::setTmpl(Template *tmpl)
{
if ( m_tmpl ) m_tmpl->deref(this);
m_tmpl = tmpl;
if ( m_tmpl ) m_tmpl->ref(this);
}
/*** Template ****************************************************************/
bool Template::createInFolder(const QString &path)
{
QDir dir(path);
if (!dir.exists()) {
bool created = dir.mkpath(".");
if (!created) return false;
} else {
QStringList entries = dir.entryList(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files);
if (!entries.isEmpty()) {
bool ok = txsConfirmWarning(QCoreApplication::translate("TemplateManager", "The target folder is not empty. It is recommended to instantiate "
"in new folders. Otherwise existing files may be overwritten. "
"Do you wish to use this folder anyway?"));
if (!ok) return false;
}
}
if (!isMultifile()) {
QFileInfo fi(file());
QFileInfo target(dir, fi.fileName());
return QFile::copy(file(), target.absoluteFilePath());
} else {
bool success = !JlCompress::extractDir(file(), dir.absolutePath()).isEmpty();
return success;
}
return false;
}
/*** LocalFileTemplate *******************************************************/
QDate LocalFileTemplate::date() const
{
QDate d;
d = QDate::fromString(metaData["Date"], Qt::ISODate);
if (!d.isValid())
d = QDate::fromString(metaData["Date"], Qt::SystemLocaleShortDate);
return d;
}
QStringList LocalFileTemplate::filesToOpen() const
{
QStringList files;
foreach (const QString & f, metaData["FilesToOpen"].split(";")) {
QString ft(f.trimmed());
if (!ft.isEmpty())
files << ft;
}
return files;
}
LocalFileTemplate::LocalFileTemplate(QString mainfile) : m_mainfile(mainfile), m_editable(false) {}
void LocalFileTemplate::init()
{
if (!readMetaData()) {
metaData.insert("Name", QFileInfo(file()).baseName());
}
}
QString LocalFileTemplate::imageFile() const
{
QString fname = replaceFileExtension(m_mainfile, "png");
return (QFileInfo(fname).exists()) ? fname : QString();
}
/*** LocalLatexTemplate ******************************************************/
bool LocalLatexTemplate::readMetaData()
{
QFile f(replaceFileExtension(file(), "json"));
if (!f.exists()) {
f.setFileName(replaceFileExtension(file(), "meta")); // in a very early version of meta data .meta was used instead of .json
if (!f.exists())
return false;
}
if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
txsWarning(TemplateManager::tr("You do not have read permission to this file:") + QString("\n%1").arg(f.fileName()));
return false;
}
QTextStream in(&f);
in.setCodec("UTF-8");
return minimalJsonParse(in.readAll(), metaData);
}
bool LocalLatexTemplate::saveMetaData()
{
QFile f(file());
if (!f.open(QIODevice::WriteOnly | QIODevice::Text))
return false;
QTextStream out(&f);
out.setCodec("UTF-8");
out << "{\n";
bool first = true;
foreach (const QString &key, metaData.keys()) {
if (first) {
first = false;
} else {
out << ",\n";
}
out << formatJsonStringParam(key, metaData[key], 13);
}
out << "\n}";
return true;
}
/*** LocalTableTemplate ******************************************************/
bool LocalTableTemplate::readMetaData()
{
QString jsonData;
QFile f(file());
if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
txsWarning(TemplateManager::tr("You do not have read permission to this file:") + QString("\n%1").arg(f.fileName()));
return false;
}
jsonData = f.readLine();
int col = jsonData.indexOf(QRegExp("\\s*var\\s+metaData\\s+=\\s+\\{"));
if (col < 0) return false;
jsonData = jsonData.mid(col);
QString all = f.readAll();
jsonData.append(all); // works with minimalJsonParse because it stops after the first top level {}
// should check when switching to a real JSON parser. However with this it is
// easy to extract var metaData = {}
return minimalJsonParse(jsonData, metaData);
}
/*** LocalFileTemplateResource **********************************************/
LocalFileTemplateResource::LocalFileTemplateResource(QString path, QStringList filters, QString name, QObject *parent, QIcon icon)
: QObject(parent), AbstractTemplateResource(), m_path(path), m_filters(filters), m_name(name), m_icon(icon)
{ }
LocalFileTemplateResource::~LocalFileTemplateResource()
{
foreach (LocalFileTemplate *lft, m_templates)
delete lft;
}
QList<TemplateHandle> LocalFileTemplateResource::getTemplates()
{
QList<TemplateHandle> l;
foreach (LocalFileTemplate *tmpl, m_templates)
l.append(TemplateHandle(tmpl));
return l;
}
bool LocalFileTemplateResource::isAccessible()
{
QDir dir(m_path);
return dir.exists() && dir.isReadable();
}
void LocalFileTemplateResource::setEditable(bool b)
{
foreach (LocalFileTemplate *tmpl, m_templates) {
tmpl->m_editable = b;
}
}
void LocalFileTemplateResource::update()
{
foreach (LocalFileTemplate *lft, m_templates)
delete lft;
m_templates.clear();
QDir dir(m_path);
foreach (QString fname, dir.entryList(m_filters, QDir::Files | QDir::Readable, QDir::Name)) {
LocalFileTemplate *lft = createTemplate(QFileInfo(dir, fname).absoluteFilePath());
if (lft)
m_templates.append(lft);
}
}
|