2015-01-07 07:38:24 +08:00
|
|
|
//===-- UriParser.cpp -------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-01-07 07:38:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-02-10 20:21:22 +08:00
|
|
|
#include "lldb/Utility/UriParser.h"
|
2017-04-07 02:12:24 +08:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <tuple>
|
2015-01-16 04:57:01 +08:00
|
|
|
|
|
|
|
using namespace lldb_private;
|
2015-01-07 07:38:24 +08:00
|
|
|
|
|
|
|
// UriParser::Parse
|
2016-11-17 09:38:02 +08:00
|
|
|
bool UriParser::Parse(llvm::StringRef uri, llvm::StringRef &scheme,
|
|
|
|
llvm::StringRef &hostname, int &port,
|
|
|
|
llvm::StringRef &path) {
|
2017-11-03 05:35:26 +08:00
|
|
|
llvm::StringRef tmp_scheme, tmp_hostname, tmp_path;
|
2015-08-21 07:09:34 +08:00
|
|
|
|
2016-11-17 09:38:02 +08:00
|
|
|
const llvm::StringRef kSchemeSep("://");
|
2015-08-21 07:09:34 +08:00
|
|
|
auto pos = uri.find(kSchemeSep);
|
|
|
|
if (pos == std::string::npos)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Extract path.
|
|
|
|
tmp_scheme = uri.substr(0, pos);
|
2016-11-17 09:38:02 +08:00
|
|
|
auto host_pos = pos + kSchemeSep.size();
|
2015-09-02 07:57:17 +08:00
|
|
|
auto path_pos = uri.find('/', host_pos);
|
2015-08-21 07:09:34 +08:00
|
|
|
if (path_pos != std::string::npos)
|
|
|
|
tmp_path = uri.substr(path_pos);
|
|
|
|
else
|
|
|
|
tmp_path = "/";
|
|
|
|
|
|
|
|
auto host_port = uri.substr(
|
|
|
|
host_pos,
|
|
|
|
((path_pos != std::string::npos) ? path_pos : uri.size()) - host_pos);
|
|
|
|
|
|
|
|
// Extract hostname
|
2017-07-25 00:47:04 +08:00
|
|
|
if (!host_port.empty() && host_port[0] == '[') {
|
2015-08-21 07:09:34 +08:00
|
|
|
// hostname is enclosed with square brackets.
|
|
|
|
pos = host_port.find(']');
|
|
|
|
if (pos == std::string::npos)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
tmp_hostname = host_port.substr(1, pos - 1);
|
2016-11-17 09:38:02 +08:00
|
|
|
host_port = host_port.drop_front(pos + 1);
|
|
|
|
if (!host_port.empty() && !host_port.consume_front(":"))
|
|
|
|
return false;
|
2015-08-21 07:09:34 +08:00
|
|
|
} else {
|
2016-11-17 09:38:02 +08:00
|
|
|
std::tie(tmp_hostname, host_port) = host_port.split(':');
|
2015-08-21 07:09:34 +08:00
|
|
|
}
|
2015-01-07 07:38:24 +08:00
|
|
|
|
2015-08-21 07:09:34 +08:00
|
|
|
// Extract port
|
2016-11-17 09:38:02 +08:00
|
|
|
if (!host_port.empty()) {
|
|
|
|
uint16_t port_value = 0;
|
|
|
|
if (host_port.getAsInteger(0, port_value))
|
2015-01-16 04:57:01 +08:00
|
|
|
return false;
|
2016-11-17 09:38:02 +08:00
|
|
|
port = port_value;
|
2015-08-21 07:09:34 +08:00
|
|
|
} else
|
|
|
|
port = -1;
|
|
|
|
|
|
|
|
scheme = tmp_scheme;
|
|
|
|
hostname = tmp_hostname;
|
|
|
|
path = tmp_path;
|
|
|
|
return true;
|
2015-01-07 07:38:24 +08:00
|
|
|
}
|