Merge pull request #480 from Gelmir/create_torrent_tiers

Support tracker tiers / groups in torrent creator
This commit is contained in:
Christophe Dumez 2013-03-10 10:56:28 -07:00
commit f01c301839
2 changed files with 14 additions and 1 deletions

View file

@ -123,6 +123,9 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string comment="A tracker tier is a group of trackers, consisting of a main tracker and its mirrors.">You can separate tracker tiers / groups with an empty line.</string>
</property>
<property name="acceptRichText">
<bool>false</bool>
</property>

View file

@ -113,8 +113,18 @@ void TorrentCreatorThread::run() {
foreach (const QString &seed, url_seeds) {
t.add_url_seed(seed.trimmed().toStdString());
}
int tier = 0;
bool newline = false;
foreach (const QString &tracker, trackers) {
t.add_tracker(tracker.trimmed().toStdString());
if (tracker.isEmpty()) {
if (newline)
continue;
++tier;
newline = true;
continue;
}
t.add_tracker(tracker.trimmed().toStdString(), tier);
newline = false;
}
if (abort) return;
// calculate the hash for all pieces