remove ceph code
[stor4nfv.git] / src / ceph / src / rgw / rgw_torrent.h
diff --git a/src/ceph/src/rgw/rgw_torrent.h b/src/ceph/src/rgw/rgw_torrent.h
deleted file mode 100644 (file)
index fd6a0d6..0000000
+++ /dev/null
@@ -1,139 +0,0 @@
-#ifndef CEPH_RGW_TORRENT_H
-#define CEPH_RGW_TORRENT_H
-
-#include <string>
-#include <list>
-#include <map>
-#include <set>
-
-#include "common/ceph_time.h"
-
-#include "rgw_rados.h"
-#include "rgw_common.h"
-
-using ceph::crypto::SHA1;
-
-struct req_state;
-
-#define RGW_OBJ_TORRENT    "rgw.torrent"
-
-#define ANNOUNCE           "announce"
-#define ANNOUNCE_LIST      "announce-list"
-#define COMMENT            "comment"
-#define CREATED_BY         "created by"
-#define CREATION_DATE      "creation date"
-#define ENCODING           "encoding"
-#define LENGTH             "length"
-#define NAME               "name"
-#define PIECE_LENGTH       "piece length"
-#define PIECES             "pieces"
-#define INFO_PIECES        "info"
-#define GET_TORRENT        "torrent"
-
-class TorrentBencode
-{
-public:
-  TorrentBencode() {}
-  ~TorrentBencode() {}
-
-  //control characters
-  void bencode_dict(bufferlist& bl) { bl.append('d'); }
-  void bencode_list(bufferlist& bl) { bl.append('l'); }
-  void bencode_end(bufferlist& bl) { bl.append('e'); }
-
-  //single values
-  void bencode(int value, bufferlist& bl) 
-  {
-    bl.append('i');
-    char info[100] = { 0 };
-    sprintf(info, "%d", value);
-    bl.append(info, strlen(info));
-    bencode_end(bl);
-  }
-
-  //single values
-  void bencode(const std::string& str, bufferlist& bl) 
-  {
-    bencode_key(str, bl);
-  }
-
-  //dictionary elements
-  void bencode(const std::string& key, int value, bufferlist& bl) 
-  {
-    bencode_key(key, bl);
-    bencode(value, bl);
-  }
-
-  //dictionary elements
-  void bencode(const std::string& key, const std::string& value, bufferlist& bl) 
-  {
-    bencode_key(key, bl);
-    bencode(value, bl);
-  }
-
-  //key len
-  void bencode_key(const std::string& key, bufferlist& bl) 
-  {
-    int len = key.length();
-    char info[100] = { 0 }; 
-    sprintf(info, "%d:", len);
-    bl.append(info, strlen(info));
-    bl.append(key.c_str(), len); 
-  }
-};
-
-/* torrent file struct */
-class seed
-{
-private:
-  struct
-  {
-    int piece_length;    // each piece length
-    bufferlist sha1_bl;  // save sha1
-    string name;    // file name
-    off_t len;    // file total bytes
-  }info;
-
-  string  announce;    // tracker
-  string origin; // origin
-  time_t create_date{0};    // time of the file created
-  string comment;  // comment
-  string create_by;    // app name and version
-  string encoding;    // if encode use gbk rather than gtf-8 use this field
-  uint64_t sha_len;  // sha1 length
-  bool is_torrent;  // flag
-  bufferlist bl;  // bufflist ready to send
-
-  struct req_state *s{nullptr};
-  RGWRados *store{nullptr};
-  SHA1 h;
-
-  TorrentBencode dencode;
-public:
-  seed();
-  ~seed();
-
-  int get_params();
-  void init(struct req_state *p_req, RGWRados *p_store);
-  int get_torrent_file(RGWRados::Object::Read &read_op,
-                       uint64_t &total_len,
-                       ceph::bufferlist &bl_data,
-                       rgw_obj &obj);
-  
-  off_t get_data_len();
-  bool get_flag();
-
-  void set_create_date(ceph::real_time& value);
-  void set_info_name(const string& value);
-  void update(bufferlist &bl);
-  int complete();
-
-private:
-  void do_encode ();
-  void set_announce();
-  void set_exist(bool exist);
-  void set_info_pieces(char *buff);
-  void sha1(SHA1 *h, bufferlist &bl, off_t bl_len);
-  int save_torrent_file();
-};
-#endif /* CEPH_RGW_TORRENT_H */