Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add github actions #1

Merged
merged 1 commit into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
Language: Cpp
# BasedOnStyle: LLVM
AccessModifierOffset: -4
ConstructorInitializerIndentWidth: 4
AlignEscapedNewlinesLeft: false
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: false
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AllowShortFunctionsOnASingleLine: All
AlwaysBreakTemplateDeclarations: true
AlwaysBreakBeforeMultilineStrings: false
BreakBeforeBinaryOperators: false
BreakBeforeTernaryOperators: true
BreakConstructorInitializersBeforeComma: false
BinPackParameters: true
ColumnLimit: 80
ConstructorInitializerAllOnOneLineOrOnePerLine: false
DerivePointerAlignment: false
ExperimentalAutoDetectBinPacking: false
IndentCaseLabels: false
IndentWrappedFunctionNames: false
IndentFunctionDeclarationAfterType: false
MaxEmptyLinesToKeep: 1
KeepEmptyLinesAtTheStartOfBlocks: true
NamespaceIndentation: None
ObjCSpaceAfterProperty: false
ObjCSpaceBeforeProtocolList: true
PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakComment: 300
PenaltyBreakString: 1000
PenaltyBreakFirstLessLess: 120
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Right
SpacesBeforeTrailingComments: 1
Cpp11BracedListStyle: true
Standard: Cpp11
IndentWidth: 4
TabWidth: 4
UseTab: Never
BreakBeforeBraces: Attach
SpacesInParentheses: false
SpacesInAngles: false
SpaceInEmptyParentheses: false
SpacesInCStyleCastParentheses: false
SpacesInContainerLiterals: true
SpaceBeforeAssignmentOperators: true
ContinuationIndentWidth: 4
CommentPragmas: '^ IWYU pragma:'
ForEachMacros: [ Q_FOREACH, BOOST_FOREACH ]
SpaceBeforeParens: ControlStatements
DisableFormat: false
SortIncludes: true
...

46 changes: 46 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
clang-format:
name: Check clang-format
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- name: Install dependencies
run: |
pacman -Syu --noconfirm git clang diffutils
git config --global --add safe.directory $GITHUB_WORKSPACE
- uses: actions/checkout@v4
- uses: fcitx/github-actions@clang-format
check:
name: Build and test
needs: clang-format
runs-on: ubuntu-latest
container: archlinux:latest
strategy:
fail-fast: false
matrix:
compiler: [gcc, clang]
include:
- compiler: gcc
cxx_compiler: g++
- compiler: clang
cxx_compiler: clang++
env:
CC: ${{ matrix.compiler }}
CXX: ${{ matrix.cxx_compiler }}
steps:
- name: Install dependencies
run: |
pacman -Syu --noconfirm base-devel clang cmake ninja extra-cmake-modules qt6-base ktexttemplate
- uses: actions/checkout@v4
- name: Build and Install fcitx5-configtool
uses: fcitx/github-actions@cmake
with:
path: .
71 changes: 36 additions & 35 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,62 +5,63 @@
*
*/

#include <cstdlib>
#include "protocol.h"
#include <QCommandLineOption>
#include <QCommandLineParser>
#include <QCoreApplication>
#include <QLatin1String>
#include <QLoggingCategory>
#include <QtLogging>
#include <cstdlib>
#include <ktexttemplate/metatype.h>
#include <qcontainerfwd.h>
#include "protocol.h"

Q_LOGGING_CATEGORY(generator, "generator");

QtMessageHandler defaultHandler = nullptr;

void logHandler(const QtMsgType type, const QMessageLogContext &context,
const QString &msg) {
defaultHandler(type, context, msg);
if (context.category == QLatin1String("generator") && type == QtCriticalMsg) {
::exit(1);
}
const QString &msg) {
defaultHandler(type, context, msg);
if (context.category == QLatin1String("generator") &&
type == QtCriticalMsg) {
::exit(1);
}
}

int main(int argc, char *argv[]) {
defaultHandler = qInstallMessageHandler(logHandler);
QCoreApplication app(argc, argv);
QCommandLineParser parser;
defaultHandler = qInstallMessageHandler(logHandler);
QCoreApplication app(argc, argv);
QCommandLineParser parser;

parser.addOption(QCommandLineOption(
"includes", "Comma-separated list of extra includes.", "includes"));
parser.addOption(QCommandLineOption(
"namespace", "Namespace for the generated code.", "namespace"));
parser.addOption(
QCommandLineOption("directory", "Output directory.", "directory", "."));
parser.addHelpOption();
parser.addPositionalArgument("files", "Input files.",
"[deps_protocol_file] main_protocol_file");
parser.process(app);
parser.addOption(QCommandLineOption(
"includes", "Comma-separated list of extra includes.", "includes"));
parser.addOption(QCommandLineOption(
"namespace", "Namespace for the generated code.", "namespace"));
parser.addOption(
QCommandLineOption("directory", "Output directory.", "directory", "."));
parser.addHelpOption();
parser.addPositionalArgument("files", "Input files.",
"[deps_protocol_file] main_protocol_file");
parser.process(app);

EmitOptions options;
if (parser.isSet("includes")) {
options.extraIncludes_ = parser.values("includes");
}
if (parser.isSet("namespace")) {
options.namespaces_ = parser.value("namespace").split("::");
}
options.directory_ = parser.value("directory");
EmitOptions options;
if (parser.isSet("includes")) {
options.extraIncludes_ = parser.values("includes");
}
if (parser.isSet("namespace")) {
options.namespaces_ = parser.value("namespace").split("::");
}
options.directory_ = parser.value("directory");

const auto filenames = parser.positionalArguments();
const auto filenames = parser.positionalArguments();

KTextTemplate::registerMetaType<Message>();
KTextTemplate::registerMetaType<Message *>();
KTextTemplate::registerMetaType<Argument>();
KTextTemplate::registerMetaType<Message>();
KTextTemplate::registerMetaType<Message *>();
KTextTemplate::registerMetaType<Argument>();

Protocol protocol(filenames);
protocol.generate(options);
Protocol protocol(filenames);
protocol.generate(options);

return 0;
return 0;
}
66 changes: 39 additions & 27 deletions src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
*/

