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>
|
|
|
|
* Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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()
|
|
|
|
{
|
|
|
|
// 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];
|
2020-01-30 01:31:45 +00:00
|
|
|
NSError* err = NULL;
|
|
|
|
|
|
|
|
BOOL result = [[NSFileManager defaultManager] trashItemAtURL:url resultingItemURL:nil error:&err];
|
|
|
|
|
|
|
|
// Extract the error string if the operation failed
|
|
|
|
if( result == NO )
|
|
|
|
{
|
|
|
|
NSString* errmsg;
|
|
|
|
errmsg = [err.localizedFailureReason stringByAppendingFormat:@"\n\n%@", err.localizedRecoverySuggestion];
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
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];
|
|
|
|
|
|
|
|
return wxCFStringRef::AsString((CFStringRef)url.path);
|
2021-03-23 19:09:57 +00:00
|
|
|
}
|