mirror of
https://github.com/Luzifer/sii.git
synced 2024-12-21 00:21:15 +00:00
38 lines
680 B
Go
38 lines
680 B
Go
package sii
|
|
|
|
type Block interface {
|
|
Class() string
|
|
Init(class, name string)
|
|
Name() string
|
|
}
|
|
|
|
type Marshaler interface {
|
|
MarshalSII() ([]byte, error)
|
|
}
|
|
|
|
type Unmarshaler interface {
|
|
UnmarshalSII([]byte) error
|
|
}
|
|
|
|
type RawBlock struct {
|
|
Data []byte
|
|
|
|
blockName string
|
|
blockClass string
|
|
}
|
|
|
|
func (r *RawBlock) Init(class, name string) {
|
|
r.blockClass = class
|
|
r.blockName = name
|
|
}
|
|
func (r RawBlock) MarshalSII() []byte { return r.Data }
|
|
func (r RawBlock) Name() string { return r.blockName }
|
|
func (r RawBlock) Class() string { return r.blockClass }
|
|
func (r *RawBlock) UnmarshalSII(in []byte) error {
|
|
r.Data = in
|
|
return nil
|
|
}
|
|
|
|
type Unit struct {
|
|
Entries []Block
|
|
}
|