C#BinaryWriter长度前缀 - UTF7编码

use*_*339 5 c#

我有一个项目使用内存映射文件让两个应用程序相互共享数据.生产者应用程序是用C#编写的,消费者应用程序用简单的旧C语言编写.两者都使用VS2010.

MSDN称"BinaryWriter.Write Method(String)"在数据前面加上UTF-7编码的无符号整数,然后写入有效负载.这正是我被困住的地方.如果我写了一个长度为256个字符的字符串,那么C app的调试器会显示这个字节序列:0x80 0x2 <256次有效负载char>.将长度前缀转换为我可以在消费者应用中安全使用的最佳方法是什么?

制片人应用:

using System;
using System.IO;
using System.IO.MemoryMappedFiles;
using System.Threading;
using System.Text;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        using (MemoryMappedFile mmf_read = MemoryMappedFile.CreateNew("mappedview", 4096))
        {
            using (MemoryMappedViewStream stream = mmf_read.CreateViewStream())
            {
                string str;
                BinaryWriter writer = new BinaryWriter(stream);

                str = string.Join("", Enumerable.Repeat("x", 256));

                writer.Write(str);
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

消费者应用:

#include <windows.h>
#include <stdio.h>
#include <conio.h>
#include <tchar.h>
#pragma comment(lib, "user32.lib")

#define BUF_SIZE 4096
TCHAR szName[]=TEXT("Global\\mappedview");


int _tmain()
{
    HANDLE hMapFile;
    LPCSTR pBuf;

    hMapFile = OpenFileMapping(
               FILE_MAP_ALL_ACCESS,         // read/write access
               FALSE,                       // do not inherit the name
               szName);                     // name of mapping object

    if (hMapFile == NULL)
    {
        _tprintf(TEXT("Could not open file mapping object (%d).\n"),
         GetLastError());
        return 1;
    }

    pBuf = (LPCSTR) MapViewOfFile(hMapFile,     // handle to map object
           FILE_MAP_ALL_ACCESS,             // read/write permission
           0,
           0,
           BUF_SIZE);

    if (pBuf == NULL)
    {
        _tprintf(TEXT("Could not map view of file (%d).\n"),
                GetLastError());

        CloseHandle(hMapFile);
        return 1;
    }

    printf("Proc1: %s\n\n", pBuf);              // print mapped data

    UnmapViewOfFile(pBuf);

    CloseHandle(hMapFile);

    return 0;
}
Run Code Online (Sandbox Code Playgroud)

克里斯

Mat*_*son 7

尽管微软的文档说,

  1. 写入的前缀号实际上是LEB128编码计数.
  2. 这是字节数,而不是字符数.

我链接的Wiki页面为您提供解码代码,但我会考虑使用自己的方案.您可以使用手动将字符串转换为UTF8 Encoding.GetBytes()并将其写入MMF,并在其前面加上普通的无符号短.这样你就可以完全控制一切.


Mor*_*gil 6

虽然BinaryWriter.Write上MSDN文档声明它"首先将字符串的长度写为UTF-7编码的无符号整数",但这是错误的.首先,UTF-7是一种字符串编码,你不能使用UTF-7 编码整数.文档的含义(和代码的作用)是它使用可变长度7位编码(有时称为LEB128)写入长度.在您的特定情况下,数据字节80 02表示以下内容:

1000 0000 0000 0010

Nbbb bbbb Eaaa aaaa

  • N 设置为1表示这不是最后一个字节
  • E 设置为零表示这是最后一个字节
  • aaaaaaa并且bbbbbbb是真实的数据; 结果是:

00000100000000

aaaaaaabbbbbbb

100000000二进制,十进制256.