Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 1 | //===--- Refactoring.cpp - Framework for clang refactoring tools ----------===// |
| 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 | // Implements tools to support refactorings. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Douglas Gregor | 02c23eb | 2012-10-23 22:26:28 +0000 | [diff] [blame] | 14 | #include "clang/Basic/DiagnosticOptions.h" |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 15 | #include "clang/Basic/FileManager.h" |
| 16 | #include "clang/Basic/SourceManager.h" |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 17 | #include "clang/Frontend/TextDiagnosticPrinter.h" |
| 18 | #include "clang/Lex/Lexer.h" |
Ted Kremenek | 305c613 | 2012-09-01 05:09:24 +0000 | [diff] [blame] | 19 | #include "clang/Rewrite/Core/Rewriter.h" |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 20 | #include "clang/Tooling/Refactoring.h" |
| 21 | #include "llvm/Support/raw_os_ostream.h" |
| 22 | |
| 23 | namespace clang { |
| 24 | namespace tooling { |
| 25 | |
| 26 | static const char * const InvalidLocation = ""; |
| 27 | |
| 28 | Replacement::Replacement() |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame^] | 29 | : FilePath(InvalidLocation) {} |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 30 | |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame^] | 31 | Replacement::Replacement(StringRef FilePath, unsigned Offset, unsigned Length, |
| 32 | StringRef ReplacementText) |
| 33 | : FilePath(FilePath), ReplacementRange(Offset, Length), |
| 34 | ReplacementText(ReplacementText) {} |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 35 | |
| 36 | Replacement::Replacement(SourceManager &Sources, SourceLocation Start, |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 37 | unsigned Length, StringRef ReplacementText) { |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 38 | setFromSourceLocation(Sources, Start, Length, ReplacementText); |
| 39 | } |
| 40 | |
| 41 | Replacement::Replacement(SourceManager &Sources, const CharSourceRange &Range, |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 42 | StringRef ReplacementText) { |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 43 | setFromSourceRange(Sources, Range, ReplacementText); |
| 44 | } |
| 45 | |
| 46 | bool Replacement::isApplicable() const { |
| 47 | return FilePath != InvalidLocation; |
| 48 | } |
| 49 | |
| 50 | bool Replacement::apply(Rewriter &Rewrite) const { |
| 51 | SourceManager &SM = Rewrite.getSourceMgr(); |
| 52 | const FileEntry *Entry = SM.getFileManager().getFile(FilePath); |
| 53 | if (Entry == NULL) |
| 54 | return false; |
| 55 | FileID ID; |
| 56 | // FIXME: Use SM.translateFile directly. |
| 57 | SourceLocation Location = SM.translateFileLineCol(Entry, 1, 1); |
| 58 | ID = Location.isValid() ? |
| 59 | SM.getFileID(Location) : |
| 60 | SM.createFileID(Entry, SourceLocation(), SrcMgr::C_User); |
| 61 | // FIXME: We cannot check whether Offset + Length is in the file, as |
| 62 | // the remapping API is not public in the RewriteBuffer. |
| 63 | const SourceLocation Start = |
| 64 | SM.getLocForStartOfFile(ID). |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame^] | 65 | getLocWithOffset(ReplacementRange.getOffset()); |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 66 | // ReplaceText returns false on success. |
| 67 | // ReplaceText only fails if the source location is not a file location, in |
| 68 | // which case we already returned false earlier. |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame^] | 69 | bool RewriteSucceeded = !Rewrite.ReplaceText( |
| 70 | Start, ReplacementRange.getLength(), ReplacementText); |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 71 | assert(RewriteSucceeded); |
| 72 | return RewriteSucceeded; |
| 73 | } |
| 74 | |
Manuel Klimek | 5d51e88 | 2012-05-30 16:04:29 +0000 | [diff] [blame] | 75 | std::string Replacement::toString() const { |
| 76 | std::string result; |
| 77 | llvm::raw_string_ostream stream(result); |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame^] | 78 | stream << FilePath << ": " << ReplacementRange.getOffset() << ":+" |
| 79 | << ReplacementRange.getLength() << ":\"" << ReplacementText << "\""; |
Manuel Klimek | 5d51e88 | 2012-05-30 16:04:29 +0000 | [diff] [blame] | 80 | return result; |
| 81 | } |
| 82 | |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 83 | bool Replacement::Less::operator()(const Replacement &R1, |
| 84 | const Replacement &R2) const { |
| 85 | if (R1.FilePath != R2.FilePath) return R1.FilePath < R2.FilePath; |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame^] | 86 | if (R1.ReplacementRange.getOffset() != R2.ReplacementRange.getOffset()) |
| 87 | return R1.ReplacementRange.getOffset() < R2.ReplacementRange.getOffset(); |
| 88 | if (R1.ReplacementRange.getLength() != R2.ReplacementRange.getLength()) |
| 89 | return R1.ReplacementRange.getLength() < R2.ReplacementRange.getLength(); |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 90 | return R1.ReplacementText < R2.ReplacementText; |
| 91 | } |
| 92 | |
| 93 | void Replacement::setFromSourceLocation(SourceManager &Sources, |
| 94 | SourceLocation Start, unsigned Length, |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 95 | StringRef ReplacementText) { |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 96 | const std::pair<FileID, unsigned> DecomposedLocation = |
| 97 | Sources.getDecomposedLoc(Start); |
| 98 | const FileEntry *Entry = Sources.getFileEntryForID(DecomposedLocation.first); |
| 99 | this->FilePath = Entry != NULL ? Entry->getName() : InvalidLocation; |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame^] | 100 | this->ReplacementRange = Range(DecomposedLocation.second, Length); |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 101 | this->ReplacementText = ReplacementText; |
| 102 | } |
| 103 | |
| 104 | // FIXME: This should go into the Lexer, but we need to figure out how |
| 105 | // to handle ranges for refactoring in general first - there is no obvious |
| 106 | // good way how to integrate this into the Lexer yet. |
| 107 | static int getRangeSize(SourceManager &Sources, const CharSourceRange &Range) { |
| 108 | SourceLocation SpellingBegin = Sources.getSpellingLoc(Range.getBegin()); |
| 109 | SourceLocation SpellingEnd = Sources.getSpellingLoc(Range.getEnd()); |
| 110 | std::pair<FileID, unsigned> Start = Sources.getDecomposedLoc(SpellingBegin); |
| 111 | std::pair<FileID, unsigned> End = Sources.getDecomposedLoc(SpellingEnd); |
| 112 | if (Start.first != End.first) return -1; |
| 113 | if (Range.isTokenRange()) |
| 114 | End.second += Lexer::MeasureTokenLength(SpellingEnd, Sources, |
| 115 | LangOptions()); |
| 116 | return End.second - Start.second; |
| 117 | } |
| 118 | |
| 119 | void Replacement::setFromSourceRange(SourceManager &Sources, |
| 120 | const CharSourceRange &Range, |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 121 | StringRef ReplacementText) { |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 122 | setFromSourceLocation(Sources, Sources.getSpellingLoc(Range.getBegin()), |
| 123 | getRangeSize(Sources, Range), ReplacementText); |
| 124 | } |
| 125 | |
| 126 | bool applyAllReplacements(Replacements &Replaces, Rewriter &Rewrite) { |
| 127 | bool Result = true; |
| 128 | for (Replacements::const_iterator I = Replaces.begin(), |
| 129 | E = Replaces.end(); |
| 130 | I != E; ++I) { |
| 131 | if (I->isApplicable()) { |
| 132 | Result = I->apply(Rewrite) && Result; |
| 133 | } else { |
| 134 | Result = false; |
| 135 | } |
| 136 | } |
| 137 | return Result; |
| 138 | } |
| 139 | |
Daniel Jasper | 8a99945 | 2013-05-16 10:40:07 +0000 | [diff] [blame^] | 140 | std::string applyAllReplacements(StringRef Code, Replacements &Replaces) { |
| 141 | FileManager Files((FileSystemOptions())); |
| 142 | DiagnosticsEngine Diagnostics( |
| 143 | IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs), |
| 144 | new DiagnosticOptions); |
| 145 | Diagnostics.setClient(new TextDiagnosticPrinter( |
| 146 | llvm::outs(), &Diagnostics.getDiagnosticOptions())); |
| 147 | SourceManager SourceMgr(Diagnostics, Files); |
| 148 | Rewriter Rewrite(SourceMgr, LangOptions()); |
| 149 | llvm::MemoryBuffer *Buf = llvm::MemoryBuffer::getMemBuffer(Code, "<stdin>"); |
| 150 | const clang::FileEntry *Entry = |
| 151 | Files.getVirtualFile("<stdin>", Buf->getBufferSize(), 0); |
| 152 | SourceMgr.overrideFileContents(Entry, Buf); |
| 153 | FileID ID = |
| 154 | SourceMgr.createFileID(Entry, SourceLocation(), clang::SrcMgr::C_User); |
| 155 | for (Replacements::iterator I = Replaces.begin(), E = Replaces.end(); I != E; |
| 156 | ++I) { |
| 157 | Replacement Replace("<stdin>", I->getOffset(), I->getLength(), |
| 158 | I->getReplacementText()); |
| 159 | if (!Replace.apply(Rewrite)) |
| 160 | return ""; |
| 161 | } |
| 162 | std::string Result; |
| 163 | llvm::raw_string_ostream OS(Result); |
| 164 | Rewrite.getEditBuffer(ID).write(OS); |
| 165 | OS.flush(); |
| 166 | return Result; |
| 167 | } |
| 168 | |
Edwin Vane | d088a5f | 2013-01-11 17:04:55 +0000 | [diff] [blame] | 169 | RefactoringTool::RefactoringTool(const CompilationDatabase &Compilations, |
| 170 | ArrayRef<std::string> SourcePaths) |
| 171 | : ClangTool(Compilations, SourcePaths) {} |
| 172 | |
| 173 | Replacements &RefactoringTool::getReplacements() { return Replace; } |
| 174 | |
| 175 | int RefactoringTool::runAndSave(FrontendActionFactory *ActionFactory) { |
| 176 | if (int Result = run(ActionFactory)) { |
| 177 | return Result; |
| 178 | } |
| 179 | |
| 180 | LangOptions DefaultLangOptions; |
| 181 | IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); |
| 182 | TextDiagnosticPrinter DiagnosticPrinter(llvm::errs(), &*DiagOpts); |
| 183 | DiagnosticsEngine Diagnostics( |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 184 | IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs()), |
Edwin Vane | d088a5f | 2013-01-11 17:04:55 +0000 | [diff] [blame] | 185 | &*DiagOpts, &DiagnosticPrinter, false); |
| 186 | SourceManager Sources(Diagnostics, getFiles()); |
| 187 | Rewriter Rewrite(Sources, DefaultLangOptions); |
| 188 | |
| 189 | if (!applyAllReplacements(Rewrite)) { |
| 190 | llvm::errs() << "Skipped some replacements.\n"; |
| 191 | } |
| 192 | |
| 193 | return saveRewrittenFiles(Rewrite); |
| 194 | } |
| 195 | |
| 196 | bool RefactoringTool::applyAllReplacements(Rewriter &Rewrite) { |
| 197 | return tooling::applyAllReplacements(Replace, Rewrite); |
| 198 | } |
| 199 | |
| 200 | int RefactoringTool::saveRewrittenFiles(Rewriter &Rewrite) { |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 201 | for (Rewriter::buffer_iterator I = Rewrite.buffer_begin(), |
| 202 | E = Rewrite.buffer_end(); |
| 203 | I != E; ++I) { |
| 204 | // FIXME: This code is copied from the FixItRewriter.cpp - I think it should |
| 205 | // go into directly into Rewriter (there we also have the Diagnostics to |
| 206 | // handle the error cases better). |
| 207 | const FileEntry *Entry = |
| 208 | Rewrite.getSourceMgr().getFileEntryForID(I->first); |
| 209 | std::string ErrorInfo; |
| 210 | llvm::raw_fd_ostream FileStream( |
| 211 | Entry->getName(), ErrorInfo, llvm::raw_fd_ostream::F_Binary); |
| 212 | if (!ErrorInfo.empty()) |
Edwin Vane | d088a5f | 2013-01-11 17:04:55 +0000 | [diff] [blame] | 213 | return 1; |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 214 | I->second.write(FileStream); |
| 215 | FileStream.flush(); |
| 216 | } |
Edwin Vane | d088a5f | 2013-01-11 17:04:55 +0000 | [diff] [blame] | 217 | return 0; |
Manuel Klimek | f9d4cbd | 2012-05-23 16:29:20 +0000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | } // end namespace tooling |
| 221 | } // end namespace clang |