mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
beam/data: Message.GetOne() returns the last value set at a key
This is a convenience for callers which are only interested in one value per key. Similar to how HTTP headers allow multiple keys per value, but are often used to store and retrieve only one value. Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
This commit is contained in:
parent
9dc66f8822
commit
2af030ab57
2 changed files with 18 additions and 0 deletions
|
@ -72,6 +72,16 @@ func (m Message) Get(k string) []string {
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetOne returns the last value added at the key k,
|
||||||
|
// or an empty string if there is no value.
|
||||||
|
func (m Message) GetOne(k string) string {
|
||||||
|
var v string
|
||||||
|
if vals := m.Get(k); len(vals) > 0 {
|
||||||
|
v = vals[len(vals)-1]
|
||||||
|
}
|
||||||
|
return v
|
||||||
|
}
|
||||||
|
|
||||||
func (m Message) Pretty() string {
|
func (m Message) Pretty() string {
|
||||||
data, err := Decode(string(m))
|
data, err := Decode(string(m))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -51,3 +51,11 @@ func TestSetDelMessage(t *testing.T) {
|
||||||
t.Fatalf("'%v' != '%v'", output, expectedOutput)
|
t.Fatalf("'%v' != '%v'", output, expectedOutput)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGetOne(t *testing.T) {
|
||||||
|
m := Empty().Set("shadok words", "ga", "bu", "zo", "meu")
|
||||||
|
val := m.GetOne("shadok words")
|
||||||
|
if val != "meu" {
|
||||||
|
t.Fatalf("%#v", val)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue