1/*
2 * Copyright (C) 2013 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 *
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 AND ITS CONTRIBUTORS "AS IS" AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#ifndef TypeConversions_h
27#define TypeConversions_h
28
29#include <wtf/FastMalloc.h>
30#include <wtf/PassRefPtr.h>
31#include <wtf/RefCounted.h>
32
33namespace WebCore {
34
35class TypeConversions : public RefCounted<TypeConversions> {
36public:
37    static PassRefPtr<TypeConversions> create() { return adoptRef(new TypeConversions()); }
38
39    long testLong() { return m_long; }
40    void setTestLong(long value) { m_long = value; }
41    long testEnforceRangeLong() { return m_long; }
42    void setTestEnforceRangeLong(long value) { m_long = value; }
43    unsigned long testUnsignedLong() { return m_unsignedLong; }
44    void setTestUnsignedLong(unsigned long value) { m_unsignedLong = value; }
45    unsigned long testEnforceRangeUnsignedLong() { return m_unsignedLong; }
46    void setTestEnforceRangeUnsignedLong(unsigned long value) { m_unsignedLong = value; }
47
48    long long testLongLong() { return m_longLong; }
49    void setTestLongLong(long long value) { m_longLong = value; }
50    long long testEnforceRangeLongLong() { return m_longLong; }
51    void setTestEnforceRangeLongLong(long long value) { m_longLong = value; }
52    unsigned long long testUnsignedLongLong() { return m_unsignedLongLong; }
53    void setTestUnsignedLongLong(unsigned long long value) { m_unsignedLongLong = value; }
54    unsigned long long testEnforceRangeUnsignedLongLong() { return m_unsignedLongLong; }
55    void setTestEnforceRangeUnsignedLongLong(unsigned long long value) { m_unsignedLongLong = value; }
56
57    int8_t testByte() { return m_byte; }
58    void setTestByte(int8_t value) { m_byte = value; }
59    int8_t testEnforceRangeByte() { return m_byte; }
60    void setTestEnforceRangeByte(int8_t value) { m_byte = value; }
61    uint8_t testOctet() { return m_octet; }
62    void setTestOctet(uint8_t value) { m_octet = value; }
63    uint8_t testEnforceRangeOctet() { return m_octet; }
64    void setTestEnforceRangeOctet(uint8_t value) { m_octet = value; }
65
66    int16_t testShort() { return m_short; }
67    void setTestShort(int16_t value) { m_short = value; }
68    int16_t testEnforceRangeShort() { return m_short; }
69    void setTestEnforceRangeShort(int16_t value) { m_short = value; }
70    uint16_t testUnsignedShort() { return m_UnsignedShort; }
71    void setTestUnsignedShort(uint16_t value) { m_UnsignedShort = value; }
72    uint16_t testEnforceRangeUnsignedShort() { return m_UnsignedShort; }
73    void setTestEnforceRangeUnsignedShort(uint16_t value) { m_UnsignedShort = value; }
74private:
75    TypeConversions()
76    {
77    }
78
79    long m_long;
80    unsigned long m_unsignedLong;
81    long long m_longLong;
82    unsigned long long m_unsignedLongLong;
83    int8_t m_byte;
84    uint8_t m_octet;
85    int16_t m_short;
86    uint16_t m_UnsignedShort;
87};
88
89} // namespace WebCore
90
91#endif
92