aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdnet/td/net/HttpFile.h
blob: 7ba795eae24fdb70d7451d1c928ed092bc88d301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once

#include "td/utils/common.h"
#include "td/utils/StringBuilder.h"

namespace td {

class HttpFile {
 public:
  string field_name;
  string name;
  string content_type;
  int64 size;
  string temp_file_name;

  HttpFile(string field_name, string name, string content_type, int64 size, string temp_file_name)
      : field_name(std::move(field_name))
      , name(std::move(name))
      , content_type(std::move(content_type))
      , size(size)
      , temp_file_name(std::move(temp_file_name)) {
  }

  HttpFile(const HttpFile &) = delete;
  HttpFile &operator=(const HttpFile &) = delete;

  HttpFile(HttpFile &&other) noexcept
      : field_name(std::move(other.field_name))
      , name(std::move(other.name))
      , content_type(std::move(other.content_type))
      , size(other.size)
      , temp_file_name(std::move(other.temp_file_name)) {
    other.temp_file_name.clear();
  }

  HttpFile &operator=(HttpFile &&) = delete;

  ~HttpFile();
};

StringBuilder &operator<<(StringBuilder &sb, const HttpFile &file);

}  // namespace td