aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/manuallevel/qt4-qstring-from-array.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/manuallevel/qt4-qstring-from-array.h')
-rw-r--r--src/checks/manuallevel/qt4-qstring-from-array.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/checks/manuallevel/qt4-qstring-from-array.h b/src/checks/manuallevel/qt4-qstring-from-array.h
new file mode 100644
index 00000000..01391bee
--- /dev/null
+++ b/src/checks/manuallevel/qt4-qstring-from-array.h
@@ -0,0 +1,56 @@
+/*
+ This file is part of the clazy static checker.
+
+ Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
+ Author: SĂ©rgio Martins <sergio.martins@kdab.com>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#ifndef CLAZY_QT4_QSTRING_FROM_ARRAY_H
+#define CLAZY_QT4_QSTRING_FROM_ARRAY_H
+
+#include "checkbase.h"
+#include <vector>
+
+namespace clang {
+class Stmt;
+class FixItHint;
+class CXXConstructExpr;
+class CXXOperatorCallExpr;
+class Expr;
+class CXXMemberCallExpr;
+}
+
+/**
+ * Replaces QString(char*) or QString(QByteArray) calls with QString::fromLatin1().
+ *
+ * Run only in Qt 4 code.
+ */
+class Qt4QStringFromArray : public CheckBase
+{
+public:
+ explicit Qt4QStringFromArray(const std::string &name, ClazyContext *context);
+ void VisitStmt(clang::Stmt *stmt) override;
+private:
+ std::vector<clang::FixItHint> fixCtorCall(clang::CXXConstructExpr *ctorExpr);
+ std::vector<clang::FixItHint> fixOperatorCall(clang::CXXOperatorCallExpr *ctorExpr);
+ std::vector<clang::FixItHint> fixMethodCallCall(clang::CXXMemberCallExpr *memberExpr);
+ std::vector<clang::FixItHint> fixitReplaceWithFromLatin1(clang::CXXConstructExpr *ctorExpr);
+ std::vector<clang::FixItHint> fixitInsertFromLatin1(clang::CXXConstructExpr *ctorExpr);
+};
+
+#endif