在 erlang 中编码/解码 XDR 类型的推荐方法是什么?

发布于 2024-07-21 18:17:04 字数 839 浏览 5 评论 0原文

在另一个 SO 讨论中,我们讨论了将 erlang 应用程序连接到另一个使用 XDR 编码的非 erlang 应用程序用于网络通信的数据包

不幸的是,我找不到任何关于使用 erlang 处理 XDR 数据的真正指导。

那么在 erlang 中处理 XDR 编码数据的推荐方法是什么?

谢谢

PS:到目前为止,我可以找到以下资源:

In another SO discussion, we were talking about interfacing an erlang application to another non-erlang app that is using XDR encoded packets for network communications.

Unfortunately, I couldn't really find any real pointers on dealing with XDR data using erlang.

So what is the recommended way of dealing with XDR encoded data in erlang?

Thanks

PS: So far, I could find the following resources:

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

恰似旧人归 2024-07-28 18:17:04

Jungerl Erlang 源代码集合。 它有一个代码生成器,可以生成 Erlang 代码来管理基于 XDR 的协议。

There is a project called rpc in the Jungerl Erlang source collection. It has a code-generator that produces Erlang code to manage XDR-based protocols.

滿滿的愛 2024-07-28 18:17:04

构建您自己的 XDR 编码和解码库并不困难。

将 Erlang 术语编码为 XDR 很简单:

%% @spec push_bool(bool()) -> binary()

push_bool(Value) ->
    case Value of
        true ->
           <<0, 0, 0, 1>>;
        false ->
            <<0, 0, 0, 0>>
    end.

采用其他方式则有点冗长,具体取决于您希望如何完成错误报告。 我选择了例外:

%% @spec pull_bool(binary()) -> {bool(), binary()}

pull_bool(Bin) ->
    {Value, Tail} = 
        try
            <<0, 0, 0, V, T/binary>> = Bin,
            {V, T}
        catch 
            error:{badmatch, _} -> 
                throw({xdr_error, "Invalid boolean value"})
        end,
    Result = case Value of
                 0 -> false;
                 1 -> true;
                 _ -> throw({xdr_error, "Invalid boolean value"})
             end, 
    {Result, Tail}.

实际上总共没有那么多 XDR 数据类型,因此总共可能只有几百行代码。

Building your own XDR encode and decode library isn't difficult.

Encoding Erlang terms to XDR is trivial:

%% @spec push_bool(bool()) -> binary()

push_bool(Value) ->
    case Value of
        true ->
           <<0, 0, 0, 1>>;
        false ->
            <<0, 0, 0, 0>>
    end.

Going the other way is a bit more verbose, depending on how you would like error reporting to be done. I've chosen exceptions:

%% @spec pull_bool(binary()) -> {bool(), binary()}

pull_bool(Bin) ->
    {Value, Tail} = 
        try
            <<0, 0, 0, V, T/binary>> = Bin,
            {V, T}
        catch 
            error:{badmatch, _} -> 
                throw({xdr_error, "Invalid boolean value"})
        end,
    Result = case Value of
                 0 -> false;
                 1 -> true;
                 _ -> throw({xdr_error, "Invalid boolean value"})
             end, 
    {Result, Tail}.

There really aren't that many XDR data types in total so it would maybe be a couple of hundred lines of code in total.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文