mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 20:54:40 +08:00
don't crash if we disable logging when some code already has a copy of the logger. Prior to this fix, logs were handed out as pointers and if they were held onto while a log got disabled, then it could cause a crash. Now all logs are handed out as shared pointers so this problem shouldn't happen anymore. We are also using our new shared pointers that put the shared pointer count and the object into the same allocation for a tad better performance. llvm-svn: 118319
278 lines
7.4 KiB
C++
278 lines
7.4 KiB
C++
//===-- SBCommunication.cpp -------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/API/SBCommunication.h"
|
|
#include "lldb/API/SBBroadcaster.h"
|
|
#include "lldb/Core/Communication.h"
|
|
#include "lldb/Core/ConnectionFileDescriptor.h"
|
|
#include "lldb/Core/Log.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
SBCommunication::SBCommunication() :
|
|
m_opaque (NULL),
|
|
m_opaque_owned (false)
|
|
{
|
|
}
|
|
|
|
SBCommunication::SBCommunication(const char * broadcaster_name) :
|
|
m_opaque (new Communication (broadcaster_name)),
|
|
m_opaque_owned (true)
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
if (log)
|
|
log->Printf ("SBCommunication::SBCommunication (broadcaster_name=\"%s\") => "
|
|
"SBCommunication(%p)", broadcaster_name, m_opaque);
|
|
}
|
|
|
|
SBCommunication::~SBCommunication()
|
|
{
|
|
if (m_opaque && m_opaque_owned)
|
|
delete m_opaque;
|
|
m_opaque = NULL;
|
|
m_opaque_owned = false;
|
|
}
|
|
|
|
ConnectionStatus
|
|
SBCommunication::CheckIfBytesAvailable ()
|
|
{
|
|
if (m_opaque)
|
|
return m_opaque->BytesAvailable (0, NULL);
|
|
return eConnectionStatusNoConnection;
|
|
}
|
|
|
|
ConnectionStatus
|
|
SBCommunication::WaitForBytesAvailableInfinite ()
|
|
{
|
|
if (m_opaque)
|
|
return m_opaque->BytesAvailable (UINT32_MAX, NULL);
|
|
return eConnectionStatusNoConnection;
|
|
}
|
|
|
|
ConnectionStatus
|
|
SBCommunication::WaitForBytesAvailableWithTimeout (uint32_t timeout_usec)
|
|
{
|
|
if (m_opaque)
|
|
return m_opaque->BytesAvailable (timeout_usec, NULL);
|
|
return eConnectionStatusNoConnection;
|
|
}
|
|
|
|
ConnectionStatus
|
|
SBCommunication::Connect (const char *url)
|
|
{
|
|
if (m_opaque)
|
|
{
|
|
if (!m_opaque->HasConnection ())
|
|
m_opaque->SetConnection (new ConnectionFileDescriptor());
|
|
return m_opaque->Connect (url, NULL);
|
|
}
|
|
return eConnectionStatusNoConnection;
|
|
}
|
|
|
|
ConnectionStatus
|
|
SBCommunication::AdoptFileDesriptor (int fd, bool owns_fd)
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
ConnectionStatus status = eConnectionStatusNoConnection;
|
|
if (m_opaque)
|
|
{
|
|
if (m_opaque->HasConnection ())
|
|
{
|
|
if (m_opaque->IsConnected())
|
|
m_opaque->Disconnect();
|
|
}
|
|
m_opaque->SetConnection (new ConnectionFileDescriptor (fd, owns_fd));
|
|
if (m_opaque->IsConnected())
|
|
status = eConnectionStatusSuccess;
|
|
else
|
|
status = eConnectionStatusLostConnection;
|
|
}
|
|
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::AdoptFileDescriptor (fd=%d, ownd_fd=%i) => %s",
|
|
m_opaque, fd, owns_fd, Communication::ConnectionStatusAsCString (status));
|
|
|
|
return status;
|
|
}
|
|
|
|
|
|
ConnectionStatus
|
|
SBCommunication::Disconnect ()
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
ConnectionStatus status= eConnectionStatusNoConnection;
|
|
if (m_opaque)
|
|
status = m_opaque->Disconnect ();
|
|
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::Disconnect () => %s", m_opaque,
|
|
Communication::ConnectionStatusAsCString (status));
|
|
|
|
return status;
|
|
}
|
|
|
|
bool
|
|
SBCommunication::IsConnected () const
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
bool result = false;
|
|
if (m_opaque)
|
|
result = m_opaque->IsConnected ();
|
|
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::IsConnected () => %i", m_opaque, result);
|
|
|
|
return false;
|
|
}
|
|
|
|
size_t
|
|
SBCommunication::Read (void *dst, size_t dst_len, uint32_t timeout_usec, ConnectionStatus &status)
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::Read (dst=%p, dst_len=%zu, timeout_usec=%u, &status)...",
|
|
m_opaque, dst, dst_len, timeout_usec);
|
|
size_t bytes_read = 0;
|
|
if (m_opaque)
|
|
bytes_read = m_opaque->Read (dst, dst_len, timeout_usec, status, NULL);
|
|
else
|
|
status = eConnectionStatusNoConnection;
|
|
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::Read (dst=%p, dst_len=%zu, timeout_usec=%u, &status=%s) => %zu",
|
|
m_opaque, dst, dst_len, timeout_usec, Communication::ConnectionStatusAsCString (status),
|
|
bytes_read);
|
|
return bytes_read;
|
|
}
|
|
|
|
|
|
size_t
|
|
SBCommunication::Write (const void *src, size_t src_len, ConnectionStatus &status)
|
|
{
|
|
size_t bytes_written = 0;
|
|
if (m_opaque)
|
|
bytes_written = m_opaque->Write (src, src_len, status, NULL);
|
|
else
|
|
status = eConnectionStatusNoConnection;
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::Write (src=%p, src_len=%zu, &status=%s) => %zu",
|
|
m_opaque, src, src_len, Communication::ConnectionStatusAsCString (status), bytes_written);
|
|
|
|
return 0;
|
|
}
|
|
|
|
bool
|
|
SBCommunication::ReadThreadStart ()
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
bool success = false;
|
|
if (m_opaque)
|
|
success = m_opaque->StartReadThread ();
|
|
|
|
log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API);
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::ReadThreadStart () => %i", m_opaque, success);
|
|
|
|
return success;
|
|
}
|
|
|
|
|
|
bool
|
|
SBCommunication::ReadThreadStop ()
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::ReadThreadStop ()...", m_opaque);
|
|
|
|
bool success = false;
|
|
if (m_opaque)
|
|
success = m_opaque->StopReadThread ();
|
|
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::ReadThreadStop () => %i", m_opaque, success);
|
|
|
|
return success;
|
|
}
|
|
|
|
bool
|
|
SBCommunication::ReadThreadIsRunning ()
|
|
{
|
|
bool result = false;
|
|
if (m_opaque)
|
|
result = m_opaque->ReadThreadIsRunning ();
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::ReadThreadIsRunning () => %i", m_opaque, result);
|
|
return result;
|
|
}
|
|
|
|
bool
|
|
SBCommunication::SetReadThreadBytesReceivedCallback
|
|
(
|
|
ReadThreadBytesReceived callback,
|
|
void *callback_baton
|
|
)
|
|
{
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
bool result = false;
|
|
if (m_opaque)
|
|
{
|
|
m_opaque->SetReadThreadBytesReceivedCallback (callback, callback_baton);
|
|
result = true;
|
|
}
|
|
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::SetReadThreadBytesReceivedCallback (callback=%p, baton=%p) => %i",
|
|
m_opaque, callback, callback_baton, result);
|
|
|
|
return result;
|
|
}
|
|
|
|
SBBroadcaster
|
|
SBCommunication::GetBroadcaster ()
|
|
{
|
|
SBBroadcaster broadcaster (m_opaque, false);
|
|
|
|
LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
|
|
|
|
if (log)
|
|
log->Printf ("SBCommunication(%p)::GetBroadcaster () => SBBroadcaster (%p)",
|
|
m_opaque, broadcaster.get());
|
|
|
|
return broadcaster;
|
|
}
|
|
|
|
|
|
//
|
|
//void
|
|
//SBCommunication::CreateIfNeeded ()
|
|
//{
|
|
// if (m_opaque == NULL)
|
|
// {
|
|
// static uint32_t g_broadcaster_num;
|
|
// char broadcaster_name[256];
|
|
// ::snprintf (name, broadcaster_name, "%p SBCommunication", this);
|
|
// m_opaque = new Communication (broadcaster_name);
|
|
// m_opaque_owned = true;
|
|
// }
|
|
// assert (m_opaque);
|
|
//}
|
|
//
|
|
//
|