OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (C) 2007-2009 Google Inc. All rights reserved. |
| 3 * |
| 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are |
| 6 * met: |
| 7 * |
| 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above |
| 11 * copyright notice, this list of conditions and the following disclaimer |
| 12 * in the documentation and/or other materials provided with the |
| 13 * distribution. |
| 14 * * Neither the name of Google Inc. nor the names of its |
| 15 * contributors may be used to endorse or promote products derived from |
| 16 * this software without specific prior written permission. |
| 17 * |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ |
| 30 |
| 31 #include "config.h" |
| 32 #include "ScheduledAction.h" |
| 33 |
| 34 #include "Document.h" |
| 35 #include "ScriptExecutionContext.h" |
| 36 #include "ScriptSourceCode.h" |
| 37 |
| 38 #include "V8Binding.h" |
| 39 #include "V8Proxy.h" |
| 40 |
| 41 namespace WebCore { |
| 42 |
| 43 ScheduledAction::ScheduledAction(v8::Handle<v8::Function> func, int argc, v8::Ha
ndle<v8::Value> argv[]) |
| 44 : m_code(String(), KURL(), 0) |
| 45 { |
| 46 m_function = v8::Persistent<v8::Function>::New(func); |
| 47 |
| 48 #ifndef NDEBUG |
| 49 V8Proxy::RegisterGlobalHandle(SCHEDULED_ACTION, this, m_function); |
| 50 #endif |
| 51 |
| 52 m_argc = argc; |
| 53 if (argc > 0) { |
| 54 m_argv = new v8::Persistent<v8::Value>[argc]; |
| 55 for (int i = 0; i < argc; i++) { |
| 56 m_argv[i] = v8::Persistent<v8::Value>::New(argv[i]); |
| 57 |
| 58 #ifndef NDEBUG |
| 59 V8Proxy::RegisterGlobalHandle(SCHEDULED_ACTION, this, m_argv[i]); |
| 60 #endif |
| 61 } |
| 62 } else |
| 63 m_argv = 0; |
| 64 } |
| 65 |
| 66 ScheduledAction::~ScheduledAction() |
| 67 { |
| 68 if (m_function.IsEmpty()) |
| 69 return; |
| 70 |
| 71 #ifndef NDEBUG |
| 72 V8Proxy::UnregisterGlobalHandle(this, m_function); |
| 73 #endif |
| 74 m_function.Dispose(); |
| 75 |
| 76 for (int i = 0; i < m_argc; i++) { |
| 77 #ifndef NDEBUG |
| 78 V8Proxy::UnregisterGlobalHandle(this, m_argv[i]); |
| 79 #endif |
| 80 m_argv[i].Dispose(); |
| 81 } |
| 82 |
| 83 if (m_argc > 0) |
| 84 delete[] m_argv; |
| 85 } |
| 86 |
| 87 void ScheduledAction::execute(ScriptExecutionContext* context) |
| 88 { |
| 89 // FIXME: Timeouts for running the javascript code are not set. |
| 90 V8Proxy* proxy = V8Proxy::retrieve(context); |
| 91 if (!proxy) |
| 92 return; |
| 93 |
| 94 v8::HandleScope handleScope; |
| 95 v8::Local<v8::Context> v8Context = proxy->GetContext(); |
| 96 if (v8Context.IsEmpty()) |
| 97 return; // JS may not be enabled. |
| 98 |
| 99 v8::Context::Scope scope(v8Context); |
| 100 |
| 101 proxy->setTimerCallback(true); |
| 102 |
| 103 if (!m_function.IsEmpty() && m_function->IsFunction()) |
| 104 proxy->CallFunction(v8::Persistent<v8::Function>::Cast(m_function), v8Co
ntext->Global(), m_argc, m_argv); |
| 105 else |
| 106 proxy->Evaluate(m_code.url(), m_code.startLine() - 1, m_code.source(), 0
); |
| 107 |
| 108 if (context->isDocument()) |
| 109 static_cast<Document*>(context)->updateRendering(); |
| 110 |
| 111 proxy->setTimerCallback(false); |
| 112 } |
| 113 |
| 114 } // namespace WebCore |
OLD | NEW |