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
|
//===-- MIUtilSystemOsx.cpp -------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//++
// File: MIUtilSystemOsx.cpp
//
// Overview: CMIUtilSystemOsx implementation.
//
// Environment: Compilers: Visual C++ 12.
// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
// Libraries: See MIReadmetxt.
//
// Copyright: None.
//--
// Include compiler configuration
#include "MICmnConfig.h"
#if defined( __APPLE__ )
// In-house headers:
#include "MIUtilSystemOsx.h"
#include "MICmnResources.h"
//++ ------------------------------------------------------------------------------------
// Details: CMIUtilSystemOsx constructor.
// Type: Method.
// Args: None.
// Return: None.
// Throws: None.
//--
CMIUtilSystemOsx::CMIUtilSystemOsx( void )
{
}
//++ ------------------------------------------------------------------------------------
// Details: CMIUtilSystemOsx destructor.
// Type: Method.
// Args: None.
// Return: None.
// Throws: None.
//--
CMIUtilSystemOsx::~CMIUtilSystemOsx( void )
{
}
//++ ------------------------------------------------------------------------------------
// Details: Retrieve the OS system error message for the given system error code.
// Type: Method.
// Args: vError - (R) OS error code value.
// vrwErrorMsg - (W) The error message.
// Return: MIstatus::success - Functional succeeded.
// MIstatus::failure - Functional failed.
// Throws: None.
//--
bool CMIUtilSystemOsx::GetOSErrorMsg( const MIint vError, CMIUtilString & vrwErrorMsg ) const
{
// Reset
vrwErrorMsg.clear();
bool bOk = MIstatus::failure;
// ToDo: Implement LINUX version
return bOk;
}
//++ ------------------------------------------------------------------------------------
// Details: Retrieve if possible the OS last error description.
// Type: Method.
// Args: None.
// Return: CMIUtilString - Error description.
// Throws: None.
//--
CMIUtilString CMIUtilSystemOsx::GetOSLastError( void ) const
{
CMIUtilString errorMsg( "Error fn not implemented" );
// ToDo: Implement LINUX version
return errorMsg;
}
//++ ------------------------------------------------------------------------------------
// Details: Retrieves the fully qualified path for the this application. If the function
// fails the string is filled with the error message.
// Type: Method.
// Args: vrwFileNamePath - (W) The excutable's name and path or last error description.
// Return: MIstatus::success - Functional succeeded.
// MIstatus::failure - Functional failed.
// Throws: None.
//--
bool CMIUtilSystemOsx::GetExecutablesPath( CMIUtilString & vrwFileNamePath ) const
{
bool bOk = MIstatus::failure;
// ToDo: Implement OSX version
return bOk;
}
//++ ------------------------------------------------------------------------------------
// Details: Retrieves the fully qualified path for the Log file for this application.
// If the function fails the string is filled with the error message.
// Append a dummy file name on the end of the path. This will be stripped off
// later and the real log file name replaces it.
// Type: Method.
// Args: vrwFileNamePath - (W) The Log file's name and path or last error description.
// Return: MIstatus::success - Functional succeeded.
// MIstatus::failure - Functional failed.
// Throws: None.
//--
bool CMIUtilSystemOsx::GetLogFilesPath( CMIUtilString & vrwFileNamePath ) const
{
bool bOk = MIstatus::failure;
// ToDo: Implement OSX version
return bOk;
}
#endif // #if defined( __APPLE__ )
|