OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 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. | |
4 | |
5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_SAFE_MEDIA_METADATA_PARSER_H_ | |
6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_SAFE_MEDIA_METADATA_PARSER_H_ | |
7 | |
8 #include "base/callback.h" | |
9 #include "base/compiler_specific.h" | |
10 #include "base/memory/scoped_ptr.h" | |
11 #include "base/memory/weak_ptr.h" | |
12 #include "chrome/common/extensions/api/media_galleries.h" | |
13 #include "content/public/browser/utility_process_host.h" | |
14 #include "content/public/browser/utility_process_host_client.h" | |
15 | |
16 namespace IPC { | |
17 class Message; | |
18 } | |
19 | |
20 class Profile; | |
21 | |
22 namespace metadata { | |
23 | |
24 // Parses the media metadata of a Blob safely in a utility process. This class | |
25 // expects the MIME type of the Blob to be already determined. It spawns a | |
26 // utility process to do further MIME-type specific metadata extraction. | |
27 // All public methods and callbacks of this class run on the UI thread. | |
28 class SafeMediaMetadataParser : public content::UtilityProcessHostClient { | |
29 public: | |
30 typedef extensions::api::media_galleries::MediaMetadata MediaMetadata; | |
31 | |
32 // Callback function should take ownership of |metadata|. | |
33 typedef base::Callback< | |
34 void(bool parse_success, scoped_ptr<MediaMetadata> metadata)> | |
35 DoneCallback; | |
36 | |
37 SafeMediaMetadataParser(Profile* profile, const std::string& blob_uuid, | |
38 int64 blob_size, const std::string& mime_type); | |
39 | |
40 // Should be called on the UI thread. |callback| also runs on the UI thread. | |
41 void Start(const DoneCallback& callback); | |
42 | |
43 private: | |
44 enum ParserState { | |
45 INITIAL_STATE, | |
46 STARTED_PARSING_STATE, | |
47 FINISHED_PARSING_STATE, | |
48 }; | |
49 | |
50 // Private because content::UtilityProcessHostClient is ref-counted. | |
51 virtual ~SafeMediaMetadataParser(); | |
52 | |
53 // Launches the utility process. Must run on the IO thread. | |
54 void StartWorkOnIOThread(); | |
55 | |
56 // Notification from the utility process when it finishes parsing metadata. | |
57 // Runs on the IO thread. | |
58 void OnParseMediaMetadataFinished( | |
59 bool parse_success, | |
60 const base::DictionaryValue& metadata_dictionary); | |
61 | |
62 // Notification when the utility process requests a byte range from the blob. | |
63 // Runs on the IO thread. | |
64 void OnUtilityProcessRequestBlobBytes(int64 request_id, int64 byte_start, | |
65 int64 length); | |
66 // Completes the Blob byte request. | |
67 void OnBlobReaderDone(int64 request_id, scoped_ptr<std::string> data); | |
68 | |
69 // UtilityProcessHostClient implementation. | |
70 // Runs on the IO thread. | |
71 virtual void OnProcessCrashed(int exit_code) OVERRIDE; | |
72 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | |
73 | |
74 Profile* profile_; | |
vandebo (ex-Chrome)
2014/01/07 18:34:59
Which thread are these accessed on?
tommycli
2014/01/07 20:23:31
Done.
| |
75 std::string blob_uuid_; | |
vandebo (ex-Chrome)
2014/01/07 18:34:59
Can these be const ?
tommycli
2014/01/07 20:23:31
Done.
| |
76 int64 blob_size_; | |
77 std::string mime_type_; | |
78 | |
79 // Only accessed on the UI thread. | |
80 DoneCallback callback_; | |
81 | |
82 // Only accessed on the IO thread. | |
83 base::WeakPtr<content::UtilityProcessHost> utility_process_host_; | |
84 | |
85 // Verifies the messages from the utility process came at the right time. | |
86 // Initialized on the UI thread, but only accessed on the IO thread. | |
87 ParserState parser_state_; | |
88 | |
89 DISALLOW_COPY_AND_ASSIGN(SafeMediaMetadataParser); | |
90 }; | |
91 | |
92 } // namespace metadata | |
93 | |
94 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_SAFE_MEDIA_METADATA_PARSER_H_ | |
OLD | NEW |