summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-02-12 10:24:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-02-12 10:29:38 +0200
commit78bd5d5fb4ff0545985d8ac7bc02a0454ce13afc (patch)
tree529d6408cf61d6b56d7b90aabc5fbe8c3aed3893 /compilerplugins
parentfc80919370169748864cbbeee8b0c9bbc5d82376 (diff)
loplugin:changerectanglegetref also fix Point and Size
Change-Id: I373af0a62e3785c4abc2d27b0b31121c9d596ca3
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/changerectanglegetref.cxx73
1 files changed, 55 insertions, 18 deletions
diff --git a/compilerplugins/clang/changerectanglegetref.cxx b/compilerplugins/clang/changerectanglegetref.cxx
index b943e9f4516c..f687693ee8cb 100644
--- a/compilerplugins/clang/changerectanglegetref.cxx
+++ b/compilerplugins/clang/changerectanglegetref.cxx
@@ -36,11 +36,12 @@ public:
bool VisitCXXMemberCallExpr(CXXMemberCallExpr const* call);
private:
- bool ChangeAssignment(Stmt const* parent, std::string const& methodName);
+ bool ChangeAssignment(Stmt const* parent, std::string const& methodName,
+ std::string const& setPrefix);
bool ChangeBinaryOperator(BinaryOperator const* parent, CXXMemberCallExpr const* call,
- std::string const& methodName);
+ std::string const& methodName, std::string const& setPrefix);
bool ChangeUnaryOperator(UnaryOperator const* parent, CXXMemberCallExpr const* call,
- std::string const& methodName);
+ std::string const& methodName, std::string const& setPrefix);
std::string extractCode(SourceLocation startLoc, SourceLocation endLoc);
};
@@ -60,14 +61,47 @@ bool ChangeRectangleGetRef::VisitCXXMemberCallExpr(CXXMemberCallExpr const* call
return true;
auto dc = loplugin::DeclCheck(func);
std::string methodName;
+ std::string setPrefix;
if (dc.Function("Top").Class("Rectangle").Namespace("tools").GlobalNamespace())
+ {
methodName = "Top";
+ setPrefix = "Set";
+ }
else if (dc.Function("Bottom").Class("Rectangle").Namespace("tools").GlobalNamespace())
+ {
methodName = "Bottom";
+ setPrefix = "Set";
+ }
else if (dc.Function("Left").Class("Rectangle").Namespace("tools").GlobalNamespace())
+ {
methodName = "Left";
+ setPrefix = "Set";
+ }
else if (dc.Function("Right").Class("Rectangle").Namespace("tools").GlobalNamespace())
+ {
methodName = "Right";
+ setPrefix = "Set";
+ }
+ else if (dc.Function("X").Class("Point").GlobalNamespace())
+ {
+ methodName = "X";
+ setPrefix = "set";
+ }
+ else if (dc.Function("Y").Class("Point").GlobalNamespace())
+ {
+ methodName = "Y";
+ setPrefix = "set";
+ }
+ else if (dc.Function("Width").Class("Size").GlobalNamespace())
+ {
+ methodName = "Width";
+ setPrefix = "set";
+ }
+ else if (dc.Function("Height").Class("Size").GlobalNamespace())
+ {
+ methodName = "Height";
+ setPrefix = "set";
+ }
else
return true;
if (!loplugin::TypeCheck(func->getReturnType()).LvalueReference())
@@ -78,7 +112,7 @@ bool ChangeRectangleGetRef::VisitCXXMemberCallExpr(CXXMemberCallExpr const* call
return true;
if (auto unaryOp = dyn_cast<UnaryOperator>(parent))
{
- if (!ChangeUnaryOperator(unaryOp, call, methodName))
+ if (!ChangeUnaryOperator(unaryOp, call, methodName, setPrefix))
report(DiagnosticsEngine::Warning, "Could not fix this one1", call->getLocStart());
return true;
}
@@ -92,21 +126,22 @@ bool ChangeRectangleGetRef::VisitCXXMemberCallExpr(CXXMemberCallExpr const* call
auto opcode = binaryOp->getOpcode();
if (opcode == BO_Assign)
{
- if (!ChangeAssignment(parent, methodName))
+ if (!ChangeAssignment(parent, methodName, setPrefix))
report(DiagnosticsEngine::Warning, "Could not fix this one4", call->getLocStart());
return true;
}
if (opcode == BO_RemAssign || opcode == BO_AddAssign || opcode == BO_SubAssign
|| opcode == BO_MulAssign || opcode == BO_DivAssign)
{
- if (!ChangeBinaryOperator(binaryOp, call, methodName))
+ if (!ChangeBinaryOperator(binaryOp, call, methodName, setPrefix))
report(DiagnosticsEngine::Warning, "Could not fix this one5", call->getLocStart());
return true;
}
return true;
}
-bool ChangeRectangleGetRef::ChangeAssignment(Stmt const* parent, std::string const& methodName)
+bool ChangeRectangleGetRef::ChangeAssignment(Stmt const* parent, std::string const& methodName,
+ std::string const& setPrefix)
{
// Look for expressions like
// aRect.Left() = ...;
@@ -124,7 +159,7 @@ bool ChangeRectangleGetRef::ChangeAssignment(Stmt const* parent, std::string con
auto originalLength = callText.size();
auto newText = std::regex_replace(callText, std::regex(methodName + "\\(\\) *="),
- "Set" + methodName + "(");
+ setPrefix + methodName + "(");
if (newText == callText)
return false;
newText += " )";
@@ -134,7 +169,8 @@ bool ChangeRectangleGetRef::ChangeAssignment(Stmt const* parent, std::string con
bool ChangeRectangleGetRef::ChangeBinaryOperator(BinaryOperator const* binaryOp,
CXXMemberCallExpr const* call,
- std::string const& methodName)
+ std::string const& methodName,
+ std::string const& setPrefix)
{
// Look for expressions like
// aRect.Left() += ...;
@@ -182,14 +218,14 @@ bool ChangeRectangleGetRef::ChangeBinaryOperator(BinaryOperator const* binaryOp,
auto implicitObjectText = extractCode(call->getImplicitObjectArgument()->getExprLoc(),
call->getImplicitObjectArgument()->getExprLoc());
auto newText = std::regex_replace(callText, std::regex(methodName + "\\(\\) *" + regexOpname),
- "Set" + methodName + "( " + implicitObjectText + ".Get"
+ setPrefix + methodName + "( " + implicitObjectText + "."
+ methodName + "() " + replaceOpname + " ");
if (newText == callText)
return false;
// sometimes we end up with duplicate spaces after the opname
- newText = std::regex_replace(
- newText, std::regex("Get" + methodName + "\\(\\) \\" + replaceOpname + " "),
- "Get" + methodName + "() " + replaceOpname + " ");
+ newText
+ = std::regex_replace(newText, std::regex(methodName + "\\(\\) \\" + replaceOpname + " "),
+ methodName + "() " + replaceOpname + " ");
newText += " )";
return replaceText(startLoc, originalLength, newText);
@@ -197,7 +233,8 @@ bool ChangeRectangleGetRef::ChangeBinaryOperator(BinaryOperator const* binaryOp,
bool ChangeRectangleGetRef::ChangeUnaryOperator(UnaryOperator const* unaryOp,
CXXMemberCallExpr const* call,
- std::string const& methodName)
+ std::string const& methodName,
+ std::string const& setPrefix)
{
// Look for expressions like
// aRect.Left()++;
@@ -238,16 +275,16 @@ bool ChangeRectangleGetRef::ChangeUnaryOperator(UnaryOperator const* unaryOp,
{
auto newText
= std::regex_replace(callText, std::regex(methodName + "\\(\\) *" + regexOpname),
- "Set" + methodName + "( " + replaceOpname + implicitObjectText
- + ".Get" + methodName + "()");
+ setPrefix + methodName + "( " + replaceOpname + implicitObjectText
+ + "." + methodName + "()");
return replaceText(startLoc, originalLength, newText);
}
else
{
auto newText
= std::regex_replace(callText, std::regex(regexOpname + " *" + methodName + "\\(\\)"),
- "Set" + methodName + "( " + replaceOpname + implicitObjectText
- + ".Get" + methodName + "()");
+ setPrefix + methodName + "( " + replaceOpname + implicitObjectText
+ + "." + methodName + "()");
return replaceText(startLoc, originalLength, newText);
}
}