2016-04-17 09:30:14 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-04-17 09:30:14 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-04-17 09:30:14 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtCore/QString>
|
2016-04-18 20:33:43 +00:00
|
|
|
#include <QtCore/QVector>
|
|
|
|
#include <QtCore/QTextStream>
|
2016-04-17 09:30:14 +00:00
|
|
|
|
|
|
|
namespace codegen {
|
2016-04-18 20:33:43 +00:00
|
|
|
namespace common {
|
2016-04-17 09:30:14 +00:00
|
|
|
|
2016-04-18 20:33:43 +00:00
|
|
|
struct ProjectInfo {
|
|
|
|
QString name;
|
|
|
|
QString source;
|
|
|
|
bool forceReGenerate;
|
2016-04-17 09:30:14 +00:00
|
|
|
};
|
|
|
|
|
2016-04-18 20:33:43 +00:00
|
|
|
// Creates a file with license header and codegen warning.
|
|
|
|
class CppFile {
|
|
|
|
public:
|
|
|
|
// If "basepath" is empty the folder containing "path" will be chosen.
|
|
|
|
// File ending with .cpp will be treated as source, otherwise like header.
|
|
|
|
CppFile(const QString &path, const ProjectInfo &project);
|
2016-04-17 13:22:00 +00:00
|
|
|
|
2016-04-18 20:33:43 +00:00
|
|
|
QTextStream &stream() {
|
|
|
|
return stream_;
|
2016-04-17 13:22:00 +00:00
|
|
|
}
|
|
|
|
|
2016-04-18 20:33:43 +00:00
|
|
|
CppFile &newline() {
|
|
|
|
stream() << "\n";
|
|
|
|
return *this;
|
2016-04-17 13:22:00 +00:00
|
|
|
}
|
2016-04-18 20:33:43 +00:00
|
|
|
CppFile &include(const QString &header);
|
2016-04-17 09:30:14 +00:00
|
|
|
|
2016-04-18 20:33:43 +00:00
|
|
|
// Empty name adds anonymous namespace.
|
|
|
|
CppFile &pushNamespace(const QString &name = QString());
|
|
|
|
CppFile &popNamespace();
|
|
|
|
|
|
|
|
bool finalize();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString filepath_;
|
|
|
|
QByteArray content_;
|
|
|
|
QTextStream stream_;
|
|
|
|
QVector<QString> namespaces_;
|
|
|
|
bool forceReGenerate_;
|
2016-04-17 13:22:00 +00:00
|
|
|
|
2016-04-17 09:30:14 +00:00
|
|
|
};
|
|
|
|
|
2016-04-18 20:33:43 +00:00
|
|
|
} // namespace common
|
2016-04-17 09:30:14 +00:00
|
|
|
} // namespace codegen
|