Summary:
This merge brings in the improved 'platform' command that knows how to
interface with remote machines; that is, query OS/kernel information, push
and pull files, run shell commands, etc... and implementation for the new
communication packets that back that interface, at least on Darwin based
operating systems via the POSIXPlatform class. Linux support is coming soon.
Verified the test suite runs cleanly on Linux (x86_64), build OK on Mac OS
X Mountain Lion.
Additional improvements (not in the source SVN branch 'lldb-platform-work'):
- cmake build scripts for lldb-platform
- cleanup test suite
- documentation stub for qPlatform_RunCommand
- use log class instead of printf() directly
- reverted work-in-progress-looking changes from test/types/TestAbstract.py that work towards running the test suite remotely.
- add new logging category 'platform'
Reviewers: Matt Kopec, Greg Clayton
Review: http://llvm-reviews.chandlerc.com/D1493
llvm-svn: 189295
116 lines
3.3 KiB
C++
116 lines
3.3 KiB
C++
//===-- PlatformiOSSimulator.h ----------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef liblldb_PlatformiOSSimulator_h_
|
|
#define liblldb_PlatformiOSSimulator_h_
|
|
|
|
// C Includes
|
|
// C++ Includes
|
|
// Other libraries and framework includes
|
|
// Project includes
|
|
#include "PlatformDarwin.h"
|
|
|
|
class PlatformiOSSimulator : public PlatformDarwin
|
|
{
|
|
public:
|
|
|
|
//------------------------------------------------------------
|
|
// Class Functions
|
|
//------------------------------------------------------------
|
|
static lldb_private::Platform*
|
|
CreateInstance (bool force, const lldb_private::ArchSpec *arch);
|
|
|
|
static void
|
|
Initialize ();
|
|
|
|
static void
|
|
Terminate ();
|
|
|
|
static lldb_private::ConstString
|
|
GetPluginNameStatic ();
|
|
|
|
static const char *
|
|
GetDescriptionStatic();
|
|
|
|
//------------------------------------------------------------
|
|
// Class Methods
|
|
//------------------------------------------------------------
|
|
PlatformiOSSimulator ();
|
|
|
|
virtual
|
|
~PlatformiOSSimulator();
|
|
|
|
//------------------------------------------------------------
|
|
// lldb_private::PluginInterface functions
|
|
//------------------------------------------------------------
|
|
virtual lldb_private::ConstString
|
|
GetPluginName()
|
|
{
|
|
return GetPluginNameStatic();
|
|
}
|
|
|
|
virtual uint32_t
|
|
GetPluginVersion()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
//------------------------------------------------------------
|
|
// lldb_private::Platform functions
|
|
//------------------------------------------------------------
|
|
virtual lldb_private::Error
|
|
ResolveExecutable (const lldb_private::FileSpec &exe_file,
|
|
const lldb_private::ArchSpec &arch,
|
|
lldb::ModuleSP &module_sp,
|
|
const lldb_private::FileSpecList *module_search_paths_ptr);
|
|
|
|
virtual const char *
|
|
GetDescription ()
|
|
{
|
|
return GetDescriptionStatic();
|
|
}
|
|
|
|
virtual void
|
|
GetStatus (lldb_private::Stream &strm);
|
|
|
|
virtual lldb_private::Error
|
|
GetSymbolFile (const lldb_private::FileSpec &platform_file,
|
|
const lldb_private::UUID *uuid_ptr,
|
|
lldb_private::FileSpec &local_file);
|
|
|
|
virtual lldb_private::Error
|
|
GetSharedModule (const lldb_private::ModuleSpec &module_spec,
|
|
lldb::ModuleSP &module_sp,
|
|
const lldb_private::FileSpecList *module_search_paths_ptr,
|
|
lldb::ModuleSP *old_module_sp_ptr,
|
|
bool *did_create_ptr);
|
|
|
|
virtual uint32_t
|
|
FindProcesses (const lldb_private::ProcessInstanceInfoMatch &match_info,
|
|
lldb_private::ProcessInstanceInfoList &process_infos);
|
|
|
|
virtual bool
|
|
GetSupportedArchitectureAtIndex (uint32_t idx,
|
|
lldb_private::ArchSpec &arch);
|
|
|
|
protected:
|
|
std::string m_sdk_directory;
|
|
std::string m_build_update;
|
|
//std::vector<FileSpec> m_device_support_os_dirs;
|
|
|
|
const char *
|
|
GetSDKDirectory();
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN (PlatformiOSSimulator);
|
|
|
|
};
|
|
|
|
#endif // liblldb_PlatformiOSSimulator_h_
|