blob: b8a8a90bcd3c345cd4756527731432cfca017c87 [file] [log] [blame]
weinig@apple.comfff73c12010-09-01 21:36:11 +00001/*
2 * Copyright (C) 2010 Apple 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 * 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 APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
laszlo.1.gombos@nokia.com48183962011-01-28 05:37:44 +000026#include "config.h"
weinig@apple.comfff73c12010-09-01 21:36:11 +000027#include "WKURLResponse.h"
28
weinig@apple.comb0fa1ed2013-12-19 21:32:15 +000029#include "APIURLResponse.h"
weinig@apple.comfff73c12010-09-01 21:36:11 +000030#include "WKAPICast.h"
darin@apple.com5ffbb5c2013-09-27 16:39:41 +000031#include <WebCore/URL.h>
weinig@apple.comfff73c12010-09-01 21:36:11 +000032
33using namespace WebKit;
34
35WKTypeID WKURLResponseGetTypeID()
36{
weinig@apple.comb0fa1ed2013-12-19 21:32:15 +000037 return toAPI(API::URLResponse::APIType);
weinig@apple.comfff73c12010-09-01 21:36:11 +000038}
39
commit-queue@webkit.orge696b1f2012-08-08 13:18:18 +000040WKURLRef WKURLResponseCopyURL(WKURLResponseRef responseRef)
41{
42 return toCopiedURLAPI(toImpl(responseRef)->resourceResponse().url());
43}
44
commit-queue@webkit.org9df6ea12012-08-08 19:55:37 +000045WKStringRef WKURLResponseCopyMIMEType(WKURLResponseRef responseRef)
commit-queue@webkit.orge696b1f2012-08-08 13:18:18 +000046{
47 return toCopiedAPI(toImpl(responseRef)->resourceResponse().mimeType());
48}
commit-queue@webkit.org28fed7f2012-08-14 19:49:40 +000049
50int32_t WKURLResponseHTTPStatusCode(WKURLResponseRef responseRef)
51{
52 return toImpl(responseRef)->resourceResponse().httpStatusCode();
53}
commit-queue@webkit.org3e841332012-09-26 16:12:52 +000054
55WKStringRef WKURLResponseCopySuggestedFilename(WKURLResponseRef responseRef)
56{
57 return toCopiedAPI(toImpl(responseRef)->resourceResponse().suggestedFilename());
58}
59
60bool WKURLResponseIsAttachment(WKURLResponseRef responseRef)
61{
62 return toImpl(responseRef)->resourceResponse().isAttachment();
63}
kenneth@webkit.orgce9a7722013-01-28 10:31:53 +000064
65uint32_t WKURLResponseGetExpectedContentLength(WKURLResponseRef responseRef)
66{
67 return toImpl(responseRef)->resourceResponse().expectedContentLength();
68}