Apache Mesos
curl.hpp
Go to the documentation of this file.
1 // Licensed to the Apache Software Foundation (ASF) under one
2 // or more contributor license agreements. See the NOTICE file
3 // distributed with this work for additional information
4 // regarding copyright ownership. The ASF licenses this file
5 // to you under the Apache License, Version 2.0 (the
6 // "License"); you may not use this file except in compliance
7 // with the License. You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 
17 #ifndef __URI_FETCHERS_CURL_HPP__
18 #define __URI_FETCHERS_CURL_HPP__
19 
20 #include <process/owned.hpp>
21 
22 #include <stout/flags.hpp>
23 #include <stout/try.hpp>
24 
25 #include <mesos/uri/fetcher.hpp>
26 
27 namespace mesos {
28 namespace uri {
29 
31 {
32 public:
33  class Flags : public virtual flags::FlagsBase
34  {
35  public:
36  Flags();
37 
39  };
40 
41  static const char NAME[];
42 
44 
45  ~CurlFetcherPlugin() override {}
46 
47  std::set<std::string> schemes() const override;
48 
49  std::string name() const override;
50 
52  const URI& uri,
53  const std::string& directory,
54  const Option<std::string>& data = None(),
55  const Option<std::string>& outputFileName = None()) const override;
56 
57 private:
58  explicit CurlFetcherPlugin(const Flags& _flags) : flags(_flags) {}
59 
60  const Flags flags;
61 };
62 
63 } // namespace uri {
64 } // namespace mesos {
65 
66 #endif // __URI_FETCHERS_CURL_HPP__
Definition: check.hpp:33
Definition: curl.hpp:30
std::set< std::string > schemes() const override
Returns the URI schemes that this plugin handles.
Definition: flags.hpp:44
Definition: agent.hpp:25
static const char NAME[]
Definition: curl.hpp:41
static Try< process::Owned< Fetcher::Plugin > > create(const Flags &flags)
Option< Duration > curl_stall_timeout
Definition: curl.hpp:38
~CurlFetcherPlugin() override
Definition: curl.hpp:45
process::Future< Nothing > fetch(const URI &uri, const std::string &directory, const Option< std::string > &data=None(), const Option< std::string > &outputFileName=None()) const override
Fetches a URI to the given directory.
Definition: none.hpp:27
std::string name() const override
Returns the name that this plugin registered with.
Definition: uri.hpp:21
Definition: parse.hpp:33
Represents a fetcher plugin that handles one or more URI schemes.
Definition: fetcher.hpp:52