#include "parser.h"
#include <list>
#include <memory>
#include <utility>
#include "protocol.h"
#include <QDebug>
#include <QFile>
#include <QLoggingCategory>
#include <QStringView>
#include <QXmlStreamReader>
#include <QtLogging>
#include <list>
#include <memory>
#include <qdebug.h>
#include <qlogging.h>
#include <QStringView>
#include <QLoggingCategory>
#include "protocol.h"
#include <utility>

Q_DECLARE_LOGGING_CATEGORY(generator);

Expand Down Expand Up @@ -78,7 +78,8 @@ void ParseContext::startElement(QStringView element_name,
bool ok = false;
version = att.value().toUInt(&ok);
if (!ok) {
qCCritical(generator) << "wrong version (" << att.value() << ")";
qCCritical(generator)
<< "wrong version (" << att.value() << ")";
}
}
if (att.name() == "type") {
Expand Down Expand Up @@ -151,8 +152,9 @@ void ParseContext::startElement(QStringView element_name,
if (!ok) {
qCCritical(generator) << "invalid integer (" << since << ")";
} else if (version > interface_->version_) {
qCCritical(generator) << "since (" << version << ") larger than version ("
<< interface_->version_ << ")";
qCCritical(generator)
<< "since (" << version << ") larger than version ("
<< interface_->version_ << ")";
}
} else {
version = 1;
Expand All @@ -165,7 +167,8 @@ void ParseContext::startElement(QStringView element_name,
message_->since_ = version;

if (name == "destroy" && !message_->destructor_) {
qCCritical(generator) << "destroy request should be destructor type";
qCCritical(generator)
<< "destroy request should be destructor type";
}
} else if (element_name == "arg") {
if (name.isEmpty()) {
Expand All @@ -187,7 +190,8 @@ void ParseContext::startElement(QStringView element_name,
break;
default:
if (!interface_name.isEmpty()) {
qCCritical(generator) << "interface attribute not allowed for type " << type;
qCCritical(generator)
<< "interface attribute not allowed for type " << type;
}
break;
}
Expand All @@ -198,13 +202,15 @@ void ParseContext::startElement(QStringView element_name,
} else if (allow_null == "false") {
arg->nullable_ = false;
} else {
qCCritical(generator) << "invalid value for allow-null attribute ("
<< allow_null << ")";
qCCritical(generator)
<< "invalid value for allow-null attribute (" << allow_null
<< ")";
}

if (!arg->isNullableType()) {
qCCritical(generator) << "allow-null is only valid for objects, strings, "
"and arrays";
qCCritical(generator)
<< "allow-null is only valid for objects, strings, "
"and arrays";
}
}

Expand All @@ -223,9 +229,10 @@ void ParseContext::startElement(QStringView element_name,
} else if (bitfield == "true") {
enumeration_->bitfield_ = true;
} else {
qCCritical(generator) << "invalid value (" << bitfield
<< ") for bitfield attribute (only true/false "
"are accepted)";
qCCritical(generator)
<< "invalid value (" << bitfield
<< ") for bitfield attribute (only true/false "
"are accepted)";
}
} else if (element_name == "entry") {
if (name.isEmpty()) {
Expand All @@ -239,33 +246,37 @@ void ParseContext::startElement(QStringView element_name,
}
}

void ParseContext::verifyArguments(Interface *interface,
std::list<Message> *messages,
std::list<Enumeration> * /*enumerations*/) const {
void ParseContext::verifyArguments(
Interface *interface, std::list<Message> *messages,
std::list<Enumeration> * /*enumerations*/) const {
for (auto &m : *messages) {
for (auto &a : m.argList_) {

if (a.enumerationName_.isEmpty()) {
continue;
}

const auto *e = protocol_->findEnumeration(interface, a.enumerationName_);
const auto *e =
protocol_->findEnumeration(interface, a.enumerationName_);

if (!e) {
qCCritical(generator) << "could not find enumeration " << a.enumerationName_;
qCCritical(generator)
<< "could not find enumeration " << a.enumerationName_;
}

switch (a.type_) {
case INT:
if (e->bitfield_) {
qCCritical(generator) << "bitfield-style enum must only be referenced "
"by uint";
qCCritical(generator)
<< "bitfield-style enum must only be referenced "
"by uint";
}
break;
case UNSIGNED:
break;
default:
qCCritical(generator) << "enumeration-style argument has wrong type";
qCCritical(generator)
<< "enumeration-style argument has wrong type";
}
}
}
Expand All @@ -290,7 +301,8 @@ void ParseContext::endElement(QStringView name) {
message_ = nullptr;
} else if (name == "enum") {
if (enumeration_->entryList_.empty()) {
qCCritical(generator) << "enumeration " << enumeration_->name_ << " was empty";
qCCritical(generator)
<< "enumeration " << enumeration_->name_ << " was empty";
}
enumeration_ = nullptr;
} else if (name == "protocol") {
Expand Down
Loading