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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
package main
import (
"bytes"
"flag"
"fmt"
"go/ast"
"go/parser"
"go/token"
"io"
"os"
"reflect"
"strings"
)
const prefix = "server_"
func pretty_print_type_expr(out io.Writer, e ast.Expr) {
ty := reflect.TypeOf(e)
switch t := e.(type) {
case *ast.StarExpr:
fmt.Fprintf(out, "*")
pretty_print_type_expr(out, t.X)
case *ast.Ident:
fmt.Fprintf(out, t.Name)
case *ast.ArrayType:
fmt.Fprintf(out, "[]")
pretty_print_type_expr(out, t.Elt)
case *ast.SelectorExpr:
pretty_print_type_expr(out, t.X)
fmt.Fprintf(out, ".%s", t.Sel.Name)
case *ast.FuncType:
fmt.Fprintf(out, "func(")
pretty_print_func_field_list(out, t.Params)
fmt.Fprintf(out, ")")
buf := bytes.NewBuffer(make([]byte, 0, 256))
nresults := pretty_print_func_field_list(buf, t.Results)
if nresults > 0 {
results := buf.String()
if strings.Index(results, " ") != -1 {
results = "(" + results + ")"
}
fmt.Fprintf(out, " %s", results)
}
case *ast.MapType:
fmt.Fprintf(out, "map[")
pretty_print_type_expr(out, t.Key)
fmt.Fprintf(out, "]")
pretty_print_type_expr(out, t.Value)
case *ast.InterfaceType:
fmt.Fprintf(out, "interface{}")
case *ast.Ellipsis:
fmt.Fprintf(out, "...")
pretty_print_type_expr(out, t.Elt)
default:
fmt.Fprintf(out, "\n[!!] unknown type: %s\n", ty.String())
}
}
func pretty_print_func_field_list(out io.Writer, f *ast.FieldList) int {
count := 0
if f == nil {
return count
}
for i, field := range f.List {
// names
if field.Names != nil {
for j, name := range field.Names {
fmt.Fprintf(out, "%s", name.Name)
if j != len(field.Names)-1 {
fmt.Fprintf(out, ", ")
}
count++
}
fmt.Fprintf(out, " ")
} else {
count++
}
// type
pretty_print_type_expr(out, field.Type)
// ,
if i != len(f.List)-1 {
fmt.Fprintf(out, ", ")
}
}
return count
}
func pretty_print_func_field_list_using_args(out io.Writer, f *ast.FieldList) int {
count := 0
if f == nil {
return count
}
for i, field := range f.List {
// names
if field.Names != nil {
for j := range field.Names {
fmt.Fprintf(out, "Arg%d", count)
if j != len(field.Names)-1 {
fmt.Fprintf(out, ", ")
}
count++
}
fmt.Fprintf(out, " ")
} else {
count++
}
// type
pretty_print_type_expr(out, field.Type)
// ,
if i != len(f.List)-1 {
fmt.Fprintf(out, ", ")
}
}
return count
}
func generate_struct_wrapper(out io.Writer, fun *ast.FieldList, structname, name string) int {
fmt.Fprintf(out, "type %s_%s struct {\n", structname, name)
argn := 0
for _, field := range fun.List {
fmt.Fprintf(out, "\t")
// names
if field.Names != nil {
for j := range field.Names {
fmt.Fprintf(out, "Arg%d", argn)
if j != len(field.Names)-1 {
fmt.Fprintf(out, ", ")
}
argn++
}
fmt.Fprintf(out, " ")
} else {
fmt.Fprintf(out, "Arg%d ", argn)
argn++
}
// type
pretty_print_type_expr(out, field.Type)
// \n
fmt.Fprintf(out, "\n")
}
fmt.Fprintf(out, "}\n")
return argn
}
// function that is being exposed to an RPC API, but calls simple "Server_" one
func generate_server_rpc_wrapper(out io.Writer, fun *ast.FuncDecl, name string, argcnt, replycnt int) {
fmt.Fprintf(out, "func (r *RPC) RPC_%s(args *Args_%s, reply *Reply_%s) error {\n",
name, name, name)
fmt.Fprintf(out, "\t")
for i := 0; i < replycnt; i++ {
fmt.Fprintf(out, "reply.Arg%d", i)
if i != replycnt-1 {
fmt.Fprintf(out, ", ")
}
}
fmt.Fprintf(out, " = %s(", fun.Name.Name)
for i := 0; i < argcnt; i++ {
fmt.Fprintf(out, "args.Arg%d", i)
if i != argcnt-1 {
fmt.Fprintf(out, ", ")
}
}
fmt.Fprintf(out, ")\n")
fmt.Fprintf(out, "\treturn nil\n}\n")
}
func generate_client_rpc_wrapper(out io.Writer, fun *ast.FuncDecl, name string, argcnt, replycnt int) {
fmt.Fprintf(out, "func client_%s(cli *rpc.Client, ", name)
pretty_print_func_field_list_using_args(out, fun.Type.Params)
fmt.Fprintf(out, ")")
buf := bytes.NewBuffer(make([]byte, 0, 256))
nresults := pretty_print_func_field_list(buf, fun.Type.Results)
if nresults > 0 {
results := buf.String()
if strings.Index(results, " ") != -1 {
results = "(" + results + ")"
}
fmt.Fprintf(out, " %s", results)
}
fmt.Fprintf(out, " {\n")
fmt.Fprintf(out, "\tvar args Args_%s\n", name)
fmt.Fprintf(out, "\tvar reply Reply_%s\n", name)
for i := 0; i < argcnt; i++ {
fmt.Fprintf(out, "\targs.Arg%d = Arg%d\n", i, i)
}
fmt.Fprintf(out, "\terr := cli.Call(\"RPC.RPC_%s\", &args, &reply)\n", name)
fmt.Fprintf(out, "\tif err != nil {\n")
fmt.Fprintf(out, "\t\tpanic(err)\n\t}\n")
fmt.Fprintf(out, "\treturn ")
for i := 0; i < replycnt; i++ {
fmt.Fprintf(out, "reply.Arg%d", i)
if i != replycnt-1 {
fmt.Fprintf(out, ", ")
}
}
fmt.Fprintf(out, "\n}\n")
}
func wrap_function(out io.Writer, fun *ast.FuncDecl) {
name := fun.Name.Name[len(prefix):]
fmt.Fprintf(out, "// wrapper for: %s\n\n", fun.Name.Name)
argcnt := generate_struct_wrapper(out, fun.Type.Params, "Args", name)
replycnt := generate_struct_wrapper(out, fun.Type.Results, "Reply", name)
generate_server_rpc_wrapper(out, fun, name, argcnt, replycnt)
generate_client_rpc_wrapper(out, fun, name, argcnt, replycnt)
fmt.Fprintf(out, "\n")
}
func process_file(out io.Writer, filename string) {
fset := token.NewFileSet()
file, err := parser.ParseFile(fset, filename, nil, 0)
if err != nil {
panic(err)
}
for _, decl := range file.Decls {
if fdecl, ok := decl.(*ast.FuncDecl); ok {
namelen := len(fdecl.Name.Name)
if namelen >= len(prefix) && fdecl.Name.Name[0:len(prefix)] == prefix {
wrap_function(out, fdecl)
}
}
}
}
const head = `// WARNING! Autogenerated by goremote, don't touch.
package main
import (
"net/rpc"
)
type RPC struct {
}
`
func main() {
flag.Parse()
fmt.Fprintf(os.Stdout, head)
for _, file := range flag.Args() {
process_file(os.Stdout, file)
}
}
|