5be3ccc871
querying capibilities happens frequently: ClientRequestDispatcher: :allowConvertTo ClientRequestDispatcher: :getCapabilitiesJson ClientRequestDispatcher: :handleCapabilitiesRequest ClientRequestDispatcher: :handleIncomingMessage StreamSocket: :handlePoll Signed-off-by: Caolán McNamara <caolan.mcnamara@collabora.com> Change-Id: I6feb535a91f4ccc647b172da27284f26f55c3e27
88 lines
2.6 KiB
C++
88 lines
2.6 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* Copyright the Collabora Online contributors.
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
// This file hosts network related common functionality
|
|
// and helper/utility functions and classes.
|
|
// HTTP-specific helpers are in HttpHelper.hpp.
|
|
|
|
class StreamSocket;
|
|
class ProtocolHandlerInterface;
|
|
|
|
namespace net
|
|
{
|
|
|
|
#if !MOBILEAPP
|
|
|
|
/// Resolves the IP of the given hostname. On failure, returns @targetHost.
|
|
std::string resolveHostAddress(const std::string& targetHost);
|
|
|
|
/// Returns true if @targetHost is on the same host.
|
|
bool isLocalhost(const std::string& targetHost);
|
|
|
|
/// Returns the canonical host name of the given IP address or host name.
|
|
std::string canonicalHostName(const std::string& addressToCheck);
|
|
|
|
/// Returns a vector containing the IPAddresses for the host.
|
|
std::vector<std::string> resolveAddresses(const std::string& addressToCheck);
|
|
|
|
#endif
|
|
|
|
/// Connect to an end-point at the given host and port and return StreamSocket.
|
|
std::shared_ptr<StreamSocket>
|
|
connect(const std::string& host, const std::string& port, const bool isSSL,
|
|
const std::shared_ptr<ProtocolHandlerInterface>& protocolHandler);
|
|
|
|
/// Connect to an end-point at the given @uri and return StreamSocket.
|
|
std::shared_ptr<StreamSocket>
|
|
connect(std::string uri, const std::shared_ptr<ProtocolHandlerInterface>& protocolHandler);
|
|
|
|
/// Decomposes a URI into its components.
|
|
/// Returns true if parsing was successful.
|
|
bool parseUri(std::string uri, std::string& scheme, std::string& host, std::string& port,
|
|
std::string& url);
|
|
|
|
/// Decomposes a URI into its components.
|
|
/// Returns true if parsing was successful.
|
|
inline bool parseUri(std::string uri, std::string& scheme, std::string& host, std::string& port)
|
|
{
|
|
std::string url;
|
|
return parseUri(std::move(uri), scheme, host, port, url);
|
|
}
|
|
|
|
/// Return the locator given a URI.
|
|
inline std::string parseUrl(const std::string& uri)
|
|
{
|
|
auto itScheme = uri.find("://");
|
|
if (itScheme != uri.npos)
|
|
{
|
|
itScheme += 3; // Skip it.
|
|
}
|
|
else
|
|
{
|
|
itScheme = 0;
|
|
}
|
|
|
|
const auto itUrl = uri.find('/', itScheme);
|
|
if (itUrl != uri.npos)
|
|
{
|
|
return uri.substr(itUrl); // Including the first foreslash.
|
|
}
|
|
|
|
return std::string();
|
|
}
|
|
|
|
} // namespace net
|