Home | History | Annotate | Download | only in network
      1 /*
      2  * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
      3  * Copyright (C) 2013 Google Inc.  All rights reserved.
      4  *
      5  * Redistribution and use in source and binary forms, with or without
      6  * modification, are permitted provided that the following conditions
      7  * are met:
      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 COMPUTER, INC. ``AS IS'' AND ANY
     15  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     17  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
     18  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     19  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     20  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
     21  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
     22  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     24  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     25  */
     26 
     27 #ifndef ResourceError_h
     28 #define ResourceError_h
     29 
     30 #include "platform/PlatformExport.h"
     31 #include "wtf/text/WTFString.h"
     32 
     33 namespace WebCore {
     34 
     35 PLATFORM_EXPORT extern const char errorDomainBlinkInternal[]; // Used for errors that won't be exposed to clients.
     36 
     37 class PLATFORM_EXPORT ResourceError {
     38 public:
     39     static ResourceError cancelledError(const String& failingURL);
     40 
     41     ResourceError()
     42         : m_errorCode(0)
     43         , m_isNull(true)
     44         , m_isCancellation(false)
     45         , m_isTimeout(false)
     46     {
     47     }
     48 
     49     ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
     50         : m_domain(domain)
     51         , m_errorCode(errorCode)
     52         , m_failingURL(failingURL)
     53         , m_localizedDescription(localizedDescription)
     54         , m_isNull(false)
     55         , m_isCancellation(false)
     56         , m_isTimeout(false)
     57     {
     58     }
     59 
     60     // Makes a deep copy. Useful for when you need to use a ResourceError on another thread.
     61     ResourceError copy() const;
     62 
     63     bool isNull() const { return m_isNull; }
     64 
     65     const String& domain() const { return m_domain; }
     66     int errorCode() const { return m_errorCode; }
     67     const String& failingURL() const { return m_failingURL; }
     68     const String& localizedDescription() const { return m_localizedDescription; }
     69 
     70     void setIsCancellation(bool isCancellation) { m_isCancellation = isCancellation; }
     71     bool isCancellation() const { return m_isCancellation; }
     72 
     73     void setIsTimeout(bool isTimeout) { m_isTimeout = isTimeout; }
     74     bool isTimeout() const { return m_isTimeout; }
     75 
     76     static bool compare(const ResourceError&, const ResourceError&);
     77 
     78 private:
     79     String m_domain;
     80     int m_errorCode;
     81     String m_failingURL;
     82     String m_localizedDescription;
     83     bool m_isNull;
     84     bool m_isCancellation;
     85     bool m_isTimeout;
     86 };
     87 
     88 inline bool operator==(const ResourceError& a, const ResourceError& b) { return ResourceError::compare(a, b); }
     89 inline bool operator!=(const ResourceError& a, const ResourceError& b) { return !(a == b); }
     90 
     91 } // namespace WebCore
     92 
     93 #endif // ResourceError_h
     94