193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)/*
293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * Copyright (C) 2011 Google Inc. All rights reserved.
393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) *
493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * modification, are permitted provided that the following conditions
693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * are met:
793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) *
893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
1093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
1193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
1293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
1393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) *
1493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
1593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
1893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
2193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) */
2593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
2693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#ifndef WebIDBKey_h
2793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#define WebIDBKey_h
2893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
2993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebCommon.h"
300019e4eead4d990e4304c54a9028aca9122fb256Ben Murdoch#include "WebIDBTypes.h"
3193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebPrivatePtr.h"
3293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebString.h"
3393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebVector.h"
3493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
3593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)namespace WebCore { class IDBKey; }
3693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
3793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)namespace WebKit {
3893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
3993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)class WebIDBKey {
4093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)public:
4193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    // Please use one of the factory methods. This is public only to allow WebVector.
4293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WebIDBKey() { }
4393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    ~WebIDBKey() { reset(); }
4493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
4593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT static WebIDBKey createArray(const WebVector<WebIDBKey>&);
4693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT static WebIDBKey createString(const WebString&);
4793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT static WebIDBKey createDate(double);
4893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT static WebIDBKey createNumber(double);
4993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT static WebIDBKey createInvalid();
5093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT static WebIDBKey createNull();
5193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
5293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WebIDBKey(const WebIDBKey& e) { assign(e); }
5393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WebIDBKey& operator=(const WebIDBKey& e)
5493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    {
5593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)        assign(e);
5693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)        return *this;
5793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    }
5893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
5993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT void assign(const WebIDBKey&);
6093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT void assignArray(const WebVector<WebIDBKey>&);
6193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT void assignString(const WebString&);
6293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT void assignDate(double);
6393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT void assignNumber(double);
6493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT void assignInvalid();
6593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT void assignNull();
6693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT void reset();
6793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
680019e4eead4d990e4304c54a9028aca9122fb256Ben Murdoch    WEBKIT_EXPORT WebIDBKeyType keyType() const;
6993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT bool isValid() const;
7093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT WebVector<WebIDBKey> array() const; // Only valid for ArrayType.
7193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT WebString string() const; // Only valid for StringType.
7293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT double date() const; // Only valid for DateType.
7393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WEBKIT_EXPORT double number() const; // Only valid for NumberType.
7493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
7593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#if WEBKIT_IMPLEMENTATION
7693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WebIDBKey(const WTF::PassRefPtr<WebCore::IDBKey>&);
7793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WebIDBKey& operator=(const WTF::PassRefPtr<WebCore::IDBKey>&);
7893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    operator WTF::PassRefPtr<WebCore::IDBKey>() const;
7993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#endif
8093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
8193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)private:
8293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WebPrivatePtr<WebCore::IDBKey> m_private;
8393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)};
8493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
8593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)} // namespace WebKit
8693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
8793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#endif // WebIDBKey_h
88