VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/darwin/RTPathUserDocuments-darwin.cpp@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1/* $Id: RTPathUserDocuments-darwin.cpp 93115 2022-01-01 11:31:46Z vboxsync $ */
2/** @file
3 * IPRT - RTPathUserDocuments, darwin ring-3.
4 */
5
6/*
7 * Copyright (C) 2011-2022 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/path.h>
32#include "internal/iprt.h"
33
34#include <iprt/assert.h>
35#include <iprt/string.h>
36#include <iprt/err.h>
37
38#if MAC_OS_X_VERSION_MIN_REQUIRED >= 101200
39# include <sysdir.h>
40#else
41# include <NSSystemDirectories.h>
42#endif
43#include <sys/syslimits.h>
44#ifdef IPRT_USE_CORE_SERVICE_FOR_USER_DOCUMENTS
45# include <CoreServices/CoreServices.h>
46#endif
47
48
49RTDECL(int) RTPathUserDocuments(char *pszPath, size_t cchPath)
50{
51 /*
52 * Validate input
53 */
54 AssertPtrReturn(pszPath, VERR_INVALID_POINTER);
55 AssertReturn(cchPath, VERR_INVALID_PARAMETER);
56
57 /*
58 * Try NSSystemDirectories first since that works for directories that doesn't exist.
59 * The NSSystemDirectories API was renamed in 10.12 to sysdir.
60 */
61 int rc = VERR_PATH_NOT_FOUND;
62#if MAC_OS_X_VERSION_MIN_REQUIRED >= 101200
63 sysdir_search_path_enumeration_state EnmState = sysdir_start_search_path_enumeration(SYSDIR_DIRECTORY_DOCUMENT,
64 SYSDIR_DOMAIN_MASK_USER);
65#else
66 NSSearchPathEnumerationState EnmState = NSStartSearchPathEnumeration(NSDocumentDirectory, NSUserDomainMask);
67#endif
68 if (EnmState != 0)
69 {
70 char szTmp[PATH_MAX];
71 szTmp[0] = szTmp[PATH_MAX - 1] = '\0';
72#if MAC_OS_X_VERSION_MIN_REQUIRED >= 101200
73 EnmState = sysdir_get_next_search_path_enumeration(EnmState, szTmp);
74#else
75 EnmState = NSGetNextSearchPathEnumeration(EnmState, szTmp);
76#endif
77 if (EnmState != 0)
78 {
79 size_t cchTmp = strlen(szTmp);
80 if (cchTmp >= cchPath)
81 return VERR_BUFFER_OVERFLOW;
82
83 if (szTmp[0] == '~' && szTmp[1] == '/')
84 {
85 /* Expand tilde. */
86 rc = RTPathUserHome(pszPath, cchPath - cchTmp + 2);
87 if (RT_FAILURE(rc))
88 return rc;
89 rc = RTPathAppend(pszPath, cchPath, &szTmp[2]);
90 }
91 else
92 rc = RTStrCopy(pszPath, cchPath, szTmp);
93 return rc;
94 }
95 }
96
97#ifdef IPRT_USE_CORE_SERVICE_FOR_USER_DOCUMENTS
98 /*
99 * Fall back on FSFindFolder in case the above should fail...
100 */
101 FSRef ref;
102 OSErr err = FSFindFolder(kOnAppropriateDisk, kDocumentsFolderType, false /* createFolder */, &ref);
103 if (err == noErr)
104 {
105 err = FSRefMakePath(&ref, (UInt8*)pszPath, cchPath);
106 if (err == noErr)
107 return VINF_SUCCESS;
108 }
109#endif
110 Assert(RT_FAILURE_NP(rc));
111 return rc;
112}
113
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette