Home | History | Annotate | Download | only in testing
      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 
     33 namespace WebCore {
     34 
     35 class TypeConversions : public RefCounted<TypeConversions> {
     36 public:
     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 
     62     uint8_t testOctet() { return m_octet; }
     63     void setTestOctet(uint8_t value) { m_octet = value; }
     64     uint8_t testEnforceRangeOctet() { return m_octet; }
     65     void setTestEnforceRangeOctet(uint8_t value) { m_octet = value; }
     66 
     67 private:
     68     TypeConversions()
     69     {
     70     }
     71 
     72     long m_long;
     73     unsigned long m_unsignedLong;
     74     long long m_longLong;
     75     unsigned long long m_unsignedLongLong;
     76     int8_t m_byte;
     77     uint8_t m_octet;
     78 };
     79 
     80 } // namespace WebCore
     81 
     82 #endif
     83