⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 file_list.h

📁 linux federo 6下的bt软件的类库文件
💻 H
字号:
// libTorrent - BitTorrent library// Copyright (C) 2005-2006, Jari Sundell//// This program is free software; you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation; either version 2 of the License, or// (at your option) any later version.// // This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU General Public License for more details.// // You should have received a copy of the GNU General Public License// along with this program; if not, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA//// In addition, as a special exception, the copyright holders give// permission to link the code of portions of this program with the// OpenSSL library under certain conditions as described in each// individual source file, and distribute linked combinations// including the two.//// You must obey the GNU General Public License in all respects for// all of the code used other than OpenSSL.  If you modify file(s)// with this exception, you may extend this exception to your version// of the file(s), but you are not obligated to do so.  If you do not// wish to do so, delete this exception statement from your version.// If you delete this exception statement from all source files in the// program, then also delete it here.//// Contact:  Jari Sundell <jaris@ifi.uio.no>////           Skomakerveien 33//           3185 Skoppum, NORWAY#ifndef LIBTORRENT_FILE_LIST_H#define LIBTORRENT_FILE_LIST_H#include <vector>#include <torrent/common.h>#include <torrent/bitfield.h>#include <torrent/path.h>namespace torrent {class Content;class Download;class DownloadConstructor;class DownloadMain;class DownloadWrapper;class Handshake;class LIBTORRENT_EXPORT FileList : private std::vector<File*> {public:  friend class Content;  friend class Download;  friend class DownloadConstructor;  friend class DownloadMain;  friend class DownloadWrapper;  friend class Handshake;  typedef std::vector<File*>            base_type;  typedef std::vector<std::string>      path_list;  typedef std::pair<uint64_t, Path>     split_type;  // The below are using-directives that make visible functions and  // typedefs in the parent std::vector, only those listed below are  // accessible. If you don't understand how this works, use google,  // don't ask me.  using base_type::value_type;  using base_type::iterator;  using base_type::const_iterator;  using base_type::reverse_iterator;  using base_type::const_reverse_iterator;  typedef std::pair<iterator, iterator> iterator_range;  using base_type::begin;  using base_type::end;  using base_type::rbegin;  using base_type::rend;  using base_type::back;  using base_type::empty;  using base_type::reserve;  using base_type::at;  using base_type::operator[];  FileList() LIBTORRENT_NO_EXPORT;  ~FileList() LIBTORRENT_NO_EXPORT;  bool                is_open() const                                 { return m_isOpen; }  bool                is_done() const                                 { return completed_chunks() == size_chunks(); }  bool                is_valid_piece(const Piece& piece) const;  // Check if the torrent is loaded as a multi-file torrent. This may  // return true even for a torrent with just one file.  bool                is_multi_file() const;  size_t              size_files() const                              { return base_type::size(); }  uint64_t            size_bytes() const                              { return m_torrentSize; }  uint32_t            size_chunks() const                             { return m_bitfield.size_bits(); }  uint32_t            completed_chunks() const                        { return m_bitfield.size_set(); }  uint64_t            completed_bytes() const;  uint64_t            left_bytes() const;  uint32_t            chunk_size() const                              { return m_chunkSize; }  uint32_t            chunk_index_size(uint32_t index) const;  uint64_t            chunk_index_position(uint32_t index) const      { return index * chunk_size(); }  const Bitfield*     bitfield() const                                { return &m_bitfield; }  // You may only call set_root_dir after all nodes have been added.  const std::string&  root_dir() const                                { return m_rootDir; }  void                set_root_dir(const std::string& path);  uint64_t            max_file_size() const                           { return m_maxFileSize; }  void                set_max_file_size(uint64_t size);  // If the files span multiple disks, the one with the least amount  // of free diskspace will be returned.  uint64_t            free_diskspace() const;  const path_list*    indirect_links() const                          { return &m_indirectLinks; }  // The sum of the sizes in the range [first,last> must be equal to  // the size of 'position'. Do not use the old pointer in 'position'  // after this call.  iterator_range      split(iterator position, split_type* first, split_type* last);  // Use an empty range to insert a zero length file.  iterator            merge(iterator first, iterator last, const Path& path);  iterator            merge(iterator_range range, const Path& path)   { return merge(range.first, range.second, path); }  void                update_paths(iterator first, iterator last);protected:  void                initialize(uint64_t torrentSize, uint32_t chunkSize) LIBTORRENT_NO_EXPORT;  void                open() LIBTORRENT_NO_EXPORT;  void                close() LIBTORRENT_NO_EXPORT;  bool                resize_all() LIBTORRENT_NO_EXPORT;  Bitfield*           mutable_bitfield()                               { return &m_bitfield; }  // Before calling this function, make sure you clear errno. If  // creating the chunk failed, NULL is returned and errno is set.  Chunk*              create_chunk(uint64_t offset, uint32_t length, int prot) LIBTORRENT_NO_EXPORT;  Chunk*              create_chunk_index(uint32_t index, int prot) LIBTORRENT_NO_EXPORT;  void                mark_completed(uint32_t index) LIBTORRENT_NO_EXPORT;  iterator            inc_completed(iterator firstItr, uint32_t index) LIBTORRENT_NO_EXPORT;  void                update_completed() LIBTORRENT_NO_EXPORT;private:  bool                open_file(File* node, const Path& lastPath) LIBTORRENT_NO_EXPORT;  void                make_directory(Path::const_iterator pathBegin, Path::const_iterator pathEnd, Path::const_iterator startItr) LIBTORRENT_NO_EXPORT;  MemoryChunk         create_chunk_part(FileList::iterator itr, uint64_t offset, uint32_t length, int prot) LIBTORRENT_NO_EXPORT;  void                set_match_depth(File* left, File* right);  bool                m_isOpen;  uint64_t            m_torrentSize;  uint32_t            m_chunkSize;  uint64_t            m_maxFileSize;  std::string         m_rootDir;  Bitfield            m_bitfield;  path_list           m_indirectLinks;};}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -