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

« back to all changes in this revision

Viewing changes to Source/WebCore/Modules/filesystem/chromium/DOMFileSystemChromium.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 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 are
 
6
 * met:
 
7
 *
 
8
 *     * Redistributions of source code must retain the above copyright
 
9
 * notice, this list of conditions and the following disclaimer.
 
10
 *     * Redistributions in binary form must reproduce the above
 
11
 * copyright notice, this list of conditions and the following disclaimer
 
12
 * in the documentation and/or other materials provided with the
 
13
 * distribution.
 
14
 *     * Neither the name of Google Inc. nor the names of its
 
15
 * contributors may be used to endorse or promote products derived from
 
16
 * this software without specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
19
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
20
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
21
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
22
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
23
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
24
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
25
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
26
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
27
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
28
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
29
 */
 
30
 
 
31
#include "config.h"
 
32
#include "DOMFileSystemBase.h"
 
33
 
 
34
#if ENABLE(FILE_SYSTEM)
 
35
 
 
36
#include "DOMFilePath.h"
 
37
#include "FileSystemType.h"
 
38
#include "ScriptExecutionContext.h"
 
39
#include "SecurityOrigin.h"
 
40
#include <wtf/text/StringBuilder.h>
 
41
#include <wtf/text/WTFString.h>
 
42
 
 
43
namespace WebCore {
 
44
 
 
45
const char externalPathPrefix[] = "external";
 
46
 
 
47
// static
 
48
bool DOMFileSystemBase::isValidType(FileSystemType type)
 
49
{
 
50
    return type == FileSystemTypeTemporary || type == FileSystemTypePersistent || type == FileSystemTypeIsolated || type == FileSystemTypeExternal;
 
51
}
 
52
 
 
53
// static
 
54
bool DOMFileSystemBase::crackFileSystemURL(const KURL& url, FileSystemType& type, String& filePath)
 
55
{
 
56
    if (!url.protocolIs("filesystem"))
 
57
        return false;
 
58
 
 
59
    if (!url.innerURL())
 
60
        return false;
 
61
 
 
62
    String typeString = url.innerURL()->path().substring(1);
 
63
    if (typeString == temporaryPathPrefix)
 
64
        type = FileSystemTypeTemporary;
 
65
    else if (typeString == persistentPathPrefix)
 
66
        type = FileSystemTypePersistent;
 
67
    else if (typeString == externalPathPrefix)
 
68
        type = FileSystemTypeExternal;
 
69
    else
 
70
        return false;
 
71
 
 
72
    filePath = decodeURLEscapeSequences(url.path());
 
73
    return true;
 
74
}
 
75
 
 
76
bool DOMFileSystemBase::supportsToURL() const
 
77
{
 
78
    ASSERT(isValidType(m_type));
 
79
    return m_type != FileSystemTypeIsolated;
 
80
}
 
81
 
 
82
KURL DOMFileSystemBase::createFileSystemURL(const String& fullPath) const
 
83
{
 
84
    ASSERT(DOMFilePath::isAbsolute(fullPath));
 
85
 
 
86
    if (type() == FileSystemTypeExternal) {
 
87
        // For external filesystem originString could be different from what we have in m_filesystemRootURL.
 
88
        StringBuilder result;
 
89
        result.append("filesystem:");
 
90
        result.append(securityOrigin()->toString());
 
91
        result.append("/");
 
92
        result.append(externalPathPrefix);
 
93
        result.append(m_filesystemRootURL.path());
 
94
        // Remove the extra leading slash.
 
95
        result.append(encodeWithURLEscapeSequences(fullPath.substring(1)));
 
96
        return KURL(ParsedURLString, result.toString());
 
97
    }
 
98
 
 
99
    // For regular types we can just append the entry's fullPath to the m_filesystemRootURL that should look like 'filesystem:<origin>/<typePrefix>'.
 
100
    ASSERT(!m_filesystemRootURL.isEmpty());
 
101
    KURL url = m_filesystemRootURL;
 
102
    // Remove the extra leading slash.
 
103
    url.setPath(url.path() + encodeWithURLEscapeSequences(fullPath.substring(1)));
 
104
    return url;
 
105
}
 
106
 
 
107
} // namespace WebCore
 
108
 
 
109
#endif // ENABLE(FILE_SYSTEM)