blob: 4c987c91d947f44b0e685cdd944d8579b18bf6b4 [file] [log] [blame]
/**
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "strings/stringpiece_utils.h"
#include <vector>
#include "strings/ascii_ctype.h"
namespace StringPieceUtils {
int RemoveLeadingWhitespace(StringPiece* text) {
int count = 0;
const char* ptr = text->data();
while (count < text->size() && ascii_isspace(*ptr)) {
count++;
ptr++;
}
text->remove_prefix(count);
return count;
}
int RemoveTrailingWhitespace(StringPiece* text) {
int count = 0;
const char* ptr = text->data() + text->size() - 1;
while (count < text->size() && ascii_isspace(*ptr)) {
++count;
--ptr;
}
text->remove_suffix(count);
return count;
}
int RemoveWhitespaceContext(StringPiece* text) {
// use RemoveLeadingWhitespace() and RemoveTrailingWhitespace() to do the job
return (RemoveLeadingWhitespace(text) + RemoveTrailingWhitespace(text));
}
template <typename DelimType>
static void SplitInternal(const StringPiece& full, DelimType delim,
std::vector<StringPiece>* result) {
StringPiece::size_type begin_index, end_index;
begin_index = full.find_first_not_of(delim);
while (begin_index != StringPiece::npos) {
end_index = full.find_first_of(delim, begin_index);
if (end_index == StringPiece::npos) {
result->push_back(StringPiece(full.data() + begin_index,
full.size() - begin_index));
return;
}
result->push_back(StringPiece(full.data() + begin_index,
end_index - begin_index));
begin_index = full.find_first_not_of(delim, end_index);
}
}
// the code below is similar to SplitStringUsing in strings/strutil.cc but
// this one returns a vector of pieces in the original string thus eliminating
// the allocation/copy for each string in the result vector.
/* static */
void Split(const StringPiece& full, const char* delim,
std::vector<StringPiece>* result) {
if (delim[0] != '\0' && delim[1] == '\0') {
SplitInternal(full, delim[0], result);
} else {
SplitInternal(full, delim, result);
}
}
} // namespace StringPieceUtils