Files
scylla/locator/gce_snitch.hh
Avi Kivity 5937b1fa23 treewide: remove empty comments in top-of-files
After fcb8d040 ("treewide: use Software Package Data Exchange
(SPDX) license identifiers"), many dual-licensed files were
left with empty comments on top. Remove them to avoid visual
noise.

Closes #10562
2022-05-13 07:11:58 +02:00

36 lines
922 B
C++

/*
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
*/
/*
* Modified by ScyllaDB
* Copyright (C) 2018-present ScyllaDB
*/
#pragma once
#include "locator/production_snitch_base.hh"
#include <seastar/http/response_parser.hh>
namespace locator {
class gce_snitch : public production_snitch_base {
public:
static constexpr const char* ZONE_NAME_QUERY_REQ = "/computeMetadata/v1/instance/zone";
static constexpr const char* GCE_QUERY_SERVER_ADDR = "metadata.google.internal";
explicit gce_snitch(const snitch_config&);
virtual future<> start() override;
virtual sstring get_name() const override {
return "org.apache.cassandra.locator.GoogleCloudSnitch";
}
protected:
future<> load_config();
future<sstring> gce_api_call(sstring addr, const sstring cmd);
future<sstring> read_property_file();
private:
sstring _meta_server_url;
};
} // namespace locator