美文网首页
iOS的Bencode编解码应用(pod 'GEBEnc

iOS的Bencode编解码应用(pod 'GEBEnc

作者: 曹波波 | 来源:发表于2018-06-07 16:58 被阅读47次

Bencode是BitTorrent用在传输数据结构的编码方式。

Bencode(发音为 Bee-Encode)这种编码方式支持四种数据型态:
• 字元串
• 整数
• 串列
• 字典表
Bencode 最常被用在.torrent文档中,文件里的元数据都是 Bencode 过的字典表。其也被用在tracker返回响应时使用。

虽然比用纯二进制编码效率低,但由于结构简单而且不受字节存储顺序影响(所有数字以十进制编码)——这对于跨平台性非常重要。而且具有较好的灵活性,即使存在故障的字典键,只要将其忽略并更换新的就能兼容补充。

使用GEBEncoding完成Bencode

GEBEncoding

GEBEncoding:An Objective-C BEncoding Library

屏幕快照 2018-06-07 下午4.46.50.png

代码结构:

屏幕快照 2018-06-07 下午4.56.45.png

GEBEncoding使用方法:

引入pod库

这个pod库是我根据上面的代码,建立的pod库。方便iOS项目集成。

    pod 'GEBEncoding'

编码encode

//  +(NSData *)encodeDataFromObject:(id)object
//
//  This method to returns an NSData object that contains the bencoded
//  representation of the object that you send. You can send complex structures
//  such as an NSDictionary that contains NSArrays, NSNumbers and NSStrings, and
//  the encoder will correctly serialise the data in the expected way.
//
//  Supports NSData, NSString, NSNumber, NSArray and NSDictionary objects.
//
//  NSStrings are encoded as NSData objects as there is no way to differentiate
//  between the two when decoding.
//
//  NSNumbers are encoded and decoded with their longLongValue.
//
//  NSDictionary keys must be NSStrings.

+(NSData *)encodedDataFromObject:(id)object;

反编码

//  +(id)objectFromEncodedData:(NSData *)sourceData;
//
//  This method returns an NSObject of the type that is serialised in the bencoded
//  sourceData.
//
//  Bad data should not cause any problems, however if it is unable to deserialise
//  anything from the source, it may return a nil, which you need to check for.

+(id)objectFromEncodedData:(NSData *)sourceData;

+(id)objectFromEncodedData:(NSData *)sourceData withTypeAdvisor:(GEBEncodedTypeAdvisor)typeAdvisor;

使用效果:

    #import <GEBEncoding.h>
  
    NSDictionary * dict = @{@"inputs.sourceType":@"faceID",@"inputs.data":@"qwer"};
    NSData * data = [GEBEncoding encodedDataFromObject:dict];
    
    $ po data
    "d11:inputs.data4:qwer17:inputs.sourceType6:faceIDe"

相关文章

  • iOS的Bencode编解码应用(pod 'GEBEnc

    Bencode是BitTorrent用在传输数据结构的编码方式。 Bencode(发音为 Bee-Encode)这...

  • Flutter 与原生交互3

    原生应用中混编 Flutter分别创建iOS、android空壳项目,iOS集成pod Flutter 混编方案介...

  • H264 编解码

    H264编解码(一) —— 基本概览H264编解码(二) —— ios中的H264硬编解码的实现H264编解码(三...

  • bt协议

    BT协议 bt种子文件 编码 bencode bencode 有 4 种数据类型: string, integer...

  • iOS9崩溃翻车现场

    iOS14已经面世了,但是部分应用仍然需要适配iOS9.0、iOS10.0等系统.这时候对pod的版本限制就相当重...

  • Bencode编码

    DHT网络中,用的都是bencode这种编码格式。bencode有4种数据类型:string,integer,li...

  • 功能-使用Base64编解码

    iOS之后,NSData新增一个类别用于编解码NSData。 编解码NSString: 以上的方法是通用方法,不过...

  • 完美解决Mac平台下Python3环境import bencod

    在Mac平台下(其它平台没测),即使你使用pip3 install bencode来安装bencode模块,安装后...

  • iOS pod ''XXX" file

    在网上下载了开源demo准备小改一下进行二次开发引用,改的过程中pod install后,一直报file not ...

  • iOS escape编解码方法

    escape是JavaScript escape() 函数,可以对字符串进行编解码,iOS中并没有这中编解码方法,...

网友评论

      本文标题:iOS的Bencode编解码应用(pod 'GEBEnc

      本文链接:https://www.haomeiwen.com/subject/cengsftx.html