Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / device_orientation / DeviceMotionData.h
1 /*
2  * Copyright (C) 2010 Apple 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  *  * Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  *  * 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 THE COPYRIGHT HOLDERS ``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 THE COPYRIGHT OWNER 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 DeviceMotionData_h
27 #define DeviceMotionData_h
28
29 #include "platform/heap/Handle.h"
30 #include "wtf/RefCounted.h"
31 #include "wtf/RefPtr.h"
32
33 namespace blink {
34
35 class WebDeviceMotionData;
36
37 class DeviceMotionData : public RefCountedWillBeGarbageCollected<DeviceMotionData> {
38 public:
39
40     class Acceleration : public RefCountedWillBeGarbageCollected<DeviceMotionData::Acceleration> {
41     public:
42         static PassRefPtrWillBeRawPtr<Acceleration> create(bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z);
43         void trace(Visitor*) { }
44
45         bool canProvideX() const { return m_canProvideX; }
46         bool canProvideY() const { return m_canProvideY; }
47         bool canProvideZ() const { return m_canProvideZ; }
48
49         double x() const { return m_x; }
50         double y() const { return m_y; }
51         double z() const { return m_z; }
52
53     private:
54         Acceleration(bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z);
55
56         double m_x;
57         double m_y;
58         double m_z;
59
60         bool m_canProvideX;
61         bool m_canProvideY;
62         bool m_canProvideZ;
63     };
64
65     class RotationRate : public RefCountedWillBeGarbageCollected<DeviceMotionData::RotationRate> {
66     public:
67         static PassRefPtrWillBeRawPtr<RotationRate> create(bool canProvideAlpha, double alpha, bool canProvideBeta,  double beta, bool canProvideGamma, double gamma);
68         void trace(Visitor*) { }
69
70         bool canProvideAlpha() const { return m_canProvideAlpha; }
71         bool canProvideBeta() const { return m_canProvideBeta; }
72         bool canProvideGamma() const { return m_canProvideGamma; }
73
74         double alpha() const { return m_alpha; }
75         double beta() const { return m_beta; }
76         double gamma() const { return m_gamma; }
77
78     private:
79         RotationRate(bool canProvideAlpha, double alpha, bool canProvideBeta,  double beta, bool canProvideGamma, double gamma);
80
81         double m_alpha;
82         double m_beta;
83         double m_gamma;
84
85         bool m_canProvideAlpha;
86         bool m_canProvideBeta;
87         bool m_canProvideGamma;
88     };
89
90     static PassRefPtrWillBeRawPtr<DeviceMotionData> create();
91     static PassRefPtrWillBeRawPtr<DeviceMotionData> create(
92         PassRefPtrWillBeRawPtr<Acceleration>,
93         PassRefPtrWillBeRawPtr<Acceleration> accelerationIncludingGravity,
94         PassRefPtrWillBeRawPtr<RotationRate>,
95         bool canProvideInterval,
96         double interval);
97     static PassRefPtrWillBeRawPtr<DeviceMotionData> create(const WebDeviceMotionData&);
98     void trace(Visitor*);
99
100     Acceleration* acceleration() const { return m_acceleration.get(); }
101     Acceleration* accelerationIncludingGravity() const { return m_accelerationIncludingGravity.get(); }
102     RotationRate* rotationRate() const { return m_rotationRate.get(); }
103
104     bool canProvideInterval() const { return m_canProvideInterval; }
105     double interval() const { return m_interval; }
106
107     bool canProvideEventData() const;
108
109 private:
110     DeviceMotionData();
111     DeviceMotionData(PassRefPtrWillBeRawPtr<Acceleration>, PassRefPtrWillBeRawPtr<Acceleration> accelerationIncludingGravity, PassRefPtrWillBeRawPtr<RotationRate>, bool canProvideInterval, double interval);
112
113     RefPtrWillBeMember<Acceleration> m_acceleration;
114     RefPtrWillBeMember<Acceleration> m_accelerationIncludingGravity;
115     RefPtrWillBeMember<RotationRate> m_rotationRate;
116     bool m_canProvideInterval;
117     double m_interval;
118 };
119
120 } // namespace blink
121
122 #endif // DeviceMotionData_h