Benjamin Kramer | 2f5db8b | 2014-08-13 16:25:19 +0000 | [diff] [blame] | 1 | #ifndef LLVM_CLANG_LIB_ANALYSIS_FORMATSTRINGPARSING_H |
| 2 | #define LLVM_CLANG_LIB_ANALYSIS_FORMATSTRINGPARSING_H |
Ted Kremenek | 575e89d | 2010-07-16 02:11:26 +0000 | [diff] [blame] | 3 | |
Ted Kremenek | 575e89d | 2010-07-16 02:11:26 +0000 | [diff] [blame] | 4 | #include "clang/AST/ASTContext.h" |
| 5 | #include "clang/AST/Type.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 6 | #include "clang/Analysis/Analyses/FormatString.h" |
Ted Kremenek | 575e89d | 2010-07-16 02:11:26 +0000 | [diff] [blame] | 7 | |
Dan Gohman | 28ade55 | 2010-07-26 21:25:24 +0000 | [diff] [blame] | 8 | namespace clang { |
| 9 | |
Hans Wennborg | 23926bd | 2011-12-15 10:25:47 +0000 | [diff] [blame] | 10 | class LangOptions; |
| 11 | |
Ted Kremenek | 575e89d | 2010-07-16 02:11:26 +0000 | [diff] [blame] | 12 | template <typename T> |
| 13 | class UpdateOnReturn { |
| 14 | T &ValueToUpdate; |
| 15 | const T &ValueToCopy; |
| 16 | public: |
| 17 | UpdateOnReturn(T &valueToUpdate, const T &valueToCopy) |
| 18 | : ValueToUpdate(valueToUpdate), ValueToCopy(valueToCopy) {} |
| 19 | |
| 20 | ~UpdateOnReturn() { |
| 21 | ValueToUpdate = ValueToCopy; |
| 22 | } |
| 23 | }; |
| 24 | |
Ted Kremenek | 575e89d | 2010-07-16 02:11:26 +0000 | [diff] [blame] | 25 | namespace analyze_format_string { |
| 26 | |
| 27 | OptionalAmount ParseAmount(const char *&Beg, const char *E); |
| 28 | OptionalAmount ParseNonPositionAmount(const char *&Beg, const char *E, |
| 29 | unsigned &argIndex); |
| 30 | |
| 31 | OptionalAmount ParsePositionAmount(FormatStringHandler &H, |
| 32 | const char *Start, const char *&Beg, |
| 33 | const char *E, PositionContext p); |
| 34 | |
| 35 | bool ParseFieldWidth(FormatStringHandler &H, |
| 36 | FormatSpecifier &CS, |
| 37 | const char *Start, const char *&Beg, const char *E, |
| 38 | unsigned *argIndex); |
| 39 | |
| 40 | bool ParseArgPosition(FormatStringHandler &H, |
| 41 | FormatSpecifier &CS, const char *Start, |
| 42 | const char *&Beg, const char *E); |
| 43 | |
| 44 | /// Returns true if a LengthModifier was parsed and installed in the |
| 45 | /// FormatSpecifier& argument, and false otherwise. |
Hans Wennborg | 23926bd | 2011-12-15 10:25:47 +0000 | [diff] [blame] | 46 | bool ParseLengthModifier(FormatSpecifier &FS, const char *&Beg, const char *E, |
| 47 | const LangOptions &LO, bool IsScanf = false); |
Bruno Cardoso Lopes | 0c18d03 | 2016-03-29 17:35:02 +0000 | [diff] [blame] | 48 | |
| 49 | /// Returns true if the invalid specifier in \p SpecifierBegin is a UTF-8 |
| 50 | /// string; check that it won't go further than \p FmtStrEnd and write |
| 51 | /// up the total size in \p Len. |
| 52 | bool ParseUTF8InvalidSpecifier(const char *SpecifierBegin, |
| 53 | const char *FmtStrEnd, unsigned &Len); |
| 54 | |
Ted Kremenek | 575e89d | 2010-07-16 02:11:26 +0000 | [diff] [blame] | 55 | template <typename T> class SpecifierResult { |
| 56 | T FS; |
| 57 | const char *Start; |
| 58 | bool Stop; |
| 59 | public: |
| 60 | SpecifierResult(bool stop = false) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 61 | : Start(nullptr), Stop(stop) {} |
Ted Kremenek | 575e89d | 2010-07-16 02:11:26 +0000 | [diff] [blame] | 62 | SpecifierResult(const char *start, |
| 63 | const T &fs) |
| 64 | : FS(fs), Start(start), Stop(false) {} |
| 65 | |
| 66 | const char *getStart() const { return Start; } |
| 67 | bool shouldStop() const { return Stop; } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 68 | bool hasValue() const { return Start != nullptr; } |
Ted Kremenek | 575e89d | 2010-07-16 02:11:26 +0000 | [diff] [blame] | 69 | const T &getValue() const { |
| 70 | assert(hasValue()); |
| 71 | return FS; |
| 72 | } |
| 73 | const T &getValue() { return FS; } |
| 74 | }; |
| 75 | |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 76 | } // end analyze_format_string namespace |
| 77 | } // end clang namespace |
Ted Kremenek | 575e89d | 2010-07-16 02:11:26 +0000 | [diff] [blame] | 78 | |
| 79 | #endif |