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
|
//===-- GDBRemoteCommunicationHistory.cpp -----------------------*- 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
//
//===----------------------------------------------------------------------===//
#include "GDBRemoteCommunicationHistory.h"
// Other libraries and framework includes
#include "lldb/Core/StreamFile.h"
#include "lldb/Utility/ConstString.h"
#include "lldb/Utility/Log.h"
using namespace llvm;
using namespace lldb;
using namespace lldb_private;
using namespace lldb_private::process_gdb_remote;
void GDBRemoteCommunicationHistory::Entry::Serialize(raw_ostream &strm) const {
yaml::Output yout(strm);
yout << const_cast<GDBRemoteCommunicationHistory::Entry &>(*this);
strm.flush();
}
GDBRemoteCommunicationHistory::GDBRemoteCommunicationHistory(uint32_t size)
: m_packets(), m_curr_idx(0), m_total_packet_count(0),
m_dumped_to_log(false) {
if (size)
m_packets.resize(size);
}
GDBRemoteCommunicationHistory::~GDBRemoteCommunicationHistory() {}
void GDBRemoteCommunicationHistory::AddPacket(char packet_char, PacketType type,
uint32_t bytes_transmitted) {
const size_t size = m_packets.size();
if (size == 0)
return;
const uint32_t idx = GetNextIndex();
m_packets[idx].packet.data.assign(1, packet_char);
m_packets[idx].type = type;
m_packets[idx].bytes_transmitted = bytes_transmitted;
m_packets[idx].packet_idx = m_total_packet_count;
m_packets[idx].tid = llvm::get_threadid();
if (m_stream)
m_packets[idx].Serialize(*m_stream);
}
void GDBRemoteCommunicationHistory::AddPacket(const std::string &src,
uint32_t src_len, PacketType type,
uint32_t bytes_transmitted) {
const size_t size = m_packets.size();
if (size == 0)
return;
const uint32_t idx = GetNextIndex();
m_packets[idx].packet.data.assign(src, 0, src_len);
m_packets[idx].type = type;
m_packets[idx].bytes_transmitted = bytes_transmitted;
m_packets[idx].packet_idx = m_total_packet_count;
m_packets[idx].tid = llvm::get_threadid();
if (m_stream)
m_packets[idx].Serialize(*m_stream);
}
void GDBRemoteCommunicationHistory::Dump(Stream &strm) const {
const uint32_t size = GetNumPacketsInHistory();
const uint32_t first_idx = GetFirstSavedPacketIndex();
const uint32_t stop_idx = m_curr_idx + size;
for (uint32_t i = first_idx; i < stop_idx; ++i) {
const uint32_t idx = NormalizeIndex(i);
const Entry &entry = m_packets[idx];
if (entry.type == ePacketTypeInvalid || entry.packet.data.empty())
break;
strm.Printf("history[%u] tid=0x%4.4" PRIx64 " <%4u> %s packet: %s\n",
entry.packet_idx, entry.tid, entry.bytes_transmitted,
(entry.type == ePacketTypeSend) ? "send" : "read",
entry.packet.data.c_str());
}
}
void GDBRemoteCommunicationHistory::Dump(Log *log) const {
if (!log || m_dumped_to_log)
return;
m_dumped_to_log = true;
const uint32_t size = GetNumPacketsInHistory();
const uint32_t first_idx = GetFirstSavedPacketIndex();
const uint32_t stop_idx = m_curr_idx + size;
for (uint32_t i = first_idx; i < stop_idx; ++i) {
const uint32_t idx = NormalizeIndex(i);
const Entry &entry = m_packets[idx];
if (entry.type == ePacketTypeInvalid || entry.packet.data.empty())
break;
log->Printf("history[%u] tid=0x%4.4" PRIx64 " <%4u> %s packet: %s",
entry.packet_idx, entry.tid, entry.bytes_transmitted,
(entry.type == ePacketTypeSend) ? "send" : "read",
entry.packet.data.c_str());
}
}
void yaml::ScalarEnumerationTraits<GDBRemoteCommunicationHistory::PacketType>::
enumeration(IO &io, GDBRemoteCommunicationHistory::PacketType &value) {
io.enumCase(value, "Invalid",
GDBRemoteCommunicationHistory::ePacketTypeInvalid);
io.enumCase(value, "Send", GDBRemoteCommunicationHistory::ePacketTypeSend);
io.enumCase(value, "Recv", GDBRemoteCommunicationHistory::ePacketTypeRecv);
}
void yaml::ScalarTraits<GDBRemoteCommunicationHistory::Entry::BinaryData>::
output(const GDBRemoteCommunicationHistory::Entry::BinaryData &Val, void *,
raw_ostream &Out) {
Out << toHex(Val.data);
}
StringRef
yaml::ScalarTraits<GDBRemoteCommunicationHistory::Entry::BinaryData>::input(
StringRef Scalar, void *,
GDBRemoteCommunicationHistory::Entry::BinaryData &Val) {
Val.data = fromHex(Scalar);
return {};
}
void yaml::MappingTraits<GDBRemoteCommunicationHistory::Entry>::mapping(
IO &io, GDBRemoteCommunicationHistory::Entry &Entry) {
io.mapRequired("packet", Entry.packet);
io.mapRequired("type", Entry.type);
io.mapRequired("bytes", Entry.bytes_transmitted);
io.mapRequired("index", Entry.packet_idx);
io.mapRequired("tid", Entry.tid);
}
StringRef yaml::MappingTraits<GDBRemoteCommunicationHistory::Entry>::validate(
IO &io, GDBRemoteCommunicationHistory::Entry &Entry) {
if (Entry.bytes_transmitted != Entry.packet.data.size())
return "BinaryData size doesn't match bytes transmitted";
return {};
}
|