blob: 25c493f567827d00509c9df7590956b5547546d3 [file] [log] [blame]
Richard Thomson8930aab2016-03-27 16:43:44 +00001//===--- RawStringLiteralCheck.h - clang-tidy--------------------*- C++ -*-===//
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#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_RAW_STRING_LITERAL_H
11#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_RAW_STRING_LITERAL_H
12
13#include "../ClangTidy.h"
Richard Thomson8930aab2016-03-27 16:43:44 +000014
15namespace clang {
16namespace tidy {
17namespace modernize {
18
19/// This check replaces string literals with escaped characters to
20/// raw string literals.
21///
22/// For the user-facing documentation see:
23/// http://clang.llvm.org/extra/clang-tidy/checks/modernize-raw-string-literal.html
24class RawStringLiteralCheck : public ClangTidyCheck {
25public:
26 RawStringLiteralCheck(StringRef Name, ClangTidyContext *Context);
27
28 void storeOptions(ClangTidyOptions::OptionMap &Options) override;
29 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
30 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
31
32private:
33 void replaceWithRawStringLiteral(
34 const ast_matchers::MatchFinder::MatchResult &Result,
Gabor Horvath3ac2ad7d6c2017-01-24 15:18:11 +000035 const StringLiteral *Literal, StringRef Replacement);
Richard Thomson8930aab2016-03-27 16:43:44 +000036
37 std::string DelimiterStem;
Gabor Horvath3ac2ad7d6c2017-01-24 15:18:11 +000038 const bool ReplaceShorterLiterals;
Richard Thomson8930aab2016-03-27 16:43:44 +000039};
40
41} // namespace modernize
42} // namespace tidy
43} // namespace clang
44
45#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_RAW_STRING_LITERAL_H