Compare commits

...

2 Commits

Author SHA1 Message Date
75cba09617
Make hat size random 2021-07-31 13:34:43 -05:00
e2cf17ff80
Rename model conversion functions 2021-07-27 18:00:35 -05:00
2 changed files with 12 additions and 9 deletions

View File

@ -3,12 +3,15 @@ package main
import ( import (
"context" "context"
"fmt" "fmt"
"math/rand"
"net/http" "net/http"
"os" "os"
"haberdasher-twirp/haberdasher" "haberdasher-twirp/haberdasher"
) )
const MaxSize = 12
func main() { func main() {
var host string = "http://localhost:8080" var host string = "http://localhost:8080"
if len(os.Args) > 1 { if len(os.Args) > 1 {
@ -17,7 +20,7 @@ func main() {
client := haberdasher.NewHaberdasherProtobufClient(host, &http.Client{}) client := haberdasher.NewHaberdasherProtobufClient(host, &http.Client{})
hat, err := client.MakeHat(context.Background(), &haberdasher.Size{Inches: 12}) hat, err := client.MakeHat(context.Background(), &haberdasher.Size{Inches: int32(rand.Intn(MaxSize))})
if err != nil { if err != nil {
fmt.Printf("oh no: %v\n", err) fmt.Printf("oh no: %v\n", err)
os.Exit(1) os.Exit(1)

View File

@ -34,7 +34,7 @@ type Store struct {
db *bolt.DB db *bolt.DB
} }
func HatToHatModel(h *pb.Hat) Hat { func PbToHatModel(h *pb.Hat) Hat {
return Hat{ return Hat{
Inches: h.Inches, Inches: h.Inches,
Color: h.Color, Color: h.Color,
@ -42,7 +42,7 @@ func HatToHatModel(h *pb.Hat) Hat {
} }
} }
func HatModelToHat(h Hat) *pb.Hat { func HatModelToPb(h Hat) *pb.Hat {
return &pb.Hat{ return &pb.Hat{
Inches: h.Inches, Inches: h.Inches,
Color: h.Color, Color: h.Color,
@ -50,16 +50,16 @@ func HatModelToHat(h Hat) *pb.Hat {
} }
} }
func HatsModelToHats(hs []Hat) (hats *pb.Hats) { func HatsModelToPb(hs []Hat) (hats *pb.Hats) {
hats = &pb.Hats{} hats = &pb.Hats{}
for _, h := range hs { for _, h := range hs {
hat := HatModelToHat(h) hat := HatModelToPb(h)
hats.Hats = append(hats.Hats, hat) hats.Hats = append(hats.Hats, hat)
} }
return hats return hats
} }
func HatQueryToHatQueryModel(q *pb.HatQuery) HatQuery { func PbToHatQueryModel(q *pb.HatQuery) HatQuery {
return HatQuery{ return HatQuery{
Limit: q.Limit, Limit: q.Limit,
} }
@ -86,16 +86,16 @@ func (s *Server) MakeHat(ctx context.Context, size *pb.Size) (hat *pb.Hat, err e
st.SaveHat(h) st.SaveHat(h)
return HatModelToHat(h), nil return HatModelToPb(h), nil
} }
func (s *Server) ListHats(ctx context.Context, q *pb.HatQuery) (hats *pb.Hats, err error) { func (s *Server) ListHats(ctx context.Context, q *pb.HatQuery) (hats *pb.Hats, err error) {
st, _ := NewStore(s.DBPath, 0600, nil) st, _ := NewStore(s.DBPath, 0600, nil)
defer st.Close() defer st.Close()
hs, err := st.ListHats(HatQueryToHatQueryModel(q)) hs, err := st.ListHats(PbToHatQueryModel(q))
return HatsModelToHats(hs), nil return HatsModelToPb(hs), nil
} }
func itob(v uint64) []byte { func itob(v uint64) []byte {