1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/file_highlighter.h"
#include "base/check_op.h"
#include "base/containers/stack.h"
namespace extensions {
namespace {
// Increment |index| to the position of the next quote ('"') in |str|, skipping
// over any escaped quotes. If no next quote is found, |index| is set to
// std::string::npos. Assumes |index| currently points to a quote.
void QuoteIncrement(const std::string& str, size_t* index) {
DCHECK_LT(*index, str.size());
size_t i = *index + 1; // Skip over the first quote.
bool found = false;
while (!found && i < str.size()) {
if (str[i] == '\\' && i + 1 < str.size()) {
i += 2; // if we find an escaped character, skip it.
} else if (str[i] == '"') {
found = true;
} else {
++i;
}
}
*index = found ? i : std::string::npos;
}
// Increment |index| by one if the next character is not a comment. Increment
// index until the end of the comment if it is a comment.
void CommentSafeIncrement(const std::string& str, size_t* index) {
DCHECK_LT(*index, str.size());
size_t i = *index;
if (str[i] == '/' && i + 1 < str.size()) {
// Eat a single-line comment.
if (str[i + 1] == '/') {
i += 2; // Eat the '//'.
while (i < str.size() && str[i] != '\n' && str[i] != '\r')
++i;
} else if (str[i + 1] == '*') { // Eat a multi-line comment.
// Eat "/*"
i += 2;
// Advance to the first possible comment end, if there are any chars left.
if (i < str.size()) {
++i;
}
while (i < str.size() && !(str[i - 1] == '*' && str[i] == '/')) {
++i;
}
}
}
if (i < str.size()) {
++i;
}
*index = i;
DCHECK_LE(*index, str.size());
}
// Increment index until the end of the current "chunk"; a "chunk" is a JSON-
// style list, object, or string literal, without exceeding |end|. Assumes
// |index| currently points to a chunk's starting character ('{', '[', or '"').
void ChunkIncrement(const std::string& str, size_t* index, size_t end) {
DCHECK_LE(*index, end);
DCHECK_LE(end, str.length());
base::stack<char> stack;
do {
char c = str[*index];
if (c == '"') {
QuoteIncrement(str, index);
if (*index == std::string::npos) {
*index = end;
break;
}
} else if (c == '[') {
stack.push(']');
} else if (c == '{') {
stack.push('}');
} else if (!stack.empty() && c == stack.top()) {
stack.pop();
}
CommentSafeIncrement(str, index);
} while (!stack.empty() && *index < end);
}
} // namespace
FileHighlighter::FileHighlighter(const std::string& contents)
: contents_(contents), start_(0u), end_(contents_.size()) {
}
FileHighlighter::~FileHighlighter() {
}
std::string FileHighlighter::GetBeforeFeature() const {
return contents_.substr(0, start_);
}
std::string FileHighlighter::GetFeature() const {
return contents_.substr(start_, end_ - start_);
}
std::string FileHighlighter::GetAfterFeature() const {
return contents_.substr(end_);
}
ManifestHighlighter::ManifestHighlighter(const std::string& manifest,
const std::string& key,
const std::string& specific)
: FileHighlighter(manifest) {
start_ = contents_.find('{');
end_ = contents_.rfind('}');
if (start_ == std::string::npos || end_ == std::string::npos ||
start_ > end_) {
start_ = contents_.size();
end_ = start_;
} else {
start_ = start_ + 1;
}
Parse(key, specific);
DCHECK_LE(start_, end_);
DCHECK_LE(end_, contents_.size());
}
ManifestHighlighter::~ManifestHighlighter() {
}
void ManifestHighlighter::Parse(const std::string& key,
const std::string& specific) {
// First, try to find the bounds of the full key.
if (FindBounds(key, true) /* enforce at top level */) {
// If we succeed, and we have a specific location, find the bounds of the
// specific.
if (!specific.empty()) {
FindBounds(specific, false /* don't enforce at top level */);
if (start_ > end_) {
start_ = end_;
}
}
// We may have found trailing whitespace. Don't use base::TrimWhitespace,
// because we want to keep any whitespace we find - just not highlight it.
size_t trim = contents_.find_last_not_of(" \t\n\r", end_ - 1);
if (trim < end_ && trim > start_) {
end_ = trim + 1;
}
} else {
// If we fail, then we set start to end so that the highlighted portion is
// empty.
start_ = end_;
}
}
bool ManifestHighlighter::FindBounds(const std::string& feature,
bool enforce_at_top_level) {
char c = '\0';
while (start_ < end_) {
c = contents_[start_];
if (c == '"') {
// The feature may be quoted.
size_t quote_end = start_;
QuoteIncrement(contents_, "e_end);
if (quote_end == std::string::npos) {
return false;
}
if (contents_.substr(start_ + 1, quote_end - 1 - start_) == feature) {
FindBoundsEnd(feature, quote_end + 1);
return true;
} else {
// If it's not the feature, then we can skip the quoted section.
start_ = quote_end + 1;
}
} else if (!feature.empty() &&
contents_.substr(start_, feature.size()) == feature) {
FindBoundsEnd(feature, start_ + feature.size() + 1);
return true;
} else if (enforce_at_top_level && (c == '{' || c == '[')) {
// If we don't have to be at the top level, then we can skip any chunks
// we find.
ChunkIncrement(contents_, &start_, end_);
} else {
CommentSafeIncrement(contents_, &start_);
}
}
return false;
}
void ManifestHighlighter::FindBoundsEnd(const std::string& feature,
size_t local_start) {
char c = '\0';
while (local_start < end_) {
c = contents_[local_start];
// We're done when we find a terminating character (i.e., either a comma or
// an ending bracket.
if (c == ',' || c == '}' || c == ']') {
end_ = local_start;
return;
}
// We can skip any chunks we find, since we are looking for the end of the
// current feature, and don't want to go any deeper.
if (c == '"' || c == '{' || c == '[') {
ChunkIncrement(contents_, &local_start, end_);
} else {
CommentSafeIncrement(contents_, &local_start);
}
}
}
SourceHighlighter::SourceHighlighter(const std::string& contents,
size_t line_number)
: FileHighlighter(contents) {
Parse(line_number);
}
SourceHighlighter::~SourceHighlighter() {
}
void SourceHighlighter::Parse(size_t line_number) {
// If line 0 is requested, highlight nothing.
if (line_number == 0) {
start_ = contents_.size();
return;
}
for (size_t i = 1; i < line_number; ++i) {
start_ = contents_.find('\n', start_);
if (start_ == std::string::npos) {
break;
}
start_ += 1;
}
end_ = contents_.find('\n', start_);
// If we went off the end of the string (i.e., the line number was invalid),
// then move start and end to the end of the string, so that the highlighted
// portion is empty.
start_ = start_ == std::string::npos ? contents_.size() : start_;
end_ = end_ == std::string::npos ? contents_.size() : end_;
}
} // namespace extensions
|