Todd Wang | 232d649 | 2015-02-25 18:04:54 -0800 | [diff] [blame] | 1 | package java |
| 2 | |
| 3 | import ( |
| 4 | "bytes" |
| 5 | "log" |
| 6 | "path" |
| 7 | |
Jiri Simsa | ffceefa | 2015-02-28 11:03:34 -0800 | [diff] [blame] | 8 | "v.io/x/ref/lib/vdl/compile" |
Todd Wang | 53a4e2e | 2015-03-18 10:54:54 -0700 | [diff] [blame] | 9 | "v.io/x/ref/lib/vdl/vdlutil" |
Todd Wang | 232d649 | 2015-02-25 18:04:54 -0800 | [diff] [blame] | 10 | ) |
| 11 | |
Jiri Simsa | 67b8a26 | 2015-03-24 21:14:07 -0700 | [diff] [blame^] | 12 | const clientFactoryTmpl = header + ` |
Todd Wang | 232d649 | 2015-02-25 18:04:54 -0800 | [diff] [blame] | 13 | // Source(s): {{ .Sources }} |
| 14 | package {{ .PackagePath }}; |
| 15 | |
| 16 | /* Factory for binding to {{ .ServiceName }}Client interfaces. */ |
| 17 | {{.AccessModifier}} final class {{ .ServiceName }}ClientFactory { |
| 18 | public static {{ .ServiceName }}Client bind(final java.lang.String name) { |
| 19 | return bind(name, null); |
| 20 | } |
| 21 | public static {{ .ServiceName }}Client bind(final java.lang.String name, final io.v.v23.Options veyronOpts) { |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 22 | io.v.v23.rpc.Client client = null; |
Todd Wang | 232d649 | 2015-02-25 18:04:54 -0800 | [diff] [blame] | 23 | if (veyronOpts != null && veyronOpts.get(io.v.v23.OptionDefs.CLIENT) != null) { |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 24 | client = veyronOpts.get(io.v.v23.OptionDefs.CLIENT, io.v.v23.rpc.Client.class); |
Todd Wang | 232d649 | 2015-02-25 18:04:54 -0800 | [diff] [blame] | 25 | } |
| 26 | return new {{ .StubName }}(client, name); |
| 27 | } |
| 28 | } |
| 29 | ` |
| 30 | |
| 31 | // genJavaClientFactoryFile generates the Java file containing client bindings for |
| 32 | // all interfaces in the provided package. |
| 33 | func genJavaClientFactoryFile(iface *compile.Interface, env *compile.Env) JavaFileInfo { |
Todd Wang | 53a4e2e | 2015-03-18 10:54:54 -0700 | [diff] [blame] | 34 | javaServiceName := vdlutil.FirstRuneToUpper(iface.Name) |
Todd Wang | 232d649 | 2015-02-25 18:04:54 -0800 | [diff] [blame] | 35 | data := struct { |
| 36 | AccessModifier string |
| 37 | Sources string |
| 38 | ServiceName string |
| 39 | PackagePath string |
| 40 | StubName string |
| 41 | }{ |
| 42 | AccessModifier: accessModifierForName(iface.Name), |
| 43 | Sources: iface.File.BaseName, |
| 44 | ServiceName: javaServiceName, |
| 45 | PackagePath: javaPath(javaGenPkgPath(iface.File.Package.GenPath)), |
| 46 | StubName: javaPath(javaGenPkgPath(path.Join(iface.File.Package.GenPath, iface.Name+"ClientStub"))), |
| 47 | } |
| 48 | var buf bytes.Buffer |
| 49 | err := parseTmpl("client factory", clientFactoryTmpl).Execute(&buf, data) |
| 50 | if err != nil { |
| 51 | log.Fatalf("vdl: couldn't execute client template: %v", err) |
| 52 | } |
| 53 | return JavaFileInfo{ |
| 54 | Name: javaServiceName + "ClientFactory.java", |
| 55 | Data: buf.Bytes(), |
| 56 | } |
| 57 | } |