forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselect_file_dialog_ios.mm
208 lines (180 loc) · 6.64 KB
/
select_file_dialog_ios.mm
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/shell_dialogs/select_file_dialog_ios.h"
#import <UIKit/UIDocumentPickerViewController.h>
#import <UIKit/UIKit.h>
#import <UniformTypeIdentifiers/UniformTypeIdentifiers.h>
#include "base/mac/foundation_util.h"
#include "base/memory/weak_ptr.h"
#include "base/notreached.h"
#include "base/ranges/algorithm.h"
#include "base/strings/sys_string_conversions.h"
#include "ui/shell_dialogs/select_file_policy.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
@interface NativeFileDialog : NSObject <UIDocumentPickerDelegate> {
@private
base::WeakPtr<ui::SelectFileDialogImpl> _dialog;
UIViewController* __weak _viewController;
bool _allowMultipleFiles;
void* _params;
UIDocumentPickerViewController* __strong _documentPickerController;
NSArray<UTType*>* __strong _fileUTTypeLists;
bool _allowsOtherFileTypes;
}
- (instancetype)initWithDialog:(base::WeakPtr<ui::SelectFileDialogImpl>)dialog
viewController:(UIViewController*)viewController
allowMultipleFiles:(bool)allowMultipleFiles
params:(void*)params
fileUTTypeLists:(NSArray<UTType*>*)fileUTTypeLists
allowsOtherFileTypes:(bool)allowsOtherFileTypes;
- (void)dealloc;
- (void)showFilePickerMenu:(BOOL)directory;
- (void)documentPicker:(UIDocumentPickerViewController*)controller
didPickDocumentsAtURLs:(NSArray<NSURL*>*)urls;
- (void)documentPickerWasCancelled:(UIDocumentPickerViewController*)controller;
@end
@implementation NativeFileDialog
- (instancetype)initWithDialog:(base::WeakPtr<ui::SelectFileDialogImpl>)dialog
viewController:(UIViewController*)viewController
allowMultipleFiles:(bool)allowMultipleFiles
params:(void*)params
fileUTTypeLists:(NSArray<UTType*>*)fileUTTypeLists
allowsOtherFileTypes:(bool)allowsOtherFileTypes {
if (!(self = [super init])) {
return nil;
}
_dialog = dialog;
_viewController = viewController;
_allowMultipleFiles = allowMultipleFiles;
_params = params;
_fileUTTypeLists = fileUTTypeLists;
_allowsOtherFileTypes = allowsOtherFileTypes;
return self;
}
- (void)dealloc {
_documentPickerController.delegate = nil;
}
- (void)showFilePickerMenu:(BOOL)directory {
NSArray* documentTypes = directory ? @[ UTTypeFolder ] : @[ UTTypeItem ];
if (!directory && !_allowsOtherFileTypes) {
documentTypes = _fileUTTypeLists;
}
_documentPickerController = [[UIDocumentPickerViewController alloc]
initForOpeningContentTypes:documentTypes];
_documentPickerController.allowsMultipleSelection = _allowMultipleFiles;
_documentPickerController.delegate = self;
UIViewController* currentViewController = _viewController;
[currentViewController presentViewController:_documentPickerController
animated:true
completion:nil];
}
- (void)documentPicker:(UIDocumentPickerViewController*)controller
didPickDocumentsAtURLs:(NSArray<NSURL*>*)urls {
if (!_dialog) {
return;
}
std::vector<base::FilePath> paths;
for (NSURL* url : urls) {
if (!url.isFileURL) {
continue;
}
NSString* path = url.path;
paths.push_back(base::mac::NSStringToFilePath(path));
}
_dialog->FileWasSelected(_params, _allowMultipleFiles, false, paths, 0);
}
- (void)documentPickerWasCancelled:(UIDocumentPickerViewController*)controller {
if (!_dialog) {
return;
}
std::vector<base::FilePath> paths;
_dialog->FileWasSelected(_params, _allowMultipleFiles, true, paths, 0);
}
@end
namespace ui {
SelectFileDialogImpl::SelectFileDialogImpl(
Listener* listener,
std::unique_ptr<ui::SelectFilePolicy> policy)
: SelectFileDialog(listener, std::move(policy)) {}
bool SelectFileDialogImpl::IsRunning(gfx::NativeWindow parent_window) const {
return listener_;
}
void SelectFileDialogImpl::ListenerDestroyed() {
listener_ = nullptr;
}
void SelectFileDialogImpl::FileWasSelected(
void* params,
bool is_multi,
bool was_cancelled,
const std::vector<base::FilePath>& files,
int index) {
if (!listener_) {
return;
}
if (was_cancelled || files.empty()) {
listener_->FileSelectionCanceled(params);
} else {
if (is_multi) {
listener_->MultiFilesSelected(files, params);
} else {
listener_->FileSelected(files[0], index, params);
}
}
}
void SelectFileDialogImpl::SelectFileImpl(
SelectFileDialog::Type type,
const std::u16string& title,
const base::FilePath& default_path,
const FileTypeInfo* file_types,
int file_type_index,
const base::FilePath::StringType& default_extension,
gfx::NativeWindow gfx_window,
void* params,
const GURL* caller) {
has_multiple_file_type_choices_ =
SelectFileDialog::SELECT_OPEN_MULTI_FILE == type;
bool allows_other_file_types = false;
bool directory = SelectFileDialog::SELECT_UPLOAD_FOLDER == type;
NSMutableArray<UTType*>* file_uttype_lists = [NSMutableArray array];
for (const auto& ext_list : file_types->extensions) {
for (const base::FilePath::StringType& ext : ext_list) {
UTType* uttype =
[UTType typeWithFilenameExtension:base::SysUTF8ToNSString(ext)];
if (!uttype) {
continue;
}
if (![file_uttype_lists containsObject:uttype]) {
[file_uttype_lists addObject:uttype];
}
}
}
if (file_types->include_all_files || file_types->extensions.empty()) {
allows_other_file_types = true;
}
UIViewController* controller = gfx_window.Get().rootViewController;
native_file_dialog_ =
[[NativeFileDialog alloc] initWithDialog:weak_factory_.GetWeakPtr()
viewController:controller
allowMultipleFiles:has_multiple_file_type_choices_
params:params
fileUTTypeLists:file_uttype_lists
allowsOtherFileTypes:allows_other_file_types];
[native_file_dialog_ showFilePickerMenu:directory];
}
SelectFileDialogImpl::~SelectFileDialogImpl() {
// Clear |weak_factory_| beforehand, to ensure that no callbacks will be made
// when we cancel the NSSavePanels.
weak_factory_.InvalidateWeakPtrs();
}
bool SelectFileDialogImpl::HasMultipleFileTypeChoicesImpl() {
return has_multiple_file_type_choices_;
}
SelectFileDialog* CreateSelectFileDialog(
SelectFileDialog::Listener* listener,
std::unique_ptr<SelectFilePolicy> policy) {
return new SelectFileDialogImpl(listener, std::move(policy));
}
} // namespace ui