Skip to content

teliosdev/packed_struct

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PackedStruct Build Status

PackedStruct is a way to define packing strings (see Array#pack). It was created after @charliesome suggested a format for defining these strings, but never finished it.

The basic way of defining a packed struct is such:

class RconPacket
  include PackedStruct
  struct_layout :packet do
    little_endian signed size[32] # defaults to a number of size 32.
                                  # also the same as: `little_endian signed long size`
    little_endian signed id[32]
    little_endian signed type[32]
    string body[size]
    null
  end
end

This can be accessed as:

RconPacket.structs[:packet].pack(size: 11, id: 1, type: 0, body: "hello world")
# => "\v\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00hello world\x00"

You can also unpack strings.

RconPacket.structs[:packet].unpack("\v\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00hello world\x00")
# => {:size => 11, :id => 1, :type => 0, :body => "hello world"}

From sockets, too. Anything that responds to #read.

file = File.open("/path/to/some/file", "r")

RconPacket.structs[:packet].unpack_from_socket(file)
# => ...

Bitdeli Badge

About

Cleans up the string mess when packing items.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages