~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/platform/network/soup/ResourceErrorSoup.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Igalia S.L.
 
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
 * 1. Redistributions of source code must retain the above copyright
 
8
 *    notice, this list of conditions and the following disclaimer.
 
9
 * 2. 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 IGALIA S.L. ``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 APPLE COMPUTER, INC. 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
#include "config.h"
 
27
#include "ResourceError.h"
 
28
 
 
29
#include "LocalizedStrings.h"
 
30
#define LIBSOUP_USE_UNSTABLE_REQUEST_API
 
31
#include <libsoup/soup-request.h>
 
32
#include <libsoup/soup.h>
 
33
#include <wtf/gobject/GOwnPtr.h>
 
34
#include <wtf/text/CString.h>
 
35
 
 
36
namespace WebCore {
 
37
 
 
38
static String failingURI(SoupURI* soupURI)
 
39
{
 
40
    ASSERT(soupURI);
 
41
    GOwnPtr<char> uri(soup_uri_to_string(soupURI, FALSE));
 
42
    return uri.get();
 
43
}
 
44
 
 
45
static String failingURI(SoupRequest* request)
 
46
{
 
47
    ASSERT(request);
 
48
    return failingURI(soup_request_get_uri(request));
 
49
}
 
50
 
 
51
ResourceError ResourceError::httpError(SoupMessage* message, GError* error, SoupRequest* request)
 
52
{
 
53
    if (!message || !SOUP_STATUS_IS_TRANSPORT_ERROR(message->status_code))
 
54
        return genericIOError(error, request);
 
55
    return ResourceError(g_quark_to_string(SOUP_HTTP_ERROR), message->status_code,
 
56
        failingURI(request), String::fromUTF8(message->reason_phrase));
 
57
}
 
58
 
 
59
ResourceError ResourceError::authenticationError(SoupMessage* message)
 
60
{
 
61
    ASSERT(message);
 
62
    return ResourceError(g_quark_to_string(SOUP_HTTP_ERROR), message->status_code,
 
63
        failingURI(soup_message_get_uri(message)), String::fromUTF8(message->reason_phrase));
 
64
}
 
65
 
 
66
ResourceError ResourceError::genericIOError(GError* error, SoupRequest* request)
 
67
{
 
68
    return ResourceError(g_quark_to_string(G_IO_ERROR), error->code,
 
69
        failingURI(request), String::fromUTF8(error->message));
 
70
}
 
71
 
 
72
ResourceError ResourceError::tlsError(SoupRequest* request, unsigned /* tlsErrors */, GTlsCertificate*)
 
73
{
 
74
    return ResourceError(g_quark_to_string(SOUP_HTTP_ERROR), SOUP_STATUS_SSL_FAILED,
 
75
        failingURI(request), unacceptableTLSCertificate());
 
76
}
 
77
 
 
78
ResourceError ResourceError::timeoutError(const String& failingURL)
 
79
{
 
80
    // FIXME: This should probably either be integrated into Errors(Gtk/EFL).h or the
 
81
    // networking errors from those files should be moved here.
 
82
 
 
83
    // Use the same value as in NSURLError.h
 
84
    static const int timeoutError = -1001;
 
85
    static const char* const  errorDomain = "WebKitNetworkError";
 
86
    ResourceError error = ResourceError(errorDomain, timeoutError, failingURL, "Request timed out");
 
87
    error.setIsTimeout(true);
 
88
    return error;
 
89
}
 
90
 
 
91
} // namespace WebCore