OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 CONTENT_RENDERER_PEPPER_PEPPER_TRY_CATCH_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_TRY_CATCH_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "ppapi/c/pp_var.h" |
| 10 #include "ppapi/shared_impl/scoped_pp_var.h" |
| 11 #include "v8/include/v8.h" |
| 12 |
| 13 namespace content { |
| 14 |
| 15 class PepperPluginInstanceImpl; |
| 16 |
| 17 // Base class for scripting TryCatch helpers. |
| 18 class PepperTryCatch { |
| 19 public: |
| 20 PepperTryCatch(PepperPluginInstanceImpl* instance, |
| 21 bool convert_objects); |
| 22 virtual ~PepperTryCatch(); |
| 23 |
| 24 virtual void SetException(const char* message) = 0; |
| 25 // Gets the plugin context. Virtual so it can be overriden for testing. |
| 26 virtual v8::Handle<v8::Context> GetContext(); |
| 27 |
| 28 // Convenience functions for doing conversions to/from V8 values and sets an |
| 29 // exception if there is an error in the conversion. |
| 30 v8::Handle<v8::Value> ToV8(PP_Var var); |
| 31 ppapi::ScopedPPVar FromV8(v8::Handle<v8::Value> v8_value); |
| 32 |
| 33 protected: |
| 34 PepperPluginInstanceImpl* instance_; |
| 35 |
| 36 // Whether To/FromV8 should convert object vars. If set to false, an exception |
| 37 // should be set if they are encountered during conversion. |
| 38 bool convert_objects_; |
| 39 }; |
| 40 |
| 41 // Catches var exceptions and emits a v8 exception. |
| 42 class PepperTryCatchV8 : public PepperTryCatch { |
| 43 public: |
| 44 PepperTryCatchV8(PepperPluginInstanceImpl* instance, |
| 45 bool convert_objects, |
| 46 v8::Isolate* isolate); |
| 47 virtual ~PepperTryCatchV8(); |
| 48 |
| 49 bool HasException(); |
| 50 bool ThrowException(); |
| 51 void ThrowException(const char* message); |
| 52 PP_Var* exception() { return &exception_; } |
| 53 |
| 54 // PepperTryCatch |
| 55 virtual void SetException(const char* message) OVERRIDE; |
| 56 |
| 57 private: |
| 58 PP_Var exception_; |
| 59 |
| 60 DISALLOW_COPY_AND_ASSIGN(PepperTryCatchV8); |
| 61 }; |
| 62 |
| 63 // Catches v8 exceptions and emits a var exception. |
| 64 class PepperTryCatchVar : public PepperTryCatch { |
| 65 public: |
| 66 // The PP_Var exception will be placed in |exception|. The user of this class |
| 67 // is responsible for managing the lifetime of the exception. It is valid to |
| 68 // pass NULL for |exception| in which case no exception will be set. |
| 69 PepperTryCatchVar(PepperPluginInstanceImpl* instance, |
| 70 bool convert_objects, |
| 71 PP_Var* exception); |
| 72 virtual ~PepperTryCatchVar(); |
| 73 |
| 74 bool HasException(); |
| 75 |
| 76 // PepperTryCatch |
| 77 virtual void SetException(const char* message) OVERRIDE; |
| 78 |
| 79 private: |
| 80 // Code which uses PepperTryCatchVar doesn't typically have a HandleScope, |
| 81 // make one for them. Note that this class is always allocated on the stack. |
| 82 v8::HandleScope handle_scope_; |
| 83 |
| 84 v8::TryCatch try_catch_; |
| 85 |
| 86 PP_Var* exception_; |
| 87 bool exception_is_set_; |
| 88 |
| 89 DISALLOW_COPY_AND_ASSIGN(PepperTryCatchVar); |
| 90 }; |
| 91 |
| 92 } // namespace content |
| 93 |
| 94 #endif // CONTENT_RENDERER_PEPPER_PEPPER_TRY_CATCH_H_ |
OLD | NEW |