-
Notifications
You must be signed in to change notification settings - Fork 9
/
types.go
46 lines (36 loc) · 1.06 KB
/
types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package gosupport
import (
"fmt"
"strings"
"github.com/iancoleman/strcase"
)
type TypeDef struct {
GoImportURL, GoTypeName, GoName string
}
func MakeType(imports *GoImports, pkg, typeName string) string {
if pkg == "" {
return typeName
}
// If there's a type qualifier (pointer, slice) present, split it from the type name,
// so we can move it to be before the package name below.
qual := ""
for _, q := range []string{"[]", "*"} {
if t := strings.TrimPrefix(typeName, q); t != typeName {
qual += q
typeName = t
}
}
return fmt.Sprintf("%s%s%s", qual, imports.Ensure(pkg), typeName)
}
func (dp TypeDef) MakeType(imports *GoImports) string {
return MakeType(imports, dp.GoImportURL, dp.GoTypeName)
}
func MakeGoPrivVar(input string) string {
return strcase.ToLowerCamel(input)
}
func MakeGoPubVar(input string) string {
return strcase.ToCamel(input)
}