OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "webkit/glue/plugins/pepper_file_chooser.h" | 5 #include "webkit/glue/plugins/pepper_file_chooser.h" |
6 | 6 |
| 7 #include <string> |
| 8 #include <vector> |
| 9 |
7 #include "base/logging.h" | 10 #include "base/logging.h" |
8 #include "third_party/ppapi/c/pp_completion_callback.h" | 11 #include "third_party/ppapi/c/pp_completion_callback.h" |
9 #include "third_party/ppapi/c/pp_errors.h" | 12 #include "third_party/ppapi/c/pp_errors.h" |
| 13 #include "third_party/WebKit/WebKit/chromium/public/WebCString.h" |
| 14 #include "third_party/WebKit/WebKit/chromium/public/WebFileChooserCompletion.h" |
| 15 #include "third_party/WebKit/WebKit/chromium/public/WebFileChooserParams.h" |
| 16 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
| 17 #include "third_party/WebKit/WebKit/chromium/public/WebVector.h" |
10 #include "webkit/glue/plugins/pepper_file_ref.h" | 18 #include "webkit/glue/plugins/pepper_file_ref.h" |
| 19 #include "webkit/glue/plugins/pepper_plugin_delegate.h" |
11 #include "webkit/glue/plugins/pepper_plugin_instance.h" | 20 #include "webkit/glue/plugins/pepper_plugin_instance.h" |
12 #include "webkit/glue/plugins/pepper_resource_tracker.h" | 21 #include "webkit/glue/plugins/pepper_resource_tracker.h" |
| 22 #include "webkit/glue/webkit_glue.h" |
| 23 |
| 24 using WebKit::WebCString; |
| 25 using WebKit::WebFileChooserCompletion; |
| 26 using WebKit::WebFileChooserParams; |
| 27 using WebKit::WebString; |
| 28 using WebKit::WebVector; |
13 | 29 |
14 namespace pepper { | 30 namespace pepper { |
15 | 31 |
16 namespace { | 32 namespace { |
17 | 33 |
18 PP_Resource Create(PP_Instance instance_id, | 34 PP_Resource Create(PP_Instance instance_id, |
19 const PP_FileChooserOptions* options) { | 35 const PP_FileChooserOptions* options) { |
20 PluginInstance* instance = PluginInstance::FromPPInstance(instance_id); | 36 PluginInstance* instance = PluginInstance::FromPPInstance(instance_id); |
21 if (!instance) | 37 if (!instance) |
22 return 0; | 38 return 0; |
(...skipping 28 matching lines...) Expand all Loading... |
51 return file_ref->GetReference(); | 67 return file_ref->GetReference(); |
52 } | 68 } |
53 | 69 |
54 const PPB_FileChooser ppb_filechooser = { | 70 const PPB_FileChooser ppb_filechooser = { |
55 &Create, | 71 &Create, |
56 &IsFileChooser, | 72 &IsFileChooser, |
57 &Show, | 73 &Show, |
58 &GetNextChosenFile | 74 &GetNextChosenFile |
59 }; | 75 }; |
60 | 76 |
| 77 class FileChooserCompletionImpl : public WebFileChooserCompletion { |
| 78 public: |
| 79 FileChooserCompletionImpl(pepper::FileChooser* file_chooser) |
| 80 : file_chooser_(file_chooser) { |
| 81 DCHECK(file_chooser_); |
| 82 } |
| 83 |
| 84 virtual ~FileChooserCompletionImpl() {} |
| 85 |
| 86 virtual void didChooseFile(const WebVector<WebString>& file_names) { |
| 87 std::vector<std::string> files; |
| 88 for (size_t i = 0; i < file_names.size(); i++) |
| 89 files.push_back(file_names[i].utf8().data()); |
| 90 |
| 91 file_chooser_->StoreChosenFiles(files); |
| 92 } |
| 93 |
| 94 private: |
| 95 FileChooser* file_chooser_; |
| 96 }; |
| 97 |
61 } // namespace | 98 } // namespace |
62 | 99 |
63 FileChooser::FileChooser(PluginInstance* instance, | 100 FileChooser::FileChooser(PluginInstance* instance, |
64 const PP_FileChooserOptions* options) | 101 const PP_FileChooserOptions* options) |
65 : Resource(instance->module()), | 102 : Resource(instance->module()), |
| 103 delegate_(instance->delegate()), |
66 mode_(options->mode), | 104 mode_(options->mode), |
67 accept_mime_types_(options->accept_mime_types) { | 105 accept_mime_types_(options->accept_mime_types), |
| 106 completion_callback_() { |
68 } | 107 } |
69 | 108 |
70 FileChooser::~FileChooser() { | 109 FileChooser::~FileChooser() { |
71 } | 110 } |
72 | 111 |
73 // static | 112 // static |
74 const PPB_FileChooser* FileChooser::GetInterface() { | 113 const PPB_FileChooser* FileChooser::GetInterface() { |
75 return &ppb_filechooser; | 114 return &ppb_filechooser; |
76 } | 115 } |
77 | 116 |
| 117 void FileChooser::StoreChosenFiles(const std::vector<std::string>& files) { |
| 118 next_chosen_file_index_ = 0; |
| 119 std::vector<std::string>::const_iterator end_it = files.end(); |
| 120 for (std::vector<std::string>::const_iterator it = files.begin(); |
| 121 it != end_it; it++) |
| 122 chosen_files_.push_back( |
| 123 new FileRef(module(), PP_FILESYSTEMTYPE_LOCALPERSISTENT, *it, "")); |
| 124 |
| 125 if (!completion_callback_.func) |
| 126 return; |
| 127 |
| 128 PP_CompletionCallback callback = {0}; |
| 129 std::swap(callback, completion_callback_); |
| 130 PP_RunCompletionCallback(&callback, 0); |
| 131 } |
| 132 |
78 int32_t FileChooser::Show(PP_CompletionCallback callback) { | 133 int32_t FileChooser::Show(PP_CompletionCallback callback) { |
79 NOTIMPLEMENTED(); // TODO(darin): Implement me! | 134 DCHECK((mode_ == PP_FILECHOOSERMODE_OPEN) || |
80 return PP_ERROR_FAILED; | 135 (mode_ == PP_FILECHOOSERMODE_OPENMULTIPLE)); |
| 136 DCHECK(!completion_callback_.func); |
| 137 completion_callback_ = callback; |
| 138 |
| 139 WebFileChooserParams params; |
| 140 params.multiSelect = (mode_ == PP_FILECHOOSERMODE_OPENMULTIPLE); |
| 141 params.acceptTypes = WebString::fromUTF8(accept_mime_types_); |
| 142 params.directory = false; |
| 143 |
| 144 return delegate_->RunFileChooser( |
| 145 params, new FileChooserCompletionImpl(this)); |
81 } | 146 } |
82 | 147 |
83 scoped_refptr<FileRef> FileChooser::GetNextChosenFile() { | 148 scoped_refptr<FileRef> FileChooser::GetNextChosenFile() { |
84 NOTIMPLEMENTED(); // TODO(darin): Implement me! | 149 if (next_chosen_file_index_ >= chosen_files_.size()) |
85 return NULL; | 150 return NULL; |
| 151 |
| 152 return chosen_files_[next_chosen_file_index_++]; |
86 } | 153 } |
87 | 154 |
88 } // namespace pepper | 155 } // namespace pepper |
OLD | NEW |