OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (C) 2010 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 | |
6 * are met: | |
7 * 1. Redistributions of source code must retain the above copyright | |
8 * notice, this list of conditions and the following disclaimer. | |
9 * 2. Redistributions in binary form must reproduce the above copyright | |
10 * notice, this list of conditions and the following disclaimer in the | |
11 * documentation and/or other materials provided with the distribution. | |
12 * | |
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY | |
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR | |
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | |
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | |
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
24 */ | |
25 | |
26 #ifndef SKY_ENGINE_PLATFORM_NETWORK_RESOURCELOADTIMING_H_ | |
27 #define SKY_ENGINE_PLATFORM_NETWORK_RESOURCELOADTIMING_H_ | |
28 | |
29 #include "sky/engine/wtf/PassRefPtr.h" | |
30 #include "sky/engine/wtf/RefCounted.h" | |
31 #include "sky/engine/wtf/RefPtr.h" | |
32 | |
33 namespace blink { | |
34 | |
35 class ResourceLoadTiming : public RefCounted<ResourceLoadTiming> { | |
36 public: | |
37 static PassRefPtr<ResourceLoadTiming> create() | |
38 { | |
39 return adoptRef(new ResourceLoadTiming); | |
40 } | |
41 | |
42 PassRefPtr<ResourceLoadTiming> deepCopy() | |
43 { | |
44 RefPtr<ResourceLoadTiming> timing = create(); | |
45 timing->requestTime = requestTime; | |
46 timing->proxyStart = proxyStart; | |
47 timing->proxyEnd = proxyEnd; | |
48 timing->dnsStart = dnsStart; | |
49 timing->dnsEnd = dnsEnd; | |
50 timing->connectStart = connectStart; | |
51 timing->connectEnd = connectEnd; | |
52 timing->sendStart = sendStart; | |
53 timing->sendEnd = sendEnd; | |
54 timing->receiveHeadersEnd = receiveHeadersEnd; | |
55 timing->sslStart = sslStart; | |
56 timing->sslEnd = sslEnd; | |
57 return timing.release(); | |
58 } | |
59 | |
60 bool operator==(const ResourceLoadTiming& other) const | |
61 { | |
62 return requestTime == other.requestTime | |
63 && proxyStart == other.proxyStart | |
64 && proxyEnd == other.proxyEnd | |
65 && dnsStart == other.dnsStart | |
66 && dnsEnd == other.dnsEnd | |
67 && connectStart == other.connectStart | |
68 && connectEnd == other.connectEnd | |
69 && sendStart == other.sendStart | |
70 && sendEnd == other.sendEnd | |
71 && receiveHeadersEnd == other.receiveHeadersEnd | |
72 && sslStart == other.sslStart | |
73 && sslEnd == other.sslEnd; | |
74 } | |
75 | |
76 bool operator!=(const ResourceLoadTiming& other) const | |
77 { | |
78 return !(*this == other); | |
79 } | |
80 | |
81 // We want to present a unified timeline to Javascript. Using walltime is pr
oblematic, because the clock may skew while resources | |
82 // load. To prevent that skew, we record a single reference walltime when ro
ot document navigation begins. All other times are | |
83 // recorded using monotonicallyIncreasingTime(). When a time needs to be pre
sented to Javascript, we build a pseudo-walltime | |
84 // using the following equation (requestTime as example): | |
85 // pseudo time = document wall reference + (requestTime - document monoton
ic reference). | |
86 double requestTime; // All monotonicallyIncreasingTime() in seconds | |
87 double proxyStart; | |
88 double proxyEnd; | |
89 double dnsStart; | |
90 double dnsEnd; | |
91 double connectStart; | |
92 double connectEnd; | |
93 double sendStart; | |
94 double sendEnd; | |
95 double receiveHeadersEnd; | |
96 double sslStart; | |
97 double sslEnd; | |
98 | |
99 double calculateMillisecondDelta(double time) const { return time ? (time -
requestTime) * 1000 : -1; } | |
100 | |
101 private: | |
102 ResourceLoadTiming() | |
103 : requestTime(0) | |
104 , proxyStart(0) | |
105 , proxyEnd(0) | |
106 , dnsStart(0) | |
107 , dnsEnd(0) | |
108 , connectStart(0) | |
109 , connectEnd(0) | |
110 , sendStart(0) | |
111 , sendEnd(0) | |
112 , receiveHeadersEnd(0) | |
113 , sslStart(0) | |
114 , sslEnd(0) | |
115 { | |
116 } | |
117 }; | |
118 | |
119 } | |
120 | |
121 #endif // SKY_ENGINE_PLATFORM_NETWORK_RESOURCELOADTIMING_H_ | |
OLD | NEW |