blob: 5c2d452e6d26a0e38109b15488fc1d1d5c92b2fd [file] [log] [blame]
Jiri Simsa5293dcb2014-05-10 09:56:38 -07001package rt
2
3import (
Asim Shankar6a65d282014-06-26 12:12:50 -07004 "fmt"
Matt Rosencrantz3e76f282014-11-10 09:38:57 -08005 "math/rand"
Cosmos Nicolaou9388ae42014-11-10 10:57:15 -08006 "time"
Asim Shankar6a65d282014-06-26 12:12:50 -07007
Jiri Simsa764efb72014-12-25 20:57:03 -08008 iipc "v.io/core/veyron/runtimes/google/ipc"
9 imanager "v.io/core/veyron/runtimes/google/ipc/stream/manager"
10 "v.io/core/veyron/runtimes/google/ipc/stream/vc"
11 ivtrace "v.io/core/veyron/runtimes/google/vtrace"
Cosmos Nicolaou416ca972014-05-28 22:03:06 -070012
Jiri Simsa764efb72014-12-25 20:57:03 -080013 "v.io/core/veyron2/context"
14 "v.io/core/veyron2/i18n"
15 "v.io/core/veyron2/ipc"
16 "v.io/core/veyron2/ipc/stream"
17 "v.io/core/veyron2/naming"
18 "v.io/core/veyron2/options"
19 "v.io/core/veyron2/verror2"
20 "v.io/core/veyron2/vtrace"
Jiri Simsa5293dcb2014-05-10 09:56:38 -070021)
22
23func (rt *vrt) NewClient(opts ...ipc.ClientOpt) (ipc.Client, error) {
Bogdan Capritafbcfe892014-09-30 16:50:45 -070024 rt.mu.Lock()
25 sm := rt.sm[0]
26 rt.mu.Unlock()
Cosmos Nicolaou4e029972014-06-13 14:53:08 -070027 ns := rt.ns
Jiri Simsa5293dcb2014-05-10 09:56:38 -070028 var otherOpts []ipc.ClientOpt
29 for _, opt := range opts {
30 switch topt := opt.(type) {
Asim Shankarcc044212014-10-15 23:25:26 -070031 case options.StreamManager:
Jiri Simsa5293dcb2014-05-10 09:56:38 -070032 sm = topt.Manager
Asim Shankarcc044212014-10-15 23:25:26 -070033 case options.Namespace:
Cosmos Nicolaou4e029972014-06-13 14:53:08 -070034 ns = topt.Namespace
Jiri Simsa5293dcb2014-05-10 09:56:38 -070035 default:
36 otherOpts = append(otherOpts, opt)
37 }
38 }
Cosmos Nicolaou4e8da642014-11-13 08:32:05 -080039 otherOpts = append(otherOpts, vc.LocalPrincipal{rt.principal}, &imanager.DialTimeout{5 * time.Minute}, rt.preferredProtocols)
Suharsh Sivakumar1b6683e2014-12-30 13:00:38 -080040 return iipc.InternalNewClient(sm, ns, otherOpts...)
Jiri Simsa5293dcb2014-05-10 09:56:38 -070041}
42
43func (rt *vrt) Client() ipc.Client {
44 return rt.client
45}
46
Matt Rosencrantz4f8ac602014-12-29 14:42:48 -080047func (rt *vrt) NewContext() *context.T {
48 ctx := context.NewUninitializedContext(rt)
Mike Burrows110e22f2014-10-10 10:23:37 -070049 ctx = i18n.ContextWithLangID(ctx, rt.lang)
50 ctx = verror2.ContextWithComponentName(ctx, rt.program)
Matt Rosencrantz3e76f282014-11-10 09:38:57 -080051
52 sr := rt.flags.Vtrace.SampleRate
53 forceCollect := sr > 0.0 && (sr >= 1.0 || rand.Float64() < sr)
54 ctx, _ = ivtrace.WithNewRootSpan(ctx, rt.traceStore, forceCollect)
55
Matt Rosencrantz5845bf12015-01-06 13:05:21 -080056 return rt.initRuntimeXContext(ctx)
Matt Rosencrantz9fe60822014-09-12 10:09:53 -070057}
58
Matt Rosencrantz4f8ac602014-12-29 14:42:48 -080059func (rt *vrt) WithNewSpan(ctx *context.T, name string) (*context.T, vtrace.Span) {
Matt Rosencrantz9fe60822014-09-12 10:09:53 -070060 return ivtrace.WithNewSpan(ctx, name)
61}
62
Matt Rosencrantz4f8ac602014-12-29 14:42:48 -080063func (rt *vrt) SpanFromContext(ctx *context.T) vtrace.Span {
Matt Rosencrantz9fe60822014-09-12 10:09:53 -070064 return ivtrace.FromContext(ctx)
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -070065}
66
Jiri Simsa5293dcb2014-05-10 09:56:38 -070067func (rt *vrt) NewServer(opts ...ipc.ServerOpt) (ipc.Server, error) {
Asim Shankar6a65d282014-06-26 12:12:50 -070068 rt.mu.Lock()
Bogdan Capritafbcfe892014-09-30 16:50:45 -070069 // Create a new RoutingID (and StreamManager) for each server, except
70 // the first one. The reasoning is for the first server to share the
71 // RoutingID (and StreamManager) with Clients.
72 //
73 // TODO(ashankar/caprita): special-casing the first server is ugly, and
74 // has diminished practical benefits since the first server in practice
75 // is the app cycle manager server. If the goal of sharing connections
76 // between Clients and Servers in the same Runtime is still important,
77 // we need to think of other ways to achieve it.
78 sm := rt.sm[0]
Asim Shankar6a65d282014-06-26 12:12:50 -070079 rt.nServers++
Bogdan Capritafbcfe892014-09-30 16:50:45 -070080 nServers := rt.nServers
Asim Shankar6a65d282014-06-26 12:12:50 -070081 rt.mu.Unlock()
Bogdan Capritafbcfe892014-09-30 16:50:45 -070082 if nServers > 1 {
83 var err error
84 sm, err = rt.NewStreamManager()
85 if err != nil {
86 return nil, fmt.Errorf("failed to create ipc/stream/Manager: %v", err)
87 }
Asim Shankar6a65d282014-06-26 12:12:50 -070088 }
Cosmos Nicolaou4e029972014-06-13 14:53:08 -070089 ns := rt.ns
Jiri Simsa5293dcb2014-05-10 09:56:38 -070090 var otherOpts []ipc.ServerOpt
91 for _, opt := range opts {
92 switch topt := opt.(type) {
Asim Shankarcc044212014-10-15 23:25:26 -070093 case options.Namespace:
Cosmos Nicolaou4e029972014-06-13 14:53:08 -070094 ns = topt
Jiri Simsa5293dcb2014-05-10 09:56:38 -070095 default:
96 otherOpts = append(otherOpts, opt)
97 }
98 }
Asim Shankar220a0152014-10-30 21:21:09 -070099 // Add the option that provides the principal to the server.
100 otherOpts = append(otherOpts, vc.LocalPrincipal{rt.principal})
Cosmos Nicolaou8246a8b2014-11-01 09:32:36 -0700101 if rt.reservedDisp != nil {
Cosmos Nicolaou6413c992014-11-06 11:00:54 -0800102 ropts := options.ReservedNameDispatcher{rt.reservedDisp}
Cosmos Nicolaou8246a8b2014-11-01 09:32:36 -0700103 otherOpts = append(otherOpts, ropts)
104 otherOpts = append(otherOpts, rt.reservedOpts...)
105 }
Ankure49a86a2014-11-11 18:52:43 -0800106
Nicolas LaCasse55a10f32014-11-26 13:25:53 -0800107 // Add the preferred protocols from the runtime if there are any.
108 if len(rt.preferredProtocols) > 0 {
109 otherOpts = append(otherOpts, iipc.PreferredServerResolveProtocols(rt.preferredProtocols))
110 }
Asim Shankarf4864f42014-11-25 18:53:05 -0800111 ctx := rt.NewContext()
Suharsh Sivakumar1b6683e2014-12-30 13:00:38 -0800112 return iipc.InternalNewServer(ctx, sm, ns, rt.traceStore, otherOpts...)
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700113}
114
115func (rt *vrt) NewStreamManager(opts ...stream.ManagerOpt) (stream.Manager, error) {
116 rid, err := naming.NewRoutingID()
117 if err != nil {
118 return nil, err
119 }
Asim Shankar6a65d282014-06-26 12:12:50 -0700120 sm := imanager.InternalNew(rid)
Bogdan Capritafbcfe892014-09-30 16:50:45 -0700121 rt.mu.Lock()
122 defer rt.mu.Unlock()
123 if rt.cleaningUp {
124 sm.Shutdown() // For whatever it's worth.
Bogdan Capritafbcfe892014-09-30 16:50:45 -0700125 return nil, errCleaningUp
126 }
127 rt.sm = append(rt.sm, sm)
Asim Shankar6a65d282014-06-26 12:12:50 -0700128 return sm, nil
Jiri Simsa5293dcb2014-05-10 09:56:38 -0700129}