mirror of
https://github.com/gowvp/gb28181.git
synced 2026-04-22 15:07:10 +08:00
259 lines
9.0 KiB
Python
259 lines
9.0 KiB
Python
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
"""Client and server classes corresponding to protobuf-defined services."""
|
|
import grpc
|
|
import warnings
|
|
|
|
import analysis_pb2 as analysis__pb2
|
|
|
|
GRPC_GENERATED_VERSION = '1.76.0'
|
|
GRPC_VERSION = grpc.__version__
|
|
_version_not_supported = False
|
|
|
|
try:
|
|
from grpc._utilities import first_version_is_lower
|
|
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
except ImportError:
|
|
_version_not_supported = True
|
|
|
|
if _version_not_supported:
|
|
raise RuntimeError(
|
|
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
+ ' but the generated code in analysis_pb2_grpc.py depends on'
|
|
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
)
|
|
|
|
|
|
class AnalysisServiceStub(object):
|
|
"""Missing associated documentation comment in .proto file."""
|
|
|
|
def __init__(self, channel):
|
|
"""Constructor.
|
|
|
|
Args:
|
|
channel: A grpc.Channel.
|
|
"""
|
|
self.StartCamera = channel.unary_unary(
|
|
'/analysis.AnalysisService/StartCamera',
|
|
request_serializer=analysis__pb2.StartCameraRequest.SerializeToString,
|
|
response_deserializer=analysis__pb2.StartCameraResponse.FromString,
|
|
_registered_method=True)
|
|
self.StopCamera = channel.unary_unary(
|
|
'/analysis.AnalysisService/StopCamera',
|
|
request_serializer=analysis__pb2.StopCameraRequest.SerializeToString,
|
|
response_deserializer=analysis__pb2.StopCameraResponse.FromString,
|
|
_registered_method=True)
|
|
self.GetStatus = channel.unary_unary(
|
|
'/analysis.AnalysisService/GetStatus',
|
|
request_serializer=analysis__pb2.StatusRequest.SerializeToString,
|
|
response_deserializer=analysis__pb2.StatusResponse.FromString,
|
|
_registered_method=True)
|
|
|
|
|
|
class AnalysisServiceServicer(object):
|
|
"""Missing associated documentation comment in .proto file."""
|
|
|
|
def StartCamera(self, request, context):
|
|
"""启动摄像头分析
|
|
"""
|
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
context.set_details('Method not implemented!')
|
|
raise NotImplementedError('Method not implemented!')
|
|
|
|
def StopCamera(self, request, context):
|
|
"""停止摄像头分析
|
|
"""
|
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
context.set_details('Method not implemented!')
|
|
raise NotImplementedError('Method not implemented!')
|
|
|
|
def GetStatus(self, request, context):
|
|
"""获取服务状态
|
|
"""
|
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
context.set_details('Method not implemented!')
|
|
raise NotImplementedError('Method not implemented!')
|
|
|
|
|
|
def add_AnalysisServiceServicer_to_server(servicer, server):
|
|
rpc_method_handlers = {
|
|
'StartCamera': grpc.unary_unary_rpc_method_handler(
|
|
servicer.StartCamera,
|
|
request_deserializer=analysis__pb2.StartCameraRequest.FromString,
|
|
response_serializer=analysis__pb2.StartCameraResponse.SerializeToString,
|
|
),
|
|
'StopCamera': grpc.unary_unary_rpc_method_handler(
|
|
servicer.StopCamera,
|
|
request_deserializer=analysis__pb2.StopCameraRequest.FromString,
|
|
response_serializer=analysis__pb2.StopCameraResponse.SerializeToString,
|
|
),
|
|
'GetStatus': grpc.unary_unary_rpc_method_handler(
|
|
servicer.GetStatus,
|
|
request_deserializer=analysis__pb2.StatusRequest.FromString,
|
|
response_serializer=analysis__pb2.StatusResponse.SerializeToString,
|
|
),
|
|
}
|
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
'analysis.AnalysisService', rpc_method_handlers)
|
|
server.add_generic_rpc_handlers((generic_handler,))
|
|
server.add_registered_method_handlers('analysis.AnalysisService', rpc_method_handlers)
|
|
|
|
|
|
# This class is part of an EXPERIMENTAL API.
|
|
class AnalysisService(object):
|
|
"""Missing associated documentation comment in .proto file."""
|
|
|
|
@staticmethod
|
|
def StartCamera(request,
|
|
target,
|
|
options=(),
|
|
channel_credentials=None,
|
|
call_credentials=None,
|
|
insecure=False,
|
|
compression=None,
|
|
wait_for_ready=None,
|
|
timeout=None,
|
|
metadata=None):
|
|
return grpc.experimental.unary_unary(
|
|
request,
|
|
target,
|
|
'/analysis.AnalysisService/StartCamera',
|
|
analysis__pb2.StartCameraRequest.SerializeToString,
|
|
analysis__pb2.StartCameraResponse.FromString,
|
|
options,
|
|
channel_credentials,
|
|
insecure,
|
|
call_credentials,
|
|
compression,
|
|
wait_for_ready,
|
|
timeout,
|
|
metadata,
|
|
_registered_method=True)
|
|
|
|
@staticmethod
|
|
def StopCamera(request,
|
|
target,
|
|
options=(),
|
|
channel_credentials=None,
|
|
call_credentials=None,
|
|
insecure=False,
|
|
compression=None,
|
|
wait_for_ready=None,
|
|
timeout=None,
|
|
metadata=None):
|
|
return grpc.experimental.unary_unary(
|
|
request,
|
|
target,
|
|
'/analysis.AnalysisService/StopCamera',
|
|
analysis__pb2.StopCameraRequest.SerializeToString,
|
|
analysis__pb2.StopCameraResponse.FromString,
|
|
options,
|
|
channel_credentials,
|
|
insecure,
|
|
call_credentials,
|
|
compression,
|
|
wait_for_ready,
|
|
timeout,
|
|
metadata,
|
|
_registered_method=True)
|
|
|
|
@staticmethod
|
|
def GetStatus(request,
|
|
target,
|
|
options=(),
|
|
channel_credentials=None,
|
|
call_credentials=None,
|
|
insecure=False,
|
|
compression=None,
|
|
wait_for_ready=None,
|
|
timeout=None,
|
|
metadata=None):
|
|
return grpc.experimental.unary_unary(
|
|
request,
|
|
target,
|
|
'/analysis.AnalysisService/GetStatus',
|
|
analysis__pb2.StatusRequest.SerializeToString,
|
|
analysis__pb2.StatusResponse.FromString,
|
|
options,
|
|
channel_credentials,
|
|
insecure,
|
|
call_credentials,
|
|
compression,
|
|
wait_for_ready,
|
|
timeout,
|
|
metadata,
|
|
_registered_method=True)
|
|
|
|
|
|
class HealthStub(object):
|
|
"""Missing associated documentation comment in .proto file."""
|
|
|
|
def __init__(self, channel):
|
|
"""Constructor.
|
|
|
|
Args:
|
|
channel: A grpc.Channel.
|
|
"""
|
|
self.Check = channel.unary_unary(
|
|
'/analysis.Health/Check',
|
|
request_serializer=analysis__pb2.HealthCheckRequest.SerializeToString,
|
|
response_deserializer=analysis__pb2.HealthCheckResponse.FromString,
|
|
_registered_method=True)
|
|
|
|
|
|
class HealthServicer(object):
|
|
"""Missing associated documentation comment in .proto file."""
|
|
|
|
def Check(self, request, context):
|
|
"""Missing associated documentation comment in .proto file."""
|
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
context.set_details('Method not implemented!')
|
|
raise NotImplementedError('Method not implemented!')
|
|
|
|
|
|
def add_HealthServicer_to_server(servicer, server):
|
|
rpc_method_handlers = {
|
|
'Check': grpc.unary_unary_rpc_method_handler(
|
|
servicer.Check,
|
|
request_deserializer=analysis__pb2.HealthCheckRequest.FromString,
|
|
response_serializer=analysis__pb2.HealthCheckResponse.SerializeToString,
|
|
),
|
|
}
|
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
'analysis.Health', rpc_method_handlers)
|
|
server.add_generic_rpc_handlers((generic_handler,))
|
|
server.add_registered_method_handlers('analysis.Health', rpc_method_handlers)
|
|
|
|
|
|
# This class is part of an EXPERIMENTAL API.
|
|
class Health(object):
|
|
"""Missing associated documentation comment in .proto file."""
|
|
|
|
@staticmethod
|
|
def Check(request,
|
|
target,
|
|
options=(),
|
|
channel_credentials=None,
|
|
call_credentials=None,
|
|
insecure=False,
|
|
compression=None,
|
|
wait_for_ready=None,
|
|
timeout=None,
|
|
metadata=None):
|
|
return grpc.experimental.unary_unary(
|
|
request,
|
|
target,
|
|
'/analysis.Health/Check',
|
|
analysis__pb2.HealthCheckRequest.SerializeToString,
|
|
analysis__pb2.HealthCheckResponse.FromString,
|
|
options,
|
|
channel_credentials,
|
|
insecure,
|
|
call_credentials,
|
|
compression,
|
|
wait_for_ready,
|
|
timeout,
|
|
metadata,
|
|
_registered_method=True)
|