initial import
[vuplus_webkit] / Source / WebCore / bindings / js / ScriptProfile.cpp
1 /*
2  * Copyright (C) 2010 Apple Inc. All rights reserved.
3  * Copyright (C) 2010 Google Inc. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
15  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
18  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "config.h"
28
29 #if ENABLE(JAVASCRIPT_DEBUGGER)
30
31 #include "ScriptProfile.h"
32
33 #include "InspectorValues.h"
34 #include "JSDOMBinding.h"
35 #include <profiler/Profile.h>
36 #include <profiler/ProfileNode.h>
37
38 namespace WebCore {
39
40 PassRefPtr<ScriptProfile> ScriptProfile::create(PassRefPtr<JSC::Profile> profile)
41 {
42     if (!profile)
43         return 0;
44     return adoptRef(new ScriptProfile(profile));
45 }
46
47 ScriptProfile::ScriptProfile(PassRefPtr<JSC::Profile> profile)
48     : m_profile(profile)
49 {
50 }
51
52 ScriptProfile::~ScriptProfile()
53 {
54 }
55
56 String ScriptProfile::title() const
57 {
58     return ustringToString(m_profile->title());
59 }
60
61 unsigned int ScriptProfile::uid() const
62 {
63     return m_profile->uid();
64 }
65
66 ScriptProfileNode* ScriptProfile::head() const
67 {
68     return m_profile->head();
69 }
70
71 PassRefPtr<ScriptProfileNode> ScriptProfile::bottomUpHead() const
72 {
73     // FIXME: implement building bottom-up profiles in C++ code,
74     // but consider https://bugs.webkit.org/show_bug.cgi?id=24604
75     return 0;
76 }
77
78 #if ENABLE(INSPECTOR)
79 static PassRefPtr<InspectorObject> buildInspectorObjectFor(const JSC::ProfileNode* node)
80 {
81     RefPtr<InspectorObject> result = InspectorObject::create();
82
83     result->setString("functionName", ustringToString(node->functionName()));
84     result->setString("url", ustringToString(node->url()));
85     result->setNumber("lineNumber", node->lineNumber());
86     result->setNumber("totalTime", node->totalTime());
87     result->setNumber("selfTime", node->selfTime());
88     result->setNumber("numberOfCalls", node->numberOfCalls());
89     result->setBoolean("visible", node->visible());
90     result->setNumber("callUID", node->callIdentifier().hash());
91
92     RefPtr<InspectorArray> childrenArray = InspectorArray::create();
93     typedef Vector<RefPtr<JSC::ProfileNode> > ProfileNodesList;
94     const ProfileNodesList& children = node->children();
95     ProfileNodesList::const_iterator end = children.end();
96     for (ProfileNodesList::const_iterator iter = children.begin(); iter != end; ++iter)
97         childrenArray->pushObject(buildInspectorObjectFor(iter->get()));
98     result->setArray("children", childrenArray);
99
100     return result;
101 }
102
103 PassRefPtr<InspectorObject> ScriptProfile::buildInspectorObjectForHead() const
104 {
105     return buildInspectorObjectFor(m_profile->head());
106 }
107
108 PassRefPtr<InspectorObject> ScriptProfile::buildInspectorObjectForBottomUpHead() const
109 {
110     return 0;
111 }
112 #endif
113
114 } // namespace WebCore
115
116 #endif // ENABLE(JAVASCRIPT_DEBUGGER)