| // Copyright 2016 The Fuchsia Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef SRC_LIB_PKG_URL_URL_RESOLVER_H_ |
| #define SRC_LIB_PKG_URL_URL_RESOLVER_H_ |
| |
| #include <string> |
| |
| namespace component { |
| |
| // Canonicalizes a URL, if possible. Otherwise, returns an empty string/ |
| std::string CanonicalizeURL(const std::string& url); |
| |
| // Returns the scheme portion of the URL, if any. |
| std::string GetSchemeFromURL(const std::string& url); |
| |
| // Resolves a URL into a path, if possible. Otherwise, returns an empty string. |
| std::string GetPathFromURL(const std::string& url); |
| |
| // Returns a file:// URL for the given path. |
| std::string GetURLFromPath(const std::string& path); |
| |
| } // namespace component |
| |
| #endif // SRC_LIB_PKG_URL_URL_RESOLVER_H_ |