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
|
/*=========================================================================
Program: ParaView
Module: vtkPVMacFileInformationHelper.mm
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkPVMacFileInformationHelper.h"
#include "vtkObjectFactory.h"
#import <Foundation/Foundation.h>
#include <string>
#include <vector>
//-----------------------------------------------------------------------------
vtkStandardNewMacro(vtkPVMacFileInformationHelper);
//-----------------------------------------------------------------------------
vtkPVMacFileInformationHelper::vtkPVMacFileInformationHelper()
{
}
//-----------------------------------------------------------------------------
vtkPVMacFileInformationHelper::~vtkPVMacFileInformationHelper()
{
}
//-----------------------------------------------------------------------------
std::string vtkPVMacFileInformationHelper::GetHomeDirectory()
{
NSString* homeDirectory = NSHomeDirectory();
return std::string([homeDirectory UTF8String]);
}
//-----------------------------------------------------------------------------
std::vector< vtkPVMacFileInformationHelper::NamePath > vtkPVMacFileInformationHelper::GetMountedVolumes()
{
std::vector< vtkPVMacFileInformationHelper::NamePath > volumes;
NSArray *urls = [[NSFileManager defaultManager]
mountedVolumeURLsIncludingResourceValuesForKeys:@[NSURLVolumeNameKey]
options:0];
for (NSURL *url in urls)
{
NSString* path = [url path];
std::string pathStr([path UTF8String]);
NSString *name = nil;
[url getResourceValue:&name forKey:NSURLLocalizedNameKey error:NULL];
std::string nameStr([name UTF8String]);
volumes.push_back(std::make_pair(nameStr, pathStr));
}
return volumes;
}
//-----------------------------------------------------------------------------
std::string vtkPVMacFileInformationHelper::GetBundleDirectory()
{
NSBundle* bundle = [NSBundle mainBundle];
NSString* path = [bundle bundlePath];
std::string pathStr([path UTF8String]);
return pathStr;
}
//-----------------------------------------------------------------------------
namespace {
std::string GetUserDomainDirectory(NSSearchPathDirectory userDirectory)
{
std::string directory;
NSArray* urls = [[NSFileManager defaultManager]
URLsForDirectory:userDirectory
inDomains:NSUserDomainMask];
for (NSURL *url in urls)
{
NSString* path = [url path];
// Double check that directory exists
BOOL isDirectory = false;
BOOL exists = [[NSFileManager defaultManager]
fileExistsAtPath:path
isDirectory:&isDirectory];
if (exists && isDirectory)
{
directory = [path UTF8String];\
// There should be at most one such user directory, so exit early
break;
}
}
return directory;
}
} // end anonymous namespace
//-----------------------------------------------------------------------------
std::string vtkPVMacFileInformationHelper::GetDesktopDirectory()
{
return GetUserDomainDirectory(NSDesktopDirectory);
}
//-----------------------------------------------------------------------------
std::string vtkPVMacFileInformationHelper::GetDocumentsDirectory()
{
return GetUserDomainDirectory(NSDocumentDirectory);
}
//-----------------------------------------------------------------------------
std::string vtkPVMacFileInformationHelper::GetDownloadsDirectory()
{
return GetUserDomainDirectory(NSDownloadsDirectory);
}
//-----------------------------------------------------------------------------
void vtkPVMacFileInformationHelper::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
|