1

我正在使用 Ruby 和BinData gem 实现数据结构。我需要实现一个Choice值。根据 BinData 文档,选择可以实现为:

class MyData < BinData::Record
  uint8  :type
  choice :data, :selection => :type do
    type key #option 1
    type key #option 2
  end
end

我需要在选择中有一个默认选项:

class MyRecord < BinData::Record
    uint8 :type
    choice :mydata, :selection => :type do
            uint32 0
            uint16 1
    end
end

type如果不是01在上面的代码中,如何处理?

4

3 回答 3

5

BinData 1.4.1 本机处理这个问题:default

class MyRecord < BinData::Record
  uint8 :data_type
  choice :mydata, :selection => :data_type do
    uint32 1
    uint16 2
    string :default, :read_length => 4
  end
end
于 2011-06-20T03:46:59.683 回答
2

好吧,我找到了解决方法。无论如何,任何其他选择也是最受欢迎的。

class MyRecord < BinData::Record
    uint8 :data_type
    choice :mydata, :selection => :get_choice do
            uint32 1
            uint16 2
            string 255, :read_length => 4
    end

    def get_choice
            choices = [1, 2]
            if choices.include? data_type
                    return data_type
            else
                    return 255
            end
    end
end
于 2011-06-12T07:43:26.993 回答
-1

您可以在构造函数中设置默认值...

于 2011-06-14T16:37:06.130 回答