blob: 2620e3786d29eb40dcb66a7bac70c08295877cbb [file] [log] [blame]
Daniel Maleae0f8f572013-08-26 23:57:52 +00001//===-- StreamGDBRemote.cpp -------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Zachary Turnerfb1a0a02017-03-06 18:34:25 +000010#include "lldb/Utility/StreamGDBRemote.h"
Zachary Turner4479ac12017-04-06 18:12:24 +000011
12#include "lldb/Utility/Flags.h" // for Flags
13#include "lldb/Utility/Stream.h" // for Stream::::eBinary
14
Daniel Maleae0f8f572013-08-26 23:57:52 +000015#include <stdio.h>
16
17using namespace lldb;
18using namespace lldb_private;
19
Kate Stoneb9c1b512016-09-06 20:57:50 +000020StreamGDBRemote::StreamGDBRemote() : StreamString() {}
21
22StreamGDBRemote::StreamGDBRemote(uint32_t flags, uint32_t addr_size,
23 ByteOrder byte_order)
24 : StreamString(flags, addr_size, byte_order) {}
25
26StreamGDBRemote::~StreamGDBRemote() {}
27
28int StreamGDBRemote::PutEscapedBytes(const void *s, size_t src_len) {
29 int bytes_written = 0;
30 const uint8_t *src = (const uint8_t *)s;
31 bool binary_is_set = m_flags.Test(eBinary);
32 m_flags.Clear(eBinary);
33 while (src_len) {
34 uint8_t byte = *src;
35 src++;
36 src_len--;
37 if (byte == 0x23 || byte == 0x24 || byte == 0x7d || byte == 0x2a) {
38 bytes_written += PutChar(0x7d);
39 byte ^= 0x20;
40 }
41 bytes_written += PutChar(byte);
42 };
43 if (binary_is_set)
44 m_flags.Set(eBinary);
45 return bytes_written;
Daniel Maleae0f8f572013-08-26 23:57:52 +000046}