You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
609 B
33 lines
609 B
3 years ago
|
// Package tmap provides type mapping facility that maps type id to type name.
|
||
|
package tmap
|
||
|
|
||
|
// Map is type mapping.
|
||
|
type Map struct {
|
||
|
types map[uint32]string
|
||
|
}
|
||
|
|
||
|
func (m *Map) add(mapping map[uint32]string) {
|
||
|
for k, v := range mapping {
|
||
|
m.types[k] = v
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Get returns type string or blank.
|
||
|
func (m *Map) Get(id uint32) string {
|
||
|
if m == nil || len(m.types) == 0 {
|
||
|
return ""
|
||
|
}
|
||
|
return m.types[id]
|
||
|
}
|
||
|
|
||
|
// New creates new Map from mappings.
|
||
|
func New(mappings ...map[uint32]string) *Map {
|
||
|
m := &Map{
|
||
|
types: map[uint32]string{},
|
||
|
}
|
||
|
for _, mapping := range mappings {
|
||
|
m.add(mapping)
|
||
|
}
|
||
|
return m
|
||
|
}
|