1//===--- 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" 13#include "clang/Tooling/RefactoringCallbacks.h" 14 15namespace clang { 16namespace tooling { 17 18RefactoringCallback::RefactoringCallback() {} 19tooling::Replacements &RefactoringCallback::getReplacements() { 20 return Replace; 21} 22 23static Replacement replaceStmtWithText(SourceManager &Sources, 24 const Stmt &From, 25 StringRef Text) { 26 return tooling::Replacement(Sources, CharSourceRange::getTokenRange( 27 From.getSourceRange()), Text); 28} 29static Replacement replaceStmtWithStmt(SourceManager &Sources, 30 const Stmt &From, 31 const Stmt &To) { 32 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 40void ReplaceStmtWithText::run( 41 const ast_matchers::MatchFinder::MatchResult &Result) { 42 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 53void ReplaceStmtWithStmt::run( 54 const ast_matchers::MatchFinder::MatchResult &Result) { 55 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 66void ReplaceIfStmtWithItsBody::run( 67 const ast_matchers::MatchFinder::MatchResult &Result) { 68 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 80} // end namespace tooling 81} // end namespace clang 82