TubeLab-App-Android/frostwire-jlibtorrent/src/main/java/com/frostwire/jlibtorrent/swig/create_torrent.java

145 lines
5.1 KiB
Java

/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 4.0.1
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package com.frostwire.jlibtorrent.swig;
public class create_torrent {
private transient long swigCPtr;
protected transient boolean swigCMemOwn;
protected create_torrent(long cPtr, boolean cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
protected static long getCPtr(create_torrent obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
@SuppressWarnings("deprecation")
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
libtorrent_jni.delete_create_torrent(swigCPtr);
}
swigCPtr = 0;
}
}
public create_torrent(file_storage fs, int piece_size, int pad_file_limit, create_flags_t flags, int alignment) {
this(libtorrent_jni.new_create_torrent__SWIG_0(file_storage.getCPtr(fs), fs, piece_size, pad_file_limit, create_flags_t.getCPtr(flags), flags, alignment), true);
}
public create_torrent(file_storage fs, int piece_size, int pad_file_limit, create_flags_t flags) {
this(libtorrent_jni.new_create_torrent__SWIG_1(file_storage.getCPtr(fs), fs, piece_size, pad_file_limit, create_flags_t.getCPtr(flags), flags), true);
}
public create_torrent(file_storage fs, int piece_size, int pad_file_limit) {
this(libtorrent_jni.new_create_torrent__SWIG_2(file_storage.getCPtr(fs), fs, piece_size, pad_file_limit), true);
}
public create_torrent(file_storage fs, int piece_size) {
this(libtorrent_jni.new_create_torrent__SWIG_3(file_storage.getCPtr(fs), fs, piece_size), true);
}
public create_torrent(file_storage fs) {
this(libtorrent_jni.new_create_torrent__SWIG_4(file_storage.getCPtr(fs), fs), true);
}
public create_torrent(torrent_info ti) {
this(libtorrent_jni.new_create_torrent__SWIG_5(torrent_info.getCPtr(ti), ti), true);
}
public entry generate() {
return new entry(libtorrent_jni.create_torrent_generate(swigCPtr, this), true);
}
public file_storage files() {
return new file_storage(libtorrent_jni.create_torrent_files(swigCPtr, this), false);
}
public void set_comment(String str) {
libtorrent_jni.create_torrent_set_comment(swigCPtr, this, str);
}
public void set_creator(String str) {
libtorrent_jni.create_torrent_set_creator(swigCPtr, this, str);
}
public void set_hash(int index, sha1_hash h) {
libtorrent_jni.create_torrent_set_hash(swigCPtr, this, index, sha1_hash.getCPtr(h), h);
}
public void set_file_hash(int index, sha1_hash h) {
libtorrent_jni.create_torrent_set_file_hash(swigCPtr, this, index, sha1_hash.getCPtr(h), h);
}
public void add_node(string_int_pair node) {
libtorrent_jni.create_torrent_add_node(swigCPtr, this, string_int_pair.getCPtr(node), node);
}
public void set_priv(boolean p) {
libtorrent_jni.create_torrent_set_priv(swigCPtr, this, p);
}
public boolean priv() {
return libtorrent_jni.create_torrent_priv(swigCPtr, this);
}
public int num_pieces() {
return libtorrent_jni.create_torrent_num_pieces(swigCPtr, this);
}
public int piece_length() {
return libtorrent_jni.create_torrent_piece_length(swigCPtr, this);
}
public int piece_size(int i) {
return libtorrent_jni.create_torrent_piece_size(swigCPtr, this, i);
}
public sha1_hash_vector merkle_tree() {
return new sha1_hash_vector(libtorrent_jni.create_torrent_merkle_tree(swigCPtr, this), false);
}
public void add_similar_torrent(sha1_hash ih) {
libtorrent_jni.create_torrent_add_similar_torrent(swigCPtr, this, sha1_hash.getCPtr(ih), ih);
}
public void add_url_seed(String url) {
libtorrent_jni.create_torrent_add_url_seed(swigCPtr, this, url);
}
public void add_http_seed(String url) {
libtorrent_jni.create_torrent_add_http_seed(swigCPtr, this, url);
}
public void add_tracker(String url, int tier) {
libtorrent_jni.create_torrent_add_tracker(swigCPtr, this, url, tier);
}
public void add_collection(String c) {
libtorrent_jni.create_torrent_add_collection(swigCPtr, this, c);
}
public void set_root_cert2(byte_vector pem) {
libtorrent_jni.create_torrent_set_root_cert2(swigCPtr, this, byte_vector.getCPtr(pem), pem);
}
public final static create_flags_t optimize_alignment = new create_flags_t(libtorrent_jni.create_torrent_optimize_alignment_get(), false);
public final static create_flags_t merkle = new create_flags_t(libtorrent_jni.create_torrent_merkle_get(), false);
public final static create_flags_t modification_time = new create_flags_t(libtorrent_jni.create_torrent_modification_time_get(), false);
public final static create_flags_t symlinks = new create_flags_t(libtorrent_jni.create_torrent_symlinks_get(), false);
public final static create_flags_t mutable_torrent_support = new create_flags_t(libtorrent_jni.create_torrent_mutable_torrent_support_get(), false);
}