blob: 08ffa5809ef9bdb934de9916d64b6c4884c86690 [file] [log] [blame]
Todd Wang232d6492015-02-25 18:04:54 -08001package java
2
3import (
4 "bytes"
5 "log"
6 "path"
7
Jiri Simsaffceefa2015-02-28 11:03:34 -08008 "v.io/x/ref/lib/vdl/compile"
Todd Wang53a4e2e2015-03-18 10:54:54 -07009 "v.io/x/ref/lib/vdl/vdlutil"
Todd Wang232d6492015-02-25 18:04:54 -080010)
11
Jiri Simsa67b8a262015-03-24 21:14:07 -070012const clientFactoryTmpl = header + `
Todd Wang232d6492015-02-25 18:04:54 -080013// Source(s): {{ .Sources }}
14package {{ .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 Rosencrantz94502cf2015-03-18 09:43:44 -070022 io.v.v23.rpc.Client client = null;
Todd Wang232d6492015-02-25 18:04:54 -080023 if (veyronOpts != null && veyronOpts.get(io.v.v23.OptionDefs.CLIENT) != null) {
Matt Rosencrantz94502cf2015-03-18 09:43:44 -070024 client = veyronOpts.get(io.v.v23.OptionDefs.CLIENT, io.v.v23.rpc.Client.class);
Todd Wang232d6492015-02-25 18:04:54 -080025 }
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.
33func genJavaClientFactoryFile(iface *compile.Interface, env *compile.Env) JavaFileInfo {
Todd Wang53a4e2e2015-03-18 10:54:54 -070034 javaServiceName := vdlutil.FirstRuneToUpper(iface.Name)
Todd Wang232d6492015-02-25 18:04:54 -080035 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}