summaryrefslogtreecommitdiffstats
path: root/libktorrent/torrent/announcelist.h
blob: 38f9e7221b1141bb0637e0198a750ca0acb42732 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/***************************************************************************
 *   Copyright (C) 2005 by Joris Guisson                                   *
 *   joris.guisson@gmail.com                                               *
 *                                                                         *
 *   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.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.             *
 ***************************************************************************/
#ifndef BTANNOUNCELIST_H
#define BTANNOUNCELIST_H

#if 0
#include <kurl.h>
#include <qstring.h>
#include <interfaces/trackerslist.h>

namespace bt
{
	class BNode;

	/**
	 * @author Joris Guisson
	 * @brief Keep track of a list of trackers
	 * 
	 * This class keeps track of a list of tracker URL. 
	*/
	class AnnounceList : public kt::TrackersList
	{
		KURL::List trackers;
		KURL::List custom_trackers;
		
	public:
		AnnounceList();
		virtual ~AnnounceList();

		/**
		 * Load the list from a bencoded list of lists.
		 * @param node The BNode
		 */
		void load(BNode* node);
		
		/**
		 * Get a new tracker url.
		 * @param last_was_succesfull Wether or not the last url was succesfull
		 * @return An URL
		 */
		KURL getTrackerURL(bool last_was_succesfull) const;
		
		
		///Gets a list of trackers (URLs)
		const KURL::List getTrackerURLs();
		
		///Adds new tracker URL to the list
		void addTracker(KURL url, bool custom = true);
		
		/**
		 * Removes a tracker from the list
		 * @param url Tracker URL to remove from custom trackers list.
		 * @returns TRUE if URL is in custom list and it is removed or FALSE if it could not be removed or it's a default tracker
		 */
		bool removeTracker(KURL url);
		
		///Changes current tracker
		void setTracker(KURL url);
		
		///Restores the default torrent tracker
		void restoreDefault();

		/// Get the number of tracker URLs
		unsigned int getNumTrackerURLs() const {return trackers.count();}

		void debugPrintURLList();
		
		///Saves custom trackers in a file
		void saveTrackers();
		
		///Loads custom trackers from a file
		void loadTrackers();

		void setDatadir(const QString& theValue);
		
		/**
		 * Merge an other announce list to this one.
		 * @param al The AnnounceList
		 */
		void merge(const AnnounceList* al);
		
	private:
		QString m_datadir;
		
	};

}
#endif

#endif