Chromium Code Reviews| Index: Source/core/inspector/PromiseOfficer.cpp |
| diff --git a/Source/core/inspector/PromiseOfficer.cpp b/Source/core/inspector/PromiseOfficer.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c5a67c12770bb25ea305c0dd3713966c0008d779 |
| --- /dev/null |
| +++ b/Source/core/inspector/PromiseOfficer.cpp |
| @@ -0,0 +1,107 @@ |
| +/* |
| + * Copyright (C) 2014 Google Inc. All rights reserved. |
| + * |
| + * Redistribution and use in source and binary forms, with or without |
| + * modification, are permitted provided that the following conditions are |
| + * met: |
| + * |
| + * * Redistributions of source code must retain the above copyright |
| + * notice, this list of conditions and the following disclaimer. |
| + * * Redistributions in binary form must reproduce the above |
| + * copyright notice, this list of conditions and the following disclaimer |
| + * in the documentation and/or other materials provided with the |
| + * distribution. |
| + * * Neither the name of Google Inc. nor the names of its |
| + * contributors may be used to endorse or promote products derived from |
| + * this software without specific prior written permission. |
| + * |
| + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| + */ |
| + |
| +#include "config.h" |
| + |
| +#include "bindings/v8/V8Binding.h" |
| +#include "core/inspector/PromiseOfficer.h" |
| +#include "wtf/CurrentTime.h" |
| + |
| +namespace WebCore { |
| + |
| +void PromiseOfficer::enable() |
| +{ |
| + m_isEnabled = true; |
| +} |
| + |
| +void PromiseOfficer::disable() |
| +{ |
| + if (m_isEnabled) { |
|
aandrey
2014/02/28 16:08:13
remove the check
Alexandra Mikhaylova
2014/03/03 14:04:25
Done.
|
| + m_isEnabled = false; |
| + clear(); |
| + } |
| +} |
| + |
| +void PromiseOfficer::clear() |
| +{ |
| + m_promiseDataMap.clear(); |
| +} |
| + |
| +void PromiseOfficer::didCreatePromise(ExecutionContext* context, v8::Handle<v8::Object> promise, v8::Handle<v8::Object> parentPromise, V8PromiseCustom::PromiseState state) |
| +{ |
| + double timestamp = currentTimeMS(); |
|
Alexandra Mikhaylova
2014/02/28 14:07:34
Maybe we should move this inside V8PromiseCustom::
aandrey
2014/02/28 16:08:13
no, here is best
Alexandra Mikhaylova
2014/03/03 14:04:25
Ok, thanks.
|
| + |
| + int promiseHash = promise->GetIdentityHash(); |
| + PromiseDataVector* vector; |
| + PromiseDataMap::iterator it = m_promiseDataMap.find(promiseHash); |
| + if (it != m_promiseDataMap.end()) { |
|
aandrey
2014/02/28 16:08:13
remove "{" and "}"
Alexandra Mikhaylova
2014/03/03 14:04:25
Done.
|
| + vector = &it->value; |
| + } else { |
| + vector = &m_promiseDataMap.add(promiseHash, PromiseDataVector()).storedValue->value; |
| + } |
| + v8::Isolate* isolate = toIsolate(context); |
| + vector->append(new PromiseData(promise, parentPromise, v8::Undefined(isolate), state, timestamp, isolate)); |
|
aandrey
2014/02/28 16:08:13
will vector->append(PromiseData(...)) work?
other
Alexandra Mikhaylova
2014/03/03 14:04:25
I've returned to RefPtr<PromiseData> to avoid copy
|
| +} |
| + |
| +void PromiseOfficer::didUpdatePromiseParent(v8::Handle<v8::Object> promise, v8::Handle<v8::Object> parentPromise) |
| +{ |
| + int promiseHash = promise->GetIdentityHash(); |
| + PromiseDataMap::iterator it = m_promiseDataMap.find(promiseHash); |
| + PromiseDataVector& vector = it->value; |
| + for (size_t index = 0; index < vector.size(); ++index) { |
| + PromiseData* data = vector.at(index); |
|
aandrey
2014/02/28 16:08:13
nit: vector[index]
Alexandra Mikhaylova
2014/03/03 14:04:25
Done.
|
| + if (data->getPromise() == promise) { |
| + data->setParentPromise(parentPromise); |
| + break; |
| + } |
| + } |
| +} |
| + |
| +void PromiseOfficer::didUpdatePromiseState(v8::Handle<v8::Object> promise, V8PromiseCustom::PromiseState state, v8::Handle<v8::Value> result) |
| +{ |
| + double timestamp = currentTimeMS(); |
|
Alexandra Mikhaylova
2014/02/28 14:07:34
Maybe we should do it inside V8PromiseCustom::setS
Alexandra Mikhaylova
2014/03/03 14:04:25
No, it' ok here.
|
| + |
| + int promiseHash = promise->GetIdentityHash(); |
| + PromiseDataMap::iterator it = m_promiseDataMap.find(promiseHash); |
| + PromiseDataVector& vector = it->value; |
| + for (size_t index = 0; index < vector.size(); ++index) { |
| + PromiseData* data = vector.at(index); |
| + if (data->getPromise() == promise) { |
| + data->setState(state); |
| + data->setResult(result); |
| + if (state == V8PromiseCustom::Fulfilled || state == V8PromiseCustom::Rejected) { |
|
aandrey
2014/02/28 16:08:13
remove "{" and "}"
Alexandra Mikhaylova
2014/03/03 14:04:25
Done.
|
| + data->didSettlePromise(timestamp); |
| + } |
| + break; |
| + } |
| + } |
| +} |
| + |
| +} // namespace WebCore |