- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用二进制序列化 (BinaryFormatter) 作为临时机制,将状态信息存储在文件中,用于相对复杂的(游戏)对象结构;文件出来 比我预期的大 ,并且我的数据结构包括递归引用 - 所以我想知道 BinaryFormatter 是否实际上存储了相同对象的多个副本,或者我的基本“对象和值的数量”应该有”算法是偏离基础的,或者过大的尺寸来自哪里。
搜索堆栈溢出,我能够找到 Microsoft 的二进制远程处理格式的规范:
http://msdn.microsoft.com/en-us/library/cc236844(PROT.10).aspx
我找不到任何现有的查看器,它使您能够“窥视”二进制格式化程序输出文件的内容 - 获取文件中不同对象类型的对象计数和总字节数等;
我觉得这一定是我的“google-fu”让我失望了(我只有一点点)-有人可以帮忙吗?这应该是以前做过的吧??
UPDATE :我找不到它,也没有得到答案,所以我把一些相对较快的东西放在一起(链接到下面的可下载项目);我可以确认 BinaryFormatter 不会存储同一对象的多个副本,但它确实将大量元数据打印到流中。如果您需要高效的存储,请构建您自己的自定义序列化方法。
最佳答案
因为它可能对某些人感兴趣,所以我决定写这篇关于 的文章 序列化 .NET 对象的二进制格式是什么样的,我们如何正确解释它?
我所有的研究都基于 .NET Remoting: Binary Format Data Structure 规范。
示例类:
为了有一个工作示例,我创建了一个名为 A
的简单类,它包含 2 个属性,一个字符串和一个整数值,它们分别称为 SomeString
和 SomeValue
。
类 A
如下所示:
[Serializable()]
public class A
{
public string SomeString
{
get;
set;
}
public int SomeValue
{
get;
set;
}
}
对于序列化,我当然使用了
BinaryFormatter
:
BinaryFormatter bf = new BinaryFormatter();
StreamWriter sw = new StreamWriter("test.txt");
bf.Serialize(sw.BaseStream, new A() { SomeString = "abc", SomeValue = 123 });
sw.Close();
可以看出,我传递了一个类
A
的新实例,其中包含
abc
和
123
作为值。
RecordTypeEnumeration
标识。第
2.1.2.1 RecordTypeNumeration
节指出:
This enumeration identifies the type of the record. Each record (except for MemberPrimitiveUnTyped) starts with a record type enumeration. The size of the enumeration is one BYTE.
2.1.2.1 RecordTypeEnumeration
中所述,
0
的值标识了
SerializationHeaderRecord
中指定的
2.6.1 SerializationHeaderRecord
:
The SerializationHeaderRecord record MUST be the first record in a binary serialization. This record has the major and minor version of the format and the IDs of the top object and the headers.
00
代表
RecordTypeEnumeration
,在我们的例子中是
SerializationHeaderRecord
。
01 00 00 00
代表
RootId
If neither the BinaryMethodCall nor BinaryMethodReturn record is present in the serialization stream, the value of this field MUST contain the ObjectId of a Class, Array, or BinaryObjectString record contained in the serialization stream.
ObjectId
,其值为
1
(因为数据是使用 little-endian 序列化的),我们希望再次看到它;-)
FF FF FF FF
代表
HeaderId
01 00 00 00
代表
MajorVersion
00 00 00 00
代表
MinorVersion
RecordTypeEnumeration
开头。随着最后一条记录完成,我们必须假设新的记录开始了。
SerializationHeaderRecord
后面是
BinaryLibrary
记录:
The BinaryLibrary record associates an INT32 ID (as specified in [MS-DTYP] section 2.2.22) with a Library name. This allows other records to reference the Library name by using the ID. This approach reduces the wire size when there are multiple records that reference the same Library name.
LengthPrefixedString
))2.1.1.6 LengthPrefixedString
所述...
The LengthPrefixedString represents a string value. The string is prefixed by the length of the UTF-8 encoded string in bytes. The length is encoded in a variable-length field with a minimum of 1 byte and a maximum of 5 bytes. To minimize the wire size, length is encoded as a variable-length field.
1 byte
进行编码。有了这些知识,我们可以继续解释流中的字节:
0C
代表
RecordTypeEnumeration
,它标识了
BinaryLibrary
记录。
02 00 00 00
代表
LibraryId
,在我们的例子中是
2
。
LengthPrefixedString
如下:
42
表示包含
LengthPrefixedString
的
LibraryName
的长度信息。
42
(十进制 66)的长度信息告诉我们,我们需要读取接下来的 66 个字节并将它们解释为
LibraryName
。
UTF-8
编码的,因此上述字节的结果将类似于:
_WorkSpace_, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
RecordTypeEnumeration
:
05
标识
ClassWithMembersAndTypes
记录。第
2.3.2.1 ClassWithMembersAndTypes
节指出:
The ClassWithMembersAndTypes record is the most verbose of the Class records. It contains metadata about Members, including the names and Remoting Types of the Members. It also contains a Library ID that references the Library Name of the Class.
2.3.1.1 ClassInfo
所述,记录包括:
LengthPrefixedString
))LengthPrefixedString
的序列,其中项目的数量必须等于 MemberCount
字段中指定的值。) 0x291911224233301 00 00 00
代表 ObjectId
。我们已经看到了这个,它在 RootId
中被指定为 SerializationHeaderRecord
。0F 53 74 61 63 6B 4F 76 65 72 46 6C 6F 77 2E 41
表示使用 Name
表示的类的 LengthPrefixedString
。如前所述,在我们的示例中,字符串的长度定义为 1 个字节,因此第一个字节 0F
指定必须使用 UTF-8 读取和解码 15 个字节。结果看起来像这样:StackOverFlow.A
- 所以很明显我使用了 StackOverFlow
作为命名空间的名称。02 00 00 00
代表 MemberCount
,它告诉我们有 2 个成员,都用 LengthPrefixedString
表示。1B 3C 53 6F 6D 65 53 74 72 69 6E 67 3E 6B 5F 5F 42 61 63 6B 69 6E 67 46 69 65 6C 64
代表第一个 MemberName
, 1B
也是字符串的长度,它是 27 个字节的长度,结果如下: 0x25181242313431<SomeString>k__BackingField
表示第二个 1A 3C 53 6F 6D 65 56 61 6C 75 65 3E 6B 5F 5F 42 61 63 6B 69 6E 67 46 69 65 6C 64
, MemberName
指定字符串为 26 字节长。结果如下: 1A
。<SomeValue>k__BackingField
之后是 ClassInfo
。MemberTypeInfo
节指出,该结构包含:A sequence of BinaryTypeEnumeration values that represents the Member Types that are being transferred. The Array MUST:
Have the same number of items as the MemberNames field of the ClassInfo structure.
Be ordered such that the BinaryTypeEnumeration corresponds to the Member name in the MemberNames field of the ClassInfo structure.
2.3.1.2 - MemberTypeInfo
附加信息可能存在也可能不存在。
| BinaryTypeEnum | AdditionalInfos |
|----------------+--------------------------|
| Primitive | PrimitiveTypeEnumeration |
| String | None |
BinaryTpeEnum
值(因为我们在
BinaryTypeEnumeration
中有 2 个成员)。
MemberNames
记录的原始数据:
MemberTypeInfo
代表第一个成员的
01
,根据
BinaryTypeEnumeration
我们可以期待一个
2.1.2.2 BinaryTypeEnumeration
,它用 0x21418 表示。
String
代表第二个成员的
LengthPrefixedString
,同样,根据规范,它是
00
。如上所述,
BinaryTypeEnumeration
后面是附加信息,在这种情况下是
Primitive
。这就是为什么我们需要读取下一个字节,即
Primitive
,将其与
PrimitiveTypeEnumeration
中所述的表进行匹配,并惊讶地注意到我们可以预期
08
由一些其他文档表示,关于基本数据类型。
2.1.2.3 PrimitiveTypeEnumeration
之后是
Int32
,用4个字节表示:
MemerTypeInfo
代表
LibraryId
,即 2。
02 00 00 00
中所述:
The values of the Members of the Class MUST be serialized as records that follow this record, as specified in section 2.7. The order of the records MUST match the order of MemberNames as specified in the ClassInfo (section 2.3.1.1) structure.
LibraryId
标识
2.3 Class Records
。它代表我们的
06
属性的值(准确地说是
BinaryObjectString
)。
SomeString
它包含:
<SomeString>k__BackingField
) 2.5.7 BinaryObjectString
代表
LengthPrefixedString
。
03 00 00 00
表示
ObjectId
,其中
03 61 62 63
是字符串本身的长度,
Value
是转换为 0x23134 的内容字节。13
03
。知道
61 62 63
用 4 个字节表示,我们可以得出结论,即
abc
。
Int32
十六进制等于
Int32
十进制,这似乎适合我们的示例代码。
Value
记录:
7B
代表
123
记录。
关于c# - 如何分析二进制序列化流的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3052202/
这个问题在这里已经有了答案: Why filter() after flatMap() is "not completely" lazy in Java streams? (8 个答案) 关闭 6
我正在创建一个应用程序来从 Instagram 收集数据。我正在寻找像 Twitter 流 API 这样的流 API,这样我就可以自动实时收集数据而无需发送请求。 Instagram 有类似的 API
我正在使用 Apache Commons 在 Google App Engine 中上传一个 .docx 文件,如此链接中所述 File upload servlet .上传时,我还想使用 Apach
我尝试使用 DynamoDB 流和 AWS 提供的 Java DynamoDB 流 Kinesis 适配器捕获 DynamoDB 表更改。我正在 Scala 应用程序中使用 AWS Java 开发工具
我目前有一个采用 H.264 编码的 IP 摄像机流式视频 (RTSP)。 我想使用 FFmpeg 将此 H.264 编码流转换为另一个 RTSP 流,但 MPEG-2 编码。我该怎么做?我应该使用哪
Redis 流是否受益于集群模式?假设您有 10 个流,它们是分布在整个集群中还是都分布在同一节点上?我计划使用 Redis 流来实现真正的高吞吐量(200 万条消息/秒),所以我担心这种规模的 Re
这件事困扰了我一段时间。 所以我有一个 Product 类,它有一个 Image 列表(该列表可能为空)。 我想做 product.getImages().stream().filter(...) 但
是否可以使用 具有持久存储的 Redis 流 还是流仅限于内存数据? 我知道可以将 Redis 与核心数据结构的持久存储一起使用,但我已经能够理解是否也可以使用 Redis 中的流的持久存储。 最佳答
我开始学习 Elixir 并遇到了一个我无法轻松解决的挑战。 我正在尝试创建一个函数,该函数接受一个 Enumerable.t 并返回另一个 Enumerable.t ,其中包含下 n 个项目。它与
我试图从 readLine 调用创建一个无限的字符串流: import java.io.{BufferedReader, InputStreamReader} val in = new Buffere
你能帮我使用 Java 8 流 API 编写以下代码吗? SuperUser superUser = db.getSuperUser; for (final Client client : super
我正在尝试服用补品routeguide tutorial,并将客户端变成rocket服务器。我只是接受响应并将gRPC转换为字符串。 service RouteGuide { rpc GetF
流程代码可以是run here. 使用 flow,我有一个函数,它接受一个键值对对象并获取它的值 - 它获取的值应该是字符串、数字或 bool 值。 type ValueType = string
如果我有一个函数返回一个包含数据库信息的对象或一个空对象,如下所示: getThingFromDB: async function(id:string):Promise{ const from
我正在尝试使用javascript api和FB.ui将ogg音频文件发布到流中, 但是我不知道该怎么做。 这是我给FB.ui的电话: FB.ui( { method: '
我正在尝试删除工作区(或克隆它以使其看起来像父工作区,但我似乎两者都做不到)。但是,当我尝试时,我收到此消息:无法删除工作区 test_workspace,因为它有一个非空的默认组。 据我所知,这意味
可以使用 Stream|Map 来完成此操作,这样我就不需要将结果放入外部 HashMap 中,而是使用 .collect(Collectors.toMap(...)); 收集结果? Map rep
当我们从集合列表中获取 Stream 时,幕后到底发生了什么?我发现很多博客都说Stream不存储任何数据。如果这是真的,请考虑代码片段: List list = new ArrayList(); l
我对流及其工作方式不熟悉,我正在尝试获取列表中添加的特定对象的出现次数。 我找到了一种使用Collections来做到这一点的方法。其过程如下: for (int i = 0; i p.conten
我希望将一个 map 列表转换为另一个分组的 map 列表。 所以我有以下 map 列表 - List [{ "accId":"1", "accName":"TestAcc1", "accNumber
我是一名优秀的程序员,十分优秀!