blob: 4de125ec02aa137cd49926cea9a27d77a5801212 [file] [log] [blame]
Daniel Jasperfe7beeb2012-07-16 09:18:17 +00001//===--- RefactoringCallbacks.cpp - Structural query framework ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10//
11//===----------------------------------------------------------------------===//
12#include "clang/Lex/Lexer.h"
Daniel Jasperd5c66dd2012-07-17 08:03:01 +000013#include "clang/Tooling/RefactoringCallbacks.h"
Daniel Jasperfe7beeb2012-07-16 09:18:17 +000014
15namespace clang {
Daniel Jasper8ee04482012-07-17 08:37:03 +000016namespace tooling {
Daniel Jasperfe7beeb2012-07-16 09:18:17 +000017
18RefactoringCallback::RefactoringCallback() {}
19tooling::Replacements &RefactoringCallback::getReplacements() {
20 return Replace;
21}
22
Daniel Jasper8ee04482012-07-17 08:37:03 +000023static Replacement replaceStmtWithText(SourceManager &Sources,
24 const Stmt &From,
25 StringRef Text) {
Daniel Jasperfe7beeb2012-07-16 09:18:17 +000026 return tooling::Replacement(Sources, CharSourceRange::getTokenRange(
27 From.getSourceRange()), Text);
28}
Daniel Jasper8ee04482012-07-17 08:37:03 +000029static Replacement replaceStmtWithStmt(SourceManager &Sources,
30 const Stmt &From,
31 const Stmt &To) {
Daniel Jasperfe7beeb2012-07-16 09:18:17 +000032 return replaceStmtWithText(Sources, From, Lexer::getSourceText(
33 CharSourceRange::getTokenRange(To.getSourceRange()),
34 Sources, LangOptions()));
35}
36
37ReplaceStmtWithText::ReplaceStmtWithText(StringRef FromId, StringRef ToText)
38 : FromId(FromId), ToText(ToText) {}
39
Daniel Jasper8ee04482012-07-17 08:37:03 +000040void ReplaceStmtWithText::run(
41 const ast_matchers::MatchFinder::MatchResult &Result) {
Daniel Jasperfe7beeb2012-07-16 09:18:17 +000042 if (const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId)) {
43 Replace.insert(tooling::Replacement(
44 *Result.SourceManager,
45 CharSourceRange::getTokenRange(FromMatch->getSourceRange()),
46 ToText));
47 }
48}
49
50ReplaceStmtWithStmt::ReplaceStmtWithStmt(StringRef FromId, StringRef ToId)
51 : FromId(FromId), ToId(ToId) {}
52
Daniel Jasper8ee04482012-07-17 08:37:03 +000053void ReplaceStmtWithStmt::run(
54 const ast_matchers::MatchFinder::MatchResult &Result) {
Daniel Jasperfe7beeb2012-07-16 09:18:17 +000055 const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId);
56 const Stmt *ToMatch = Result.Nodes.getStmtAs<Stmt>(ToId);
57 if (FromMatch && ToMatch)
58 Replace.insert(replaceStmtWithStmt(
59 *Result.SourceManager, *FromMatch, *ToMatch));
60}
61
62ReplaceIfStmtWithItsBody::ReplaceIfStmtWithItsBody(StringRef Id,
63 bool PickTrueBranch)
64 : Id(Id), PickTrueBranch(PickTrueBranch) {}
65
Daniel Jasper8ee04482012-07-17 08:37:03 +000066void ReplaceIfStmtWithItsBody::run(
67 const ast_matchers::MatchFinder::MatchResult &Result) {
Daniel Jasperfe7beeb2012-07-16 09:18:17 +000068 if (const IfStmt *Node = Result.Nodes.getStmtAs<IfStmt>(Id)) {
69 const Stmt *Body = PickTrueBranch ? Node->getThen() : Node->getElse();
70 if (Body) {
71 Replace.insert(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body));
72 } else if (!PickTrueBranch) {
73 // If we want to use the 'else'-branch, but it doesn't exist, delete
74 // the whole 'if'.
75 Replace.insert(replaceStmtWithText(*Result.SourceManager, *Node, ""));
76 }
77 }
78}
79
Daniel Jasper8ee04482012-07-17 08:37:03 +000080} // end namespace tooling
Daniel Jasperfe7beeb2012-07-16 09:18:17 +000081} // end namespace clang