Roll src/third_party/WebKit f007c95:0171005 (svn 185074:185088)
[chromium-blink-merge.git] / pdf / out_of_process_instance.h
blob2779020bec10e7adfc1367419b222d13a457c094
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef PDF_OUT_OF_PROCESS_INSTANCE_H_
6 #define PDF_OUT_OF_PROCESS_INSTANCE_H_
8 #include <queue>
9 #include <set>
10 #include <string>
11 #include <utility>
12 #include <vector>
14 #include "base/memory/scoped_ptr.h"
15 #include "pdf/paint_manager.h"
16 #include "pdf/pdf_engine.h"
17 #include "pdf/preview_mode_client.h"
19 #include "ppapi/c/private/ppb_pdf.h"
20 #include "ppapi/cpp/dev/printing_dev.h"
21 #include "ppapi/cpp/dev/scriptable_object_deprecated.h"
22 #include "ppapi/cpp/dev/selection_dev.h"
23 #include "ppapi/cpp/graphics_2d.h"
24 #include "ppapi/cpp/image_data.h"
25 #include "ppapi/cpp/input_event.h"
26 #include "ppapi/cpp/instance.h"
27 #include "ppapi/cpp/private/find_private.h"
28 #include "ppapi/cpp/private/uma_private.h"
29 #include "ppapi/cpp/url_loader.h"
30 #include "ppapi/utility/completion_callback_factory.h"
32 namespace pp {
33 class TextInput_Dev;
36 namespace chrome_pdf {
38 class OutOfProcessInstance : public pp::Instance,
39 public pp::Find_Private,
40 public pp::Printing_Dev,
41 public pp::Selection_Dev,
42 public PaintManager::Client,
43 public PDFEngine::Client,
44 public PreviewModeClient::Client {
45 public:
46 explicit OutOfProcessInstance(PP_Instance instance);
47 virtual ~OutOfProcessInstance();
49 // pp::Instance implementation.
50 virtual bool Init(uint32_t argc,
51 const char* argn[],
52 const char* argv[]) override;
53 virtual void HandleMessage(const pp::Var& message) override;
54 virtual bool HandleInputEvent(const pp::InputEvent& event) override;
55 virtual void DidChangeView(const pp::View& view) override;
57 // pp::Find_Private implementation.
58 virtual bool StartFind(const std::string& text, bool case_sensitive) override;
59 virtual void SelectFindResult(bool forward) override;
60 virtual void StopFind() override;
62 // pp::PaintManager::Client implementation.
63 virtual void OnPaint(const std::vector<pp::Rect>& paint_rects,
64 std::vector<PaintManager::ReadyRect>* ready,
65 std::vector<pp::Rect>* pending) override;
67 // pp::Printing_Dev implementation.
68 virtual uint32_t QuerySupportedPrintOutputFormats() override;
69 virtual int32_t PrintBegin(
70 const PP_PrintSettings_Dev& print_settings) override;
71 virtual pp::Resource PrintPages(
72 const PP_PrintPageNumberRange_Dev* page_ranges,
73 uint32_t page_range_count) override;
74 virtual void PrintEnd() override;
75 virtual bool IsPrintScalingDisabled() override;
77 // pp::Private implementation.
78 virtual pp::Var GetLinkAtPosition(const pp::Point& point);
80 // PPP_Selection_Dev implementation.
81 virtual pp::Var GetSelectedText(bool html) override;
83 void FlushCallback(int32_t result);
84 void DidOpen(int32_t result);
85 void DidOpenPreview(int32_t result);
87 // Called when the timer is fired.
88 void OnClientTimerFired(int32_t id);
90 // Called to print without re-entrancy issues.
91 void OnPrint(int32_t);
93 // PDFEngine::Client implementation.
94 void DocumentSizeUpdated(const pp::Size& size) override;
95 void Invalidate(const pp::Rect& rect) override;
96 void Scroll(const pp::Point& point) override;
97 void ScrollToX(int position) override;
98 void ScrollToY(int position) override;
99 void ScrollToPage(int page) override;
100 void NavigateTo(const std::string& url, bool open_in_new_tab) override;
101 void UpdateCursor(PP_CursorType_Dev cursor) override;
102 void UpdateTickMarks(const std::vector<pp::Rect>& tickmarks) override;
103 void NotifyNumberOfFindResultsChanged(int total, bool final_result) override;
104 void NotifySelectedFindResultChanged(int current_find_index) override;
105 void GetDocumentPassword(
106 pp::CompletionCallbackWithOutput<pp::Var> callback) override;
107 void Alert(const std::string& message) override;
108 bool Confirm(const std::string& message) override;
109 std::string Prompt(const std::string& question,
110 const std::string& default_answer) override;
111 std::string GetURL() override;
112 void Email(const std::string& to,
113 const std::string& cc,
114 const std::string& bcc,
115 const std::string& subject,
116 const std::string& body) override;
117 void Print() override;
118 void SubmitForm(const std::string& url,
119 const void* data,
120 int length) override;
121 std::string ShowFileSelectionDialog() override;
122 pp::URLLoader CreateURLLoader() override;
123 void ScheduleCallback(int id, int delay_in_ms) override;
124 void SearchString(const base::char16* string,
125 const base::char16* term,
126 bool case_sensitive,
127 std::vector<SearchStringResult>* results) override;
128 void DocumentPaintOccurred() override;
129 void DocumentLoadComplete(int page_count) override;
130 void DocumentLoadFailed() override;
131 pp::Instance* GetPluginInstance() override;
132 void DocumentHasUnsupportedFeature(const std::string& feature) override;
133 void DocumentLoadProgress(uint32 available, uint32 doc_size) override;
134 void FormTextFieldFocusChange(bool in_focus) override;
135 bool IsPrintPreview() override;
137 // PreviewModeClient::Client implementation.
138 void PreviewDocumentLoadComplete() override;
139 void PreviewDocumentLoadFailed() override;
141 // Helper functions for implementing PPP_PDF.
142 void RotateClockwise();
143 void RotateCounterclockwise();
145 private:
146 void ResetRecentlySentFindUpdate(int32_t);
148 // Called whenever the plugin geometry changes to update the location of the
149 // background parts, and notifies the pdf engine.
150 void OnGeometryChanged(double old_zoom, float old_device_scale);
152 // Figures out the location of any background rectangles (i.e. those that
153 // aren't painted by the PDF engine).
154 void CalculateBackgroundParts();
156 // Computes document width/height in device pixels, based on current zoom and
157 // device scale
158 int GetDocumentPixelWidth() const;
159 int GetDocumentPixelHeight() const;
161 // Draws a rectangle with the specified dimensions and color in our buffer.
162 void FillRect(const pp::Rect& rect, uint32 color);
164 void LoadUrl(const std::string& url);
165 void LoadPreviewUrl(const std::string& url);
166 void LoadUrlInternal(const std::string& url, pp::URLLoader* loader,
167 void (OutOfProcessInstance::* method)(int32_t));
169 // Creates a URL loader and allows it to access all urls, i.e. not just the
170 // frame's origin.
171 pp::URLLoader CreateURLLoaderInternal();
173 // Figure out the initial page to display based on #page=N and #nameddest=foo
174 // in the |url_|.
175 // Returns -1 if there is no valid fragment. The returned value is 0-based,
176 // whereas page=N is 1-based.
177 int GetInitialPage(const std::string& url);
179 void FormDidOpen(int32_t result);
181 std::string GetLocalizedString(PP_ResourceString id);
183 void UserMetricsRecordAction(const std::string& action);
185 enum DocumentLoadState {
186 LOAD_STATE_LOADING,
187 LOAD_STATE_COMPLETE,
188 LOAD_STATE_FAILED,
191 // Set new zoom scale.
192 void SetZoom(double scale);
194 // Reduces the document to 1 page and appends |print_preview_page_count_|
195 // blank pages to the document for print preview.
196 void AppendBlankPrintPreviewPages();
198 // Process the preview page data information. |src_url| specifies the preview
199 // page data location. The |src_url| is in the format:
200 // chrome://print/id/page_number/print.pdf
201 // |dst_page_index| specifies the blank page index that needs to be replaced
202 // with the new page data.
203 void ProcessPreviewPageInfo(const std::string& src_url, int dst_page_index);
204 // Load the next available preview page into the blank page.
205 void LoadAvailablePreviewPage();
207 // Bound the given scroll offset to the document.
208 pp::FloatPoint BoundScrollOffsetToDocument(
209 const pp::FloatPoint& scroll_offset);
211 pp::ImageData image_data_;
212 // Used when the plugin is embedded in a page and we have to create the loader
213 // ourself.
214 pp::CompletionCallbackFactory<OutOfProcessInstance> loader_factory_;
215 pp::URLLoader embed_loader_;
216 pp::URLLoader embed_preview_loader_;
218 PP_CursorType_Dev cursor_; // The current cursor.
220 pp::CompletionCallbackFactory<OutOfProcessInstance> timer_factory_;
222 // Size, in pixels, of plugin rectangle.
223 pp::Size plugin_size_;
224 // Size, in DIPs, of plugin rectangle.
225 pp::Size plugin_dip_size_;
226 // Remaining area, in pixels, to render the pdf in after accounting for
227 // horizontal centering.
228 pp::Rect available_area_;
229 // Size of entire document in pixels (i.e. if each page is 800 pixels high and
230 // there are 10 pages, the height will be 8000).
231 pp::Size document_size_;
233 double zoom_; // Current zoom factor.
235 float device_scale_; // Current device scale factor.
236 bool printing_enabled_;
237 // True if the plugin is full-page.
238 bool full_;
240 PaintManager paint_manager_;
242 struct BackgroundPart {
243 pp::Rect location;
244 uint32 color;
246 std::vector<BackgroundPart> background_parts_;
248 struct PrintSettings {
249 PrintSettings() {
250 Clear();
252 void Clear() {
253 is_printing = false;
254 print_pages_called_ = false;
255 memset(&pepper_print_settings, 0, sizeof(pepper_print_settings));
257 // This is set to true when PrintBegin is called and false when PrintEnd is
258 // called.
259 bool is_printing;
260 // To know whether this was an actual print operation, so we don't double
261 // count UMA logging.
262 bool print_pages_called_;
263 PP_PrintSettings_Dev pepper_print_settings;
266 PrintSettings print_settings_;
268 scoped_ptr<PDFEngine> engine_;
270 // This engine is used to render the individual preview page data. This is
271 // used only in print preview mode. This will use |PreviewModeClient|
272 // interface which has very limited access to the pp::Instance.
273 scoped_ptr<PDFEngine> preview_engine_;
275 std::string url_;
277 // Used for submitting forms.
278 pp::CompletionCallbackFactory<OutOfProcessInstance> form_factory_;
279 pp::URLLoader form_loader_;
281 // Used for printing without re-entrancy issues.
282 pp::CompletionCallbackFactory<OutOfProcessInstance> print_callback_factory_;
284 // True if we haven't painted the plugin viewport yet.
285 bool first_paint_;
287 DocumentLoadState document_load_state_;
288 DocumentLoadState preview_document_load_state_;
290 // A UMA resource for histogram reporting.
291 pp::UMAPrivate uma_;
293 // Used so that we only tell the browser once about an unsupported feature, to
294 // avoid the infobar going up more than once.
295 bool told_browser_about_unsupported_feature_;
297 // Keeps track of which unsupported features we reported, so we avoid spamming
298 // the stats if a feature shows up many times per document.
299 std::set<std::string> unsupported_features_reported_;
301 // Number of pages in print preview mode, 0 if not in print preview mode.
302 int print_preview_page_count_;
303 std::vector<int> print_preview_page_numbers_;
305 // Used to manage loaded print preview page information. A |PreviewPageInfo|
306 // consists of data source url string and the page index in the destination
307 // document.
308 typedef std::pair<std::string, int> PreviewPageInfo;
309 std::queue<PreviewPageInfo> preview_pages_info_;
311 // Used to signal the browser about focus changes to trigger the OSK.
312 // TODO(abodenha@chromium.org) Implement full IME support in the plugin.
313 // http://crbug.com/132565
314 scoped_ptr<pp::TextInput_Dev> text_input_;
316 // The last document load progress value sent to the web page.
317 double last_progress_sent_;
319 // Whether an update to the number of find results found was sent less than
320 // |kFindResultCooldownMs| milliseconds ago.
321 bool recently_sent_find_update_;
323 // The tickmarks.
324 std::vector<pp::Rect> tickmarks_;
326 // Whether the plugin has received a viewport changed message. Nothing should
327 // be painted until this is received.
328 bool received_viewport_message_;
330 // If true, this means we told the RenderView that we're starting a network
331 // request so that it can start the throbber. We will tell it again once the
332 // document finishes loading.
333 bool did_call_start_loading_;
335 // If this is true, then don't scroll the plugin in response to DidChangeView
336 // messages. This will be true when the extension page is in the process of
337 // zooming the plugin so that flickering doesn't occur while zooming.
338 bool stop_scrolling_;
340 // The callback for receiving the password from the page.
341 scoped_ptr<pp::CompletionCallbackWithOutput<pp::Var> > password_callback_;
344 } // namespace chrome_pdf
346 #endif // PDF_OUT_OF_PROCESS_INSTANCE_H_