2020-01-30 01:31:45 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 Ian McInerney <Ian.S.McInerney at ieee.org>
|
2021-07-20 14:32:22 +00:00
|
|
|
* Copyright (C) 2020-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2020-01-30 01:31:45 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <kiplatform/environment.h>
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#include <wx/osx/core/cfstring.h>
|
2020-11-14 12:53:24 +00:00
|
|
|
#include <wx/filefn.h>
|
2021-01-23 19:29:49 +00:00
|
|
|
#include <wx/stdpaths.h>
|
2020-01-30 01:31:45 +00:00
|
|
|
|
2021-03-23 19:09:57 +00:00
|
|
|
|
|
|
|
void KIPLATFORM::ENV::Init()
|
|
|
|
{
|
2021-05-09 11:59:16 +00:00
|
|
|
// Disable the automatic window tabbing OSX does
|
|
|
|
[NSWindow setAllowsAutomaticWindowTabbing:NO];
|
|
|
|
|
2021-03-23 19:09:57 +00:00
|
|
|
// No tasks for this platform
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-30 01:31:45 +00:00
|
|
|
bool KIPLATFORM::ENV::MoveToTrash( const wxString& aPath, wxString& aError )
|
|
|
|
{
|
2020-11-14 12:53:24 +00:00
|
|
|
bool isDirectory = wxDirExists( aPath );
|
|
|
|
NSURL* url = [NSURL fileURLWithPath:wxCFStringRef( aPath ).AsNSString() isDirectory:isDirectory];
|
2021-07-20 14:32:22 +00:00
|
|
|
NSError* err = nullptr;
|
2020-01-30 01:31:45 +00:00
|
|
|
|
|
|
|
BOOL result = [[NSFileManager defaultManager] trashItemAtURL:url resultingItemURL:nil error:&err];
|
|
|
|
|
|
|
|
// Extract the error string if the operation failed
|
|
|
|
if( result == NO )
|
|
|
|
{
|
|
|
|
NSString* errmsg;
|
2021-06-06 13:16:12 +00:00
|
|
|
|
|
|
|
if( err.localizedRecoverySuggestion == nil )
|
|
|
|
{
|
|
|
|
errmsg = err.localizedFailureReason;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-07-20 14:32:22 +00:00
|
|
|
errmsg = [err.localizedFailureReason stringByAppendingFormat:@"\n\n%@",
|
|
|
|
err.localizedRecoverySuggestion];
|
2021-06-06 13:16:12 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 01:31:45 +00:00
|
|
|
aError = wxCFStringRef::AsString( (CFStringRef) errmsg );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2020-12-16 00:28:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool KIPLATFORM::ENV::IsNetworkPath( const wxString& aPath )
|
|
|
|
{
|
|
|
|
// placeholder, we "nerf" behavior if its a network path so return false by default
|
|
|
|
return false;
|
2021-01-23 02:23:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-28 00:11:39 +00:00
|
|
|
wxString KIPLATFORM::ENV::GetDocumentsPath()
|
2021-01-23 02:23:37 +00:00
|
|
|
{
|
|
|
|
return wxStandardPaths::Get().GetDocumentsDir();
|
2021-01-23 04:35:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-28 00:11:39 +00:00
|
|
|
wxString KIPLATFORM::ENV::GetUserConfigPath()
|
2021-01-23 04:35:09 +00:00
|
|
|
{
|
|
|
|
return wxStandardPaths::Get().GetUserConfigDir();
|
2021-01-23 16:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-06-26 19:51:16 +00:00
|
|
|
wxString KIPLATFORM::ENV::GetUserDataPath()
|
|
|
|
{
|
|
|
|
return wxStandardPaths::Get().GetUserDataDir();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-12 05:57:30 +00:00
|
|
|
wxString KIPLATFORM::ENV::GetUserLocalDataPath()
|
|
|
|
{
|
|
|
|
return wxStandardPaths::Get().GetUserLocalDataDir();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-28 00:11:39 +00:00
|
|
|
wxString KIPLATFORM::ENV::GetUserCachePath()
|
2021-01-23 16:59:19 +00:00
|
|
|
{
|
2021-01-23 18:57:51 +00:00
|
|
|
NSURL* url = [[NSFileManager defaultManager] URLForDirectory:NSCachesDirectory
|
|
|
|
inDomain:NSUserDomainMask
|
|
|
|
appropriateForURL:nil
|
|
|
|
create:NO error:nil];
|
|
|
|
|
2021-07-20 14:32:22 +00:00
|
|
|
return wxCFStringRef::AsString( ( CFStringRef) url.path );
|
2021-03-23 19:09:57 +00:00
|
|
|
}
|
2021-11-11 14:29:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool KIPLATFORM::ENV::GetSystemProxyConfig( const wxString& aURL, PROXY_CONFIG& aCfg )
|
|
|
|
{
|
|
|
|
return false;
|
2022-03-13 00:12:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool KIPLATFORM::ENV::VerifyFileSignature( const wxString& aPath )
|
|
|
|
{
|
|
|
|
return true;
|
2021-11-11 14:29:25 +00:00
|
|
|
}
|