]>
Commit | Line | Data |
---|---|---|
489468fe | 1 | /////////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: src/osx/core/stdpaths_cf.cpp |
489468fe SC |
3 | // Purpose: wxStandardPaths implementation for CoreFoundation systems |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2004-10-27 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2004 David Elliott <dfe@cox.net> | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #if wxUSE_STDPATHS | |
23 | ||
24 | #ifndef WX_PRECOMP | |
25 | #include "wx/intl.h" | |
26 | #endif //ndef WX_PRECOMP | |
27 | ||
28 | #include "wx/stdpaths.h" | |
29 | #include "wx/filename.h" | |
30 | #ifdef __WXMAC__ | |
c8ef3d55 | 31 | #include "wx/osx/private.h" |
489468fe | 32 | #endif |
c8ef3d55 | 33 | #include "wx/osx/core/cfstring.h" |
489468fe SC |
34 | |
35 | #include <CoreFoundation/CFBundle.h> | |
36 | #include <CoreFoundation/CFURL.h> | |
37 | ||
38 | #define kDefaultPathStyle kCFURLPOSIXPathStyle | |
39 | ||
40 | // ============================================================================ | |
41 | // implementation | |
42 | // ============================================================================ | |
43 | ||
44 | // ---------------------------------------------------------------------------- | |
45 | // wxStandardPathsCF ctors/dtor | |
46 | // ---------------------------------------------------------------------------- | |
47 | ||
48 | wxStandardPathsCF::wxStandardPathsCF() | |
49 | : m_bundle(CFBundleGetMainBundle()) | |
50 | { | |
51 | CFRetain(m_bundle); | |
489468fe SC |
52 | } |
53 | ||
54 | wxStandardPathsCF::wxStandardPathsCF(wxCFBundleRef bundle) | |
55 | : m_bundle(bundle) | |
56 | { | |
57 | CFRetain(m_bundle); | |
489468fe SC |
58 | } |
59 | ||
60 | wxStandardPathsCF::~wxStandardPathsCF() | |
61 | { | |
62 | CFRelease(m_bundle); | |
63 | } | |
64 | ||
65 | // ---------------------------------------------------------------------------- | |
66 | // wxStandardPathsCF Mac-specific methods | |
67 | // ---------------------------------------------------------------------------- | |
68 | ||
69 | void wxStandardPathsCF::SetBundle(wxCFBundleRef bundle) | |
70 | { | |
71 | CFRetain(bundle); | |
72 | CFRelease(m_bundle); | |
73 | m_bundle = bundle; | |
74 | } | |
75 | ||
76 | // ---------------------------------------------------------------------------- | |
77 | // generic functions in terms of which the other ones are implemented | |
78 | // ---------------------------------------------------------------------------- | |
79 | ||
80 | static wxString BundleRelativeURLToPath(CFURLRef relativeURL) | |
81 | { | |
82 | CFURLRef absoluteURL = CFURLCopyAbsoluteURL(relativeURL); | |
83 | wxCHECK_MSG(absoluteURL, wxEmptyString, wxT("Failed to resolve relative URL to absolute URL")); | |
84 | CFStringRef cfStrPath = CFURLCopyFileSystemPath(absoluteURL,kDefaultPathStyle); | |
85 | CFRelease(absoluteURL); | |
31895560 | 86 | return wxCFStringRef::AsStringWithNormalizationFormC(cfStrPath); |
489468fe SC |
87 | } |
88 | ||
89 | wxString wxStandardPathsCF::GetFromFunc(wxCFURLRef (*func)(wxCFBundleRef)) const | |
90 | { | |
91 | wxCHECK_MSG(m_bundle, wxEmptyString, | |
92 | wxT("wxStandardPaths for CoreFoundation only works with bundled apps")); | |
93 | CFURLRef relativeURL = (*func)(m_bundle); | |
94 | wxCHECK_MSG(relativeURL, wxEmptyString, wxT("Couldn't get URL")); | |
95 | wxString ret(BundleRelativeURLToPath(relativeURL)); | |
96 | CFRelease(relativeURL); | |
97 | return ret; | |
98 | } | |
99 | ||
100 | wxString wxStandardPathsCF::GetDocumentsDir() const | |
101 | { | |
56869c54 | 102 | #if defined( __WXMAC__ ) && wxOSX_USE_CARBON |
489468fe SC |
103 | return wxMacFindFolderNoSeparator |
104 | ( | |
105 | kUserDomain, | |
106 | kDocumentsFolderType, | |
107 | kCreateFolder | |
108 | ); | |
109 | #else | |
110 | return wxFileName::GetHomeDir() + wxT("/Documents"); | |
111 | #endif | |
112 | } | |
113 | ||
114 | // ---------------------------------------------------------------------------- | |
115 | // wxStandardPathsCF public API | |
116 | // ---------------------------------------------------------------------------- | |
117 | ||
118 | wxString wxStandardPathsCF::GetConfigDir() const | |
119 | { | |
56869c54 | 120 | #if defined( __WXMAC__ ) && wxOSX_USE_CARBON |
885d927e | 121 | return wxMacFindFolderNoSeparator((short)kLocalDomain, kPreferencesFolderType, kCreateFolder); |
489468fe SC |
122 | #else |
123 | return wxT("/Library/Preferences"); | |
124 | #endif | |
125 | } | |
126 | ||
127 | wxString wxStandardPathsCF::GetUserConfigDir() const | |
128 | { | |
56869c54 | 129 | #if defined( __WXMAC__ ) && wxOSX_USE_CARBON |
885d927e | 130 | return wxMacFindFolderNoSeparator((short)kUserDomain, kPreferencesFolderType, kCreateFolder); |
489468fe SC |
131 | #else |
132 | return wxFileName::GetHomeDir() + wxT("/Library/Preferences"); | |
133 | #endif | |
134 | } | |
135 | ||
136 | wxString wxStandardPathsCF::GetDataDir() const | |
137 | { | |
138 | return GetFromFunc(CFBundleCopySharedSupportURL); | |
139 | } | |
140 | ||
141 | wxString wxStandardPathsCF::GetExecutablePath() const | |
142 | { | |
143 | #ifdef __WXMAC__ | |
96391f61 | 144 | return GetFromFunc(CFBundleCopyExecutableURL); |
489468fe SC |
145 | #else |
146 | return wxStandardPathsBase::GetExecutablePath(); | |
147 | #endif | |
148 | } | |
149 | ||
150 | wxString wxStandardPathsCF::GetLocalDataDir() const | |
151 | { | |
56869c54 | 152 | #if defined( __WXMAC__ ) && wxOSX_USE_CARBON |
885d927e | 153 | return AppendAppInfo(wxMacFindFolderNoSeparator((short)kLocalDomain, kApplicationSupportFolderType, kCreateFolder)); |
489468fe SC |
154 | #else |
155 | return AppendAppInfo(wxT("/Library/Application Support")); | |
156 | #endif | |
157 | } | |
158 | ||
159 | wxString wxStandardPathsCF::GetUserDataDir() const | |
160 | { | |
56869c54 | 161 | #if defined( __WXMAC__ ) && wxOSX_USE_CARBON |
885d927e | 162 | return AppendAppInfo(wxMacFindFolderNoSeparator((short)kUserDomain, kApplicationSupportFolderType, kCreateFolder)); |
489468fe | 163 | #else |
9a83f860 | 164 | return AppendAppInfo(wxFileName::GetHomeDir() + wxT("/Library/Application Support")); |
489468fe SC |
165 | #endif |
166 | } | |
167 | ||
168 | wxString wxStandardPathsCF::GetPluginsDir() const | |
169 | { | |
170 | return GetFromFunc(CFBundleCopyBuiltInPlugInsURL); | |
171 | } | |
172 | ||
173 | wxString wxStandardPathsCF::GetResourcesDir() const | |
174 | { | |
175 | return GetFromFunc(CFBundleCopyResourcesDirectoryURL); | |
176 | } | |
177 | ||
178 | wxString | |
179 | wxStandardPathsCF::GetLocalizedResourcesDir(const wxString& lang, | |
180 | ResourceCat category) const | |
181 | { | |
182 | return wxStandardPathsBase:: | |
9a83f860 | 183 | GetLocalizedResourcesDir(lang, category) + wxT(".lproj"); |
489468fe SC |
184 | } |
185 | ||
186 | #endif // wxUSE_STDPATHS |