OpenRTMFP/Cumulus Primer(9)AMF 处理方式解析——BinaryReader/Writer
- Author: 柳大·Poechant(钟超)
- Email: zhongchao.ustc#gmail.com (#->@)
- Blog: Blog.CSDN.net/Poechant
- Date: April 24th, 2012
本文介绍 CumulusServer 中如何对 AMF 数据格式进行序列化与反序列化。
1 AMF3 数据格式基础
首先介绍一下变长整数(Variable Length Integer),比如 UInt32 如下。
上图摘自 Adobe AMF3 官方文档,这是一种压缩方式的整数存储,且每一字节都对后面的数据具有预知作用。那么字符串如何处理呢?下面是字符串的处理方式,AMF0 和 AMF3 都才用 UTF-8 编码方式,并做如下压缩处理:
上图摘自 Adobe AMF3 官方文档。
2 序列化
序列化包括 8 位、16 位、32 位,以及 UTF-8 和 UTF-16(I guess)编码的 String,还有原生数据(Raw Data)、变长无符号整数(Variable Length Unsigned Integer)以及 IP 地址。所谓序列化就是按照指定格式编写各种对象、基础数据类型值。
class BinaryWriter : public Poco::BinaryWriter {
public:
BinaryWriter(std::ostream& ostr);
virtual ~BinaryWriter();
void writeRaw(const Poco::UInt8* value,Poco::UInt32 size);
void writeRaw(const char* value,Poco::UInt32 size);
void writeRaw(const std::string& value);
void write8(Poco::UInt8 value);
void write16(Poco::UInt16 value);
void write32(Poco::UInt32 value);
void writeString8(const std::string& value);
void writeString8(const char* value,Poco::UInt8 size);
void writeString16(const std::string& value);
void writeString16(const char* value,Poco::UInt16 size);
void write7BitValue(Poco::UInt32 value);
void write7BitLongValue(Poco::UInt64 value);
void writeAddress(const Address& address,bool publicFlag);
void writeAddress(const Poco::Net::SocketAddress& address,bool publicFlag);
static BinaryWriter BinaryWriterNull;
};
请注意其中名为 BinaryWriterNull 的成员。构造函数定义为:
BinaryWriter::BinaryWriter(ostream& ostr):
Poco::BinaryWriter(ostr,BinaryWriter::NETWORK_BYTE_ORDER) {
}
BinaryWriter::~BinaryWriter() {
flush();
}
其中 writeRaw 是简单地封装 Poco::BinaryWriter::writeRaw(),如下:
inline void BinaryWriter::writeRaw(const Poco::UInt8* value,Poco::UInt32 size) {
Poco::BinaryWriter::writeRaw((char*)value,size);
}
inline void BinaryWriter::writeRaw(const char* value,Poco::UInt32 size) {
Poco::BinaryWriter::writeRaw(value,size);
}
inline void BinaryWriter::writeRaw(const std::string& value) {
Poco::BinaryWriter::writeRaw(value);
}
写入整数实现如下,用的是从 Poco::BinaryReader 继承来的重载运算符操作:
inline void BinaryWriter::write8(Poco::UInt8 value) {
(*this) << value;
}
inline void BinaryWriter::write16(Poco::UInt16 value) {
(*this) << value;
}
inline void BinaryWriter::write32(Poco::UInt32 value) {
(*this) << value;
}
写入字符串:
void BinaryWriter::writeString8(const char* value,UInt8 size) {
write8(size);
writeRaw(value,size);
}
void BinaryWriter::writeString8(const string& value) {
write8(value.size());
writeRaw(value);
}
void BinaryWriter::writeString16(const char* value,UInt16 size) {
write16(size);
writeRaw(value,size);
}
void BinaryWriter::writeString16(const string& value) {
write16(value.size());
writeRaw(value);
}
写入变长整数,这段代码含义也一目了然,就是读取变长无符号 32 位整数、64 位整数。
void BinaryWriter::write7BitValue(UInt32 value) {
UInt8 shift = (Util::Get7BitValueSize(value)-1)*7;
bool max = false;
if(shift>=21) { // 4 bytes maximum
shift = 22;
max = true;
}
while(shift>=7) {
write8(0x80 | ((value>>shift)&0x7F));
shift -= 7;
}
write8(max ? value&0xFF : value&0x7F);
}
void BinaryWriter::write7BitLongValue(UInt64 value) {
UInt8 shift = (Util::Get7BitValueSize(value)-1)*7;
bool max = shift>=63; // Can give 10 bytes!
if(max)
++shift;
while(shift>=7) {
write8(0x80 | ((value>>shift)&0x7F));
shift -= 7;
}
write8(max ? value&0xFF : value&0x7F);
}
写入 IP 地址的两个函数暂略。
3 反序列化
反序列化就是从指定格式的数据中读出各类型的数据值。
class BinaryReader : public Poco::BinaryReader {
public:
BinaryReader(std::istream& istr);
virtual ~BinaryReader();
Poco::UInt32 read7BitValue();
Poco::UInt64 read7BitLongValue();
Poco::UInt32 read7BitEncoded();
void readString(std::string& value);
void readRaw(Poco::UInt8* value,Poco::UInt32 size);
void readRaw(char* value,Poco::UInt32 size);
void readRaw(Poco::UInt32 size,std::string& value);
void readString8(std::string& value);
void readString16(std::string& value);
Poco::UInt8 read8();
Poco::UInt16 read16();
Poco::UInt32 read32();
bool readAddress(Address& address);
static BinaryReader BinaryReaderNull;
};
构造与析构函数都很简单:
BinaryReader::BinaryReader(istream& istr) : Poco::BinaryReader(istr,BinaryReader::NETWORK_BYTE_ORDER) {
}
BinaryReader::~BinaryReader() {
}
读取原生数据(Raw Data):
inline void BinaryReader::readRaw(Poco::UInt8* value,Poco::UInt32 size) {
Poco::BinaryReader::readRaw((char*)value,size);
}
inline void BinaryReader::readRaw(char* value,Poco::UInt32 size) {
Poco::BinaryReader::readRaw(value,size);
}
inline void BinaryReader::readRaw(Poco::UInt32 size,std::string& value) {
Poco::BinaryReader::readRaw(size,value);
}
写整数,用的是 Poco::BinaryWriter 的重载运算符:
inline void BinaryWriter::write8(Poco::UInt8 value) {
(*this) << value;
}
inline void BinaryWriter::write16(Poco::UInt16 value) {
(*this) << value;
}
inline void BinaryWriter::write32(Poco::UInt32 value) {
(*this) << value;
}
读写整数依旧使用从 Poco::BinaryReader 继承来的运算符操作:
UInt8 BinaryReader::read8() {
UInt8 c;
(*this) >> c;
return c;
}
UInt16 BinaryReader::read16() {
UInt16 c;
(*this) >> c;
return c;
}
UInt32 BinaryReader::read32() {
UInt32 c;
(*this) >> c;
return c;
}
写字符串:
void BinaryWriter::writeString8(const char* value,UInt8 size) {
write8(size);
writeRaw(value,size);
}
void BinaryWriter::writeString8(const string& value) {
write8(value.size());
writeRaw(value);
}
void BinaryWriter::writeString16(const char* value,UInt16 size) {
write16(size);
writeRaw(value,size);
}
void BinaryWriter::writeString16(const string& value) {
write16(value.size());
writeRaw(value);
}
读取变长整数,分别针对 UInt32 和 UInt64,要理解 AMF3 的变长整数才能理解这个:
UInt32 BinaryReader::read7BitValue() {
UInt8 n = 0;
UInt8 b = read8();
UInt32 result = 0;
while ((b&0x80) && n < 3) {
result <<= 7;
result |= (b&0x7F);
b = read8();
++n;
}
result <<= ((n<3) ? 7 : 8); // Use all 8 bits from the 4th byte
result |= b;
return result;
}
UInt64 BinaryReader::read7BitLongValue() {
UInt8 n = 0;
UInt8 b = read8();
UInt64 result = 0;
while ((b&0x80) && n < 8) {
result <<= 7;
result |= (b&0x7F);
b = read8();
++n;
}
result <<= ((n<8) ? 7 : 8); // Use all 8 bits from the 4th byte
result |= b;
return result;
}
-
转载请注明来自柳大的CSDN博客:Blog.CSDN.net/Poechant
-
分享到:
相关推荐
《OpenRTMFP Cumulus Primer 入门与CumulusServer部署》 OpenRTMFP (Real Time Media Flow Protocol) 是一种技术,它为Flash实时应用提供了高并发扩展能力。OpenRTMFP/Cumulus是基于GNU General Public License的...
高性能计算云 目标 ...$ vi /opt/hpccloud/cumulus/cumulus/conf/config.json +- > Fix host to be localhost +- > baseUrl: " http://localhost:8080/api/v1 " , $ sudo service celeryd restar
Cumulus Linux 4.4.0 是一个专为网络设备设计的开源操作系统,它将Linux的强大功能与网络硬件的灵活性相结合。这个版本是为AMD64架构设计的,并且已经打包成了一个适用于QEMU(Quick Emulator)的虚拟机镜像文件,...
这本食谱在 vanilla Debian 上创建了一个交换机覆盖,并且还部署在 Cumulus 路由器/交换机上。 要求 测试 访问 Debian Wheezy 盒子 生产 访问 Cumulus HCL [1] 开关(Accton AS6701_32X,这就是这本食谱最初的目的)...
4. **中文设置**:由于`wp-cumulus`支持中文,只需确保你的博客已设置为中文语言,标签云就会自动处理中文字符,无需额外配置。 ### 应用场景与优势 `wp-cumulus`适用于各种类型的WordPress博客,尤其是那些希望...
这种技术利用了Cumulus库,该库是OpenRTMFP(Real-Time Media Flow Protocol)的实现,允许设备之间直接建立连接,从而减少了服务器的压力,提高了大规模音视频流传输的效率。 OpenRTMFP是由Adobe开发的协议,用于...
总之, Cumulus作为一个集源码管理和数据可视化于一体的工具,其使用涉及前端技术、后端逻辑、数据处理、安全控制等多个IT领域,对于开发者和团队管理员来说,深入理解和熟练运用将极大地提升工作效率和协作体验。
5. **优化性能**:"wp-cumulus" 使用高效的脚本处理大量标签,不会对网站加载速度造成过大影响。 在使用过程中,确保你的网站已经安装了Flash插件,因为"wp-cumulus" 在运行时需要依赖Flash支持。不过,随着HTML5...
【 Cumulus:基于网络编码的分布式文件系统 】 在分布式计算领域,分布式文件系统是支撑大规模数据处理和存储的关键技术之一。Cumulus 是一个创新性的分布式文件系统,它利用网络编码理论来优化系统的容错能力和...
《WordPress中的wp-cumulus 3D云标签详解》 在WordPress这个强大的开源博客平台中,wp-cumulus是一款极具特色的3D云标签插件。它以其独特的视觉效果和交互体验,为用户提供了全新的标签展示方式,使得博客的分类和...
这里给出了cumulus/OpenRTMFP的git官网提到的视频会话样例的AS3代码,包括服务器端和客户端两部分,我已经在<使用Cumulus和Flash Player搭建视频会议示例>http://blog.csdn.net/tao_627/article/details/18041473中给...
积云Cumulus 是的免费、开源替代品,它利用您自己的 S3 进行存储。下载您可以在下载最新版本更改默认截图目录这是可选的。 默认情况下,OS X 会将屏幕截图放在您的桌面上。 但是,如果您希望他们去其他地方,您可以...
openrtmfp又名Cumulus Server是一个完全开源和跨平台的可扩展的RTMFP服务器脚本。Cumulus Server在GPL 框架下遵循速度、优势、跨平台、轻量和高质量代码。Cumulus Server的每一个版本都是通过严格测试和审核的。可...
积云框架 :open_book: 文献资料 最新文档。 文档。 更多信息 有关此项目的更多信息,以及有关NASA的地球观测系统数据和信息系统(EOSDIS)及其云工作的更多信息,请联系或访问 。...这是用于Cumulus开
这个库可能涉及云计算、数据处理或与之相关的领域,因为“cumulus”在自然界中通常指的是云朵,而在计算术语中,它可能暗示着云服务或分布式计算。 首先,我们需要了解如何安装和使用这个库。对于一个tar.gz文件,...
下面将对部分列出的软件进行详细解析。 ### 1. 3i Infotech (Kastle) 3i Infotech 提供了一系列银行解决方案,其中包括 Kastle,它是一个综合性的银行后台管理系统。该系统能够支持各种银行业务流程,包括但不限于...
大名鼎鼎的WP-CUMULUS 3D标签云,已经改成支持中文标签,可在.htm自行添加标签链接,可以单机玩耍测试,不需要安装WordPress然后装插件~~ 主要是有些童鞋只是想要3D标签云动画,所以就提取重要文件出来稍作修改下.
【标题】"wp-cumulus.rar" 是一个与WordPress相关的压缩包,其中包含"TagCloud._TagCloud.as",这表明它与创建和展示WordPress标签云的插件有关。"flex cumul_wp cumulus_wp cu"暗示这个插件可能是用Adobe Flex技术...
Mellanox Cumulus学习,基本使用,培训资源
Cumulus集成测试项目[已弃用] 注意:此存储库不再维护。 该存储库的内容已移至。 什么是积云? Cumulus是NASA未来地球科学数据流的基于云的数据提取,存档,分发和管理原型。 阅读 安装 nvm use npm install 在...