torrent文件是使用bencoded编码的文件,存储了bt下载的文件信息以及trackers服务器的信息。
如果要对torrent文件进行解析,就首先要了解torrent文件的大体结构。
举一个torrent文件的例子
|Root(dict)
|--|announce(str)
|--|announce-list(list)
|--|--|0(list)
|--|--|--|0(str)
|--|--|--|1(str)
|--|created by(str)
|--|creation date(int)
|--|info(dict)
|--|--|length(int)
|--|--|name(str)
|--|--|name.utf-8(str)
|--|--|piece length(int)
|--|--|pieces(str)
然后知道bencoded编码的格式:
d--e 表示一个dict
l--e 表示一个list
数字:-- 表示一个string
i--e 表示一个int
如果要进行读取和解析,首先要做的就是写四个方法:
ReadDict
ReadString
ReadList
ReadInt
ReadDict方法内进行while循环
while(peekchar() != 'e')
{
key = ReadString
value = ReadValue
Root.add(key, value)
}
至于ReadValue,实则是这样子的:
TVal ReadValue()
{
TVal retVal = null;
switch(peekchar())
{
case 'd' : retVal.Type = "Dict", retVal.Value = ReadDict(), break;
case 'l' : retVal.Type = "List", retVal.Value = ReadList(), break;
case 'i' : retVal.Type = "Int", retVal.Value = ReadInt(), break;
defaule: retVal.Type = "Str", retVal.Value = ReadString(), break;
}
return retVal;
}
总之,大体上就是这样的。
如果要对torrent文件进行解析,就首先要了解torrent文件的大体结构。
举一个torrent文件的例子
|Root(dict)
|--|announce(str)
|--|announce-list(list)
|--|--|0(list)
|--|--|--|0(str)
|--|--|--|1(str)
|--|created by(str)
|--|creation date(int)
|--|info(dict)
|--|--|length(int)
|--|--|name(str)
|--|--|name.utf-8(str)
|--|--|piece length(int)
|--|--|pieces(str)
然后知道bencoded编码的格式:
d--e 表示一个dict
l--e 表示一个list
数字:-- 表示一个string
i--e 表示一个int
如果要进行读取和解析,首先要做的就是写四个方法:
ReadDict
ReadString
ReadList
ReadInt
ReadDict方法内进行while循环
while(peekchar() != 'e')
{
key = ReadString
value = ReadValue
Root.add(key, value)
}
至于ReadValue,实则是这样子的:
TVal ReadValue()
{
TVal retVal = null;
switch(peekchar())
{
case 'd' : retVal.Type = "Dict", retVal.Value = ReadDict(), break;
case 'l' : retVal.Type = "List", retVal.Value = ReadList(), break;
case 'i' : retVal.Type = "Int", retVal.Value = ReadInt(), break;
defaule: retVal.Type = "Str", retVal.Value = ReadString(), break;
}
return retVal;
}
总之,大体上就是这样的。