level2_pb2_grpc.py 7.41 KB
Newer Older
Wei Shoulin's avatar
Wei Shoulin committed
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
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
import grpc

from . import level2_pb2 as msc_dot_level2_dot_level2__pb2


class Level2SrvStub(object):
  # missing associated documentation comment in .proto file
  pass

  def __init__(self, channel):
    """Constructor.

    Args:
      channel: A grpc.Channel.
    """
    self.Find = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/Find',
        request_serializer=msc_dot_level2_dot_level2__pb2.FindLevel2Req.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.FindLevel2Resp.FromString,
        )
    self.FindCatalog = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/FindCatalog',
        request_serializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogReq.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogResp.FromString,
        )
Wei Shoulin's avatar
Wei Shoulin committed
27
28
29
30
31
    self.FindCatalogFile = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/FindCatalogFile',
        request_serializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogReq.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.FindCatalogFileResp.FromString,
        )
Wei Shoulin's avatar
Wei Shoulin committed
32
33
34
35
36
37
38
39
40
    self.Get = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/Get',
        request_serializer=msc_dot_level2_dot_level2__pb2.GetLevel2Req.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.GetLevel2Resp.FromString,
        )
    self.Write = channel.stream_unary(
        '/dfs.msc.level2.Level2Srv/Write',
        request_serializer=msc_dot_level2_dot_level2__pb2.WriteLevel2Req.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.WriteLevel2Resp.FromString,
Wei Shoulin's avatar
bugs    
Wei Shoulin committed
41
        )
Wei Shoulin's avatar
Wei Shoulin committed
42
43
44
45
46
47
48
49
50
51
    self.UpdateQc2Status = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/UpdateQc2Status',
        request_serializer=msc_dot_level2_dot_level2__pb2.UpdateQc2StatusReq.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.UpdateQc2StatusResp.FromString,
        )
    self.UpdateProcStatus = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/UpdateProcStatus',
        request_serializer=msc_dot_level2_dot_level2__pb2.UpdateProcStatusReq.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.UpdateProcStatusResp.FromString,
        )
Wei Shoulin's avatar
bugs    
Wei Shoulin committed
52
53
54
55
56
    self.DeleteCatalogByLevel2Id = channel.unary_unary(
        '/dfs.msc.level2.Level2Srv/DeleteCatalogByLevel2Id',
        request_serializer=msc_dot_level2_dot_level2__pb2.DeleteCatalogByLevel2IdReq.SerializeToString,
        response_deserializer=msc_dot_level2_dot_level2__pb2.DeleteCatalogByLevel2IdResp.FromString,
        )
Wei Shoulin's avatar
Wei Shoulin committed
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76


class Level2SrvServicer(object):
  # missing associated documentation comment in .proto file
  pass

  def Find(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

  def FindCatalog(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

Wei Shoulin's avatar
Wei Shoulin committed
77
78
79
80
81
82
83
  def FindCatalogFile(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

Wei Shoulin's avatar
Wei Shoulin committed
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
  def Get(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

  def Write(self, request_iterator, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

  def UpdateQc2Status(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

  def UpdateProcStatus(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

Wei Shoulin's avatar
bugs    
Wei Shoulin committed
112
113
114
115
116
117
118
  def DeleteCatalogByLevel2Id(self, request, context):
    # missing associated documentation comment in .proto file
    pass
    context.set_code(grpc.StatusCode.UNIMPLEMENTED)
    context.set_details('Method not implemented!')
    raise NotImplementedError('Method not implemented!')

Wei Shoulin's avatar
Wei Shoulin committed
119
120
121
122
123
124
125
126
127
128
129
130
131

def add_Level2SrvServicer_to_server(servicer, server):
  rpc_method_handlers = {
      'Find': grpc.unary_unary_rpc_method_handler(
          servicer.Find,
          request_deserializer=msc_dot_level2_dot_level2__pb2.FindLevel2Req.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.FindLevel2Resp.SerializeToString,
      ),
      'FindCatalog': grpc.unary_unary_rpc_method_handler(
          servicer.FindCatalog,
          request_deserializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogReq.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogResp.SerializeToString,
      ),
Wei Shoulin's avatar
Wei Shoulin committed
132
133
134
135
136
      'FindCatalogFile': grpc.unary_unary_rpc_method_handler(
          servicer.FindCatalogFile,
          request_deserializer=msc_dot_level2_dot_level2__pb2.FindLevel2CatalogReq.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.FindCatalogFileResp.SerializeToString,
      ),
Wei Shoulin's avatar
Wei Shoulin committed
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
      'Get': grpc.unary_unary_rpc_method_handler(
          servicer.Get,
          request_deserializer=msc_dot_level2_dot_level2__pb2.GetLevel2Req.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.GetLevel2Resp.SerializeToString,
      ),
      'Write': grpc.stream_unary_rpc_method_handler(
          servicer.Write,
          request_deserializer=msc_dot_level2_dot_level2__pb2.WriteLevel2Req.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.WriteLevel2Resp.SerializeToString,
      ),
      'UpdateQc2Status': grpc.unary_unary_rpc_method_handler(
          servicer.UpdateQc2Status,
          request_deserializer=msc_dot_level2_dot_level2__pb2.UpdateQc2StatusReq.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.UpdateQc2StatusResp.SerializeToString,
      ),
      'UpdateProcStatus': grpc.unary_unary_rpc_method_handler(
          servicer.UpdateProcStatus,
          request_deserializer=msc_dot_level2_dot_level2__pb2.UpdateProcStatusReq.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.UpdateProcStatusResp.SerializeToString,
      ),
Wei Shoulin's avatar
bugs    
Wei Shoulin committed
157
158
159
160
161
      'DeleteCatalogByLevel2Id': grpc.unary_unary_rpc_method_handler(
          servicer.DeleteCatalogByLevel2Id,
          request_deserializer=msc_dot_level2_dot_level2__pb2.DeleteCatalogByLevel2IdReq.FromString,
          response_serializer=msc_dot_level2_dot_level2__pb2.DeleteCatalogByLevel2IdResp.SerializeToString,
      ),
Wei Shoulin's avatar
Wei Shoulin committed
162
163
164
165
  }
  generic_handler = grpc.method_handlers_generic_handler(
      'dfs.msc.level2.Level2Srv', rpc_method_handlers)
  server.add_generic_rpc_handlers((generic_handler,))