|
| 1 | +// MIT License |
| 2 | +// |
| 3 | +// Copyright (c) 2020-2024 offa |
| 4 | +// |
| 5 | +// Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | +// of this software and associated documentation files (the "Software"), to deal |
| 7 | +// in the Software without restriction, including without limitation the rights |
| 8 | +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | +// copies of the Software, and to permit persons to whom the Software is |
| 10 | +// furnished to do so, subject to the following conditions: |
| 11 | +// |
| 12 | +// The above copyright notice and this permission notice shall be included in all |
| 13 | +// copies or substantial portions of the Software. |
| 14 | +// |
| 15 | +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 18 | +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 20 | +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 21 | +// SOFTWARE. |
| 22 | + |
| 23 | +#include "InfluxDBBuilder.h" |
| 24 | +#include "HTTP.h" |
| 25 | + |
| 26 | +namespace influxdb |
| 27 | +{ |
| 28 | + InfluxDBBuilder::InfluxDBBuilder(std::unique_ptr<Transport> impl) |
| 29 | + : transport(std::move(impl)) |
| 30 | + { |
| 31 | + } |
| 32 | + |
| 33 | + std::unique_ptr<InfluxDB> InfluxDBBuilder::connect() |
| 34 | + { |
| 35 | + return std::make_unique<InfluxDB>(std::move(transport)); |
| 36 | + } |
| 37 | + |
| 38 | + InfluxDBBuilder&& InfluxDBBuilder::setBasicAuthentication(const std::string& user, const std::string& pass) |
| 39 | + { |
| 40 | + dynamic_cast<transports::HTTP&>(*transport).setBasicAuthentication(user, pass); |
| 41 | + return std::move(*this); |
| 42 | + } |
| 43 | + |
| 44 | + InfluxDBBuilder&& InfluxDBBuilder::setAuthToken(const std::string& token) |
| 45 | + { |
| 46 | + dynamic_cast<transports::HTTP&>(*transport).setAuthToken(token); |
| 47 | + return std::move(*this); |
| 48 | + } |
| 49 | + |
| 50 | + InfluxDBBuilder&& InfluxDBBuilder::setProxy(const Proxy& proxy) |
| 51 | + { |
| 52 | + dynamic_cast<transports::HTTP&>(*transport).setProxy(proxy); |
| 53 | + return std::move(*this); |
| 54 | + } |
| 55 | + |
| 56 | + InfluxDBBuilder&& InfluxDBBuilder::setTimeout(std::chrono::milliseconds timeout) |
| 57 | + { |
| 58 | + dynamic_cast<transports::HTTP&>(*transport).setTimeout(timeout); |
| 59 | + return std::move(*this); |
| 60 | + } |
| 61 | + |
| 62 | + InfluxDBBuilder&& InfluxDBBuilder::setVerifyCertificate(bool verify) |
| 63 | + { |
| 64 | + dynamic_cast<transports::HTTP&>(*transport).setVerifyCertificate(verify); |
| 65 | + return std::move(*this); |
| 66 | + } |
| 67 | + |
| 68 | + InfluxDBBuilder InfluxDBBuilder::http(const std::string& url) |
| 69 | + { |
| 70 | + return InfluxDBBuilder{std::make_unique<transports::HTTP>(url)}; |
| 71 | + } |
| 72 | + |
| 73 | + |
| 74 | +} |
0 commit comments