Add support for OSX to the reporter, the base is from the BSD version which works seamlessly with the exception of different sysctl names. (not updated)

Originally committed to SVN as r3587.
This commit is contained in:
Amar Takhar 2009-09-27 01:47:11 +00:00
parent e0d4dde970
commit 6a792f0635
6 changed files with 160 additions and 4 deletions

View File

@ -38,6 +38,10 @@ if BUILD_LINUX
reporter_2_2_SOURCES += platform_unix_linux.cpp
endif
if BUILD_DARWIN
reporter_2_2_SOURCES += platform_unix_osx.cpp
endif
reporter_2_2_SOURCES += \
*.h \

View File

@ -253,7 +253,7 @@ public:
/// @name OS X
//@{
#ifdef __OSX__
#ifdef __APPLE__
/// OS patch level
/// @return Patch level

View File

@ -28,6 +28,7 @@
#include "platform_unix.h"
#include "platform_unix_bsd.h"
#include "platform_unix_linux.h"
#include "platform_unix_osx.h"
/// @brief Constructor.
Platform* Platform::GetPlatform() {
@ -37,6 +38,8 @@ Platform* Platform::GetPlatform() {
Platform *p = new PlatformUnixBSD;
# elif defined(__LINUX__)
Platform *p = new PlatformUnixLinux;
# elif defined(__APPLE__)
Platform *p = new PlatformUnixOSX;
# else
Platform *p = new PlatformUnix;
# endif
@ -114,3 +117,15 @@ wxString Platform::Signature() {
wxString Platform::DesktopEnvironment() {
return "";
}
wxString Platform::PatchLevel() {
return "";
}
wxString Platform::QuickTimeExt() {
return "";
}
wxString Platform::HardwareModel() {
return "";
}

View File

@ -0,0 +1,92 @@
// Copyright (c) 2009, Amar Takhar <verm@aegisub.org>
//
// Permission to use, copy, modify, and distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
//
// $Id$
/// @file platform_unix_bsd.cpp
/// @brief BSD Platform extensions.
/// @ingroup unix
#ifndef R_PRECOMP
#include <wx/string.h>
#endif
extern "C" {
#include <sys/types.h>
#include <sys/sysctl.h>
}
#include "include/platform.h"
#include "platform_unix.h"
#include "platform_unix_osx.h"
wxString PlatformUnixOSX::CPUId() {
char id[300];
size_t len = sizeof(id);
sysctlbyname("hw.model", &id, &len, NULL, 0);
return wxString::Format("%s", id);
};
wxString PlatformUnixOSX::CPUSpeed() {
return "";
};
wxString PlatformUnixOSX::CPUCores() {
return "";
};
wxString PlatformUnixOSX::CPUCount() {
int proc;
size_t len = sizeof(proc);
sysctlbyname("hw.ncpu", &proc, &len, NULL, 0);
return wxString::Format("%d", proc);
};
wxString PlatformUnixOSX::CPUFeatures() {
return "";
};
wxString PlatformUnixOSX::CPUFeatures2() {
return "";
};
wxString PlatformUnixOSX::Memory() {
uint64_t memory;
size_t len = sizeof(memory);
sysctlbyname("hw.physmem", &memory, &len, NULL, 0);
return wxString::Format("%d", memory);
return "";
};
wxString PlatformUnixOSX::Video() {
return "";
};
wxString PlatformUnixOSX::UnixLibraries() {
return "";
};
wxString PlatformUnixOSX::PatchLevel() {
return "";
}
wxString PlatformUnixOSX::QuickTimeExt() {
return "";
}
wxString PlatformUnixOSX::HardwareModel() {
return "";
}

View File

@ -0,0 +1,45 @@
// Copyright (c) 2009, Amar Takhar <verm@aegisub.org>
//
// Permission to use, copy, modify, and distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
//
// $Id$
/// @file platform_unix_bsd.h
/// @see platform_unix_bsd.cpp
/// @ingroup unix
class Platform;
/// @brief BSD values.
class PlatformUnixOSX : public PlatformUnix {
public:
PlatformUnixOSX() {};
virtual ~PlatformUnixOSX() {};
// Hardware
virtual wxString CPUId();
virtual wxString CPUSpeed();
virtual wxString CPUCores();
virtual wxString CPUCount();
virtual wxString CPUFeatures();
virtual wxString CPUFeatures2();
virtual wxString Memory();
virtual wxString Video();
virtual wxString PatchLevel();
virtual wxString QuickTimeExt();
virtual wxString HardwareModel();
// Unix Specific
virtual wxString UnixLibraries();
};

View File

@ -119,9 +119,9 @@ Report::XMLReport Report::ReportCreate() {
#ifdef __APPLE__
doc.osx = new wxXmlNode(wxXML_ELEMENT_NODE, "osx");
doc.report->AddChild(doc.osx);
Add(doc.osx, "patch", p->PatchLevel);
Add(doc.osx, "quicktimeext", p->QuickTimeExt);
Add(doc.osx, "model", p->HardwareModel);
Add(doc.osx, "patch", p->PatchLevel());
Add(doc.osx, "quicktimeext", p->QuickTimeExt());
Add(doc.osx, "model", p->HardwareModel());
#endif