| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 | /* <!-- copyright *//* * aria2 - a simple utility for downloading files faster * * Copyright (C) 2006 Tatsuhiro Tsujikawa * * 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 *//* copyright --> */#ifndef _D_SEGMENT_MAN_H_#define _D_SEGMENT_MAN_H_#include "common.h"#include "Logger.h"#include "Segment.h"#include "Option.h"#include "SegmentSplitter.h"using namespace std;#define SEGMENT_FILE_EXTENSION ".aria2"/** * This class holds the download progress of the one download entry. */class SegmentMan {private:  void read(FILE* file);  FILE* openSegFile(string segFilename, string mode) const;public:  /**   * The total number of bytes to download.   * If Transfer-Encoding is Chunked or Content-Length header is not provided,   * then this value is set to be 0.   */  long long int totalSize;  /**   * Represents whether this download is splittable.   * In Split download(or segmented download), http client establishes   * more than one connections to the server, and downloads sevral parts of   * a file at the same time. This boosts download speed.   * This value is true by default. If total number of bytes is not known or   * Chunked transfer encoding is used, then this value is set to be 0 by   * DownloadCommand class.   */  bool isSplittable;  /**   * Represents whether the download is start or not.   * The default value is false.   */  bool downloadStarted;  /**   * Holds segments.   */  Segments segments;  /**   * Respresents the file name of the downloaded file.   * If the URL does not contain file name part(http://www.rednoah.com/, for    * example), this value may be 0 length string.   * The default value is 0 length string.   */  string filename;  /**   * directory to store a file   */  string dir;  /**   * User defined file name for downloaded content   */  string ufilename;  const Logger* logger;  const Option* option;  SegmentSplitter* splitter;  SegmentMan();  ~SegmentMan();    /**   * Returns dir+"/"+filename.   * If filename is empty, then returns dir+"/"+"inex.html";   */  string getFilePath() const {    return (dir == "" ? "." : dir)+"/"+      (ufilename == "" ?        (filename == "" ? "index.html" : filename) : ufilename);  }  string getSegmentFilePath() const {    return getFilePath()+SEGMENT_FILE_EXTENSION;  }  /**   * Sets the cuid of the holded segments with specified cuid to 0.   */  void unregisterId(int cuid);  /**   * There is a segment available for DownloadCommand specified by cuid,   * fills segment and returns true.   * There is no segment available, then returns false and segment is   * undefined in this case.   *   * @param segment segment to attach for cuid.   * @param cuid cuid of DownloadCommand.   * @returns true: there is a segment available, false: there is no segment   * available.   */  bool getSegment(Segment& segment, int cuid);  /**   * Updates the ds value of the specified segment.   * Only a segment x is updated where x.sp == sgment.sp && x.ep ==   * segment.ep && x.ds == segment.ds &&x.cuid == segment.cuid   * is true.   *   * @param segment segment to update   */  void updateSegment(const Segment& segment);  /**   * Returns true only if the segment data file exists.   * The file name of the segment data is filename appended by ".aria2".   * If isSplittable is false, then returns simply false without any operation.   */  bool segmentFileExists() const;  /**   * Loads the segment data file.   * If isSplittable is false, then returns without any operation.   */  void load();  /**   * Saves the segment data file.   * If isSplittable is false, then returns without any operation.   */  void save() const;  /**   * Removes the segment data file.   * If isSplittable is false, then returns without any operation.   */  void remove() const;  /**   * Returs true when the download has finished.   * If downloadStarted is false or the number of the segments of this object   * holds is 0, then returns false.   */  bool finished() const;  /**   * if finished() is true, then call remove()   */  void removeIfFinished() const;  /**   * Returns the total number of bytes to be downloaded.   */  long long int getDownloadedSize() const;};#endif // _D_SEGMENT_MAN_H_
 |