clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
122 lines
3.1 KiB
C++
122 lines
3.1 KiB
C++
//===-- StringExtractor.h ---------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_UTILITY_STRINGEXTRACTOR_H
|
|
#define LLDB_UTILITY_STRINGEXTRACTOR_H
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
class StringExtractor {
|
|
public:
|
|
enum { BigEndian = 0, LittleEndian = 1 };
|
|
// Constructors and Destructors
|
|
StringExtractor();
|
|
StringExtractor(llvm::StringRef packet_str);
|
|
StringExtractor(const char *packet_cstr);
|
|
virtual ~StringExtractor();
|
|
|
|
void Reset(llvm::StringRef str) {
|
|
m_packet = std::string(str);
|
|
m_index = 0;
|
|
}
|
|
|
|
// Returns true if the file position is still valid for the data contained in
|
|
// this string extractor object.
|
|
bool IsGood() const { return m_index != UINT64_MAX; }
|
|
|
|
uint64_t GetFilePos() const { return m_index; }
|
|
|
|
void SetFilePos(uint32_t idx) { m_index = idx; }
|
|
|
|
void Clear() {
|
|
m_packet.clear();
|
|
m_index = 0;
|
|
}
|
|
|
|
void SkipSpaces();
|
|
|
|
llvm::StringRef GetStringRef() const { return m_packet; }
|
|
|
|
bool Empty() { return m_packet.empty(); }
|
|
|
|
size_t GetBytesLeft() {
|
|
if (m_index < m_packet.size())
|
|
return m_packet.size() - m_index;
|
|
return 0;
|
|
}
|
|
|
|
char GetChar(char fail_value = '\0');
|
|
|
|
char PeekChar(char fail_value = '\0') {
|
|
const char *cstr = Peek();
|
|
if (cstr)
|
|
return cstr[0];
|
|
return fail_value;
|
|
}
|
|
|
|
int DecodeHexU8();
|
|
|
|
uint8_t GetHexU8(uint8_t fail_value = 0, bool set_eof_on_fail = true);
|
|
|
|
bool GetHexU8Ex(uint8_t &ch, bool set_eof_on_fail = true);
|
|
|
|
bool GetNameColonValue(llvm::StringRef &name, llvm::StringRef &value);
|
|
|
|
int32_t GetS32(int32_t fail_value, int base = 0);
|
|
|
|
uint32_t GetU32(uint32_t fail_value, int base = 0);
|
|
|
|
int64_t GetS64(int64_t fail_value, int base = 0);
|
|
|
|
uint64_t GetU64(uint64_t fail_value, int base = 0);
|
|
|
|
uint32_t GetHexMaxU32(bool little_endian, uint32_t fail_value);
|
|
|
|
uint64_t GetHexMaxU64(bool little_endian, uint64_t fail_value);
|
|
|
|
size_t GetHexBytes(llvm::MutableArrayRef<uint8_t> dest,
|
|
uint8_t fail_fill_value);
|
|
|
|
size_t GetHexBytesAvail(llvm::MutableArrayRef<uint8_t> dest);
|
|
|
|
size_t GetHexByteString(std::string &str);
|
|
|
|
size_t GetHexByteStringFixedLength(std::string &str, uint32_t nibble_length);
|
|
|
|
size_t GetHexByteStringTerminatedBy(std::string &str, char terminator);
|
|
|
|
bool ConsumeFront(const llvm::StringRef &str);
|
|
|
|
const char *Peek() {
|
|
if (m_index < m_packet.size())
|
|
return m_packet.c_str() + m_index;
|
|
return nullptr;
|
|
}
|
|
|
|
protected:
|
|
bool fail() {
|
|
m_index = UINT64_MAX;
|
|
return false;
|
|
}
|
|
|
|
/// The string in which to extract data.
|
|
std::string m_packet;
|
|
|
|
/// When extracting data from a packet, this index will march along as things
|
|
/// get extracted. If set to UINT64_MAX the end of the packet data was
|
|
/// reached when decoding information.
|
|
uint64_t m_index = 0;
|
|
};
|
|
|
|
#endif // LLDB_UTILITY_STRINGEXTRACTOR_H
|