2009-12-26 11:33:27 -06:00
|
|
|
#ifndef _MY_SERVICE_H
|
|
|
|
#define _MY_SERVICE_H
|
2009-01-17 04:13:46 -06:00
|
|
|
|
2009-12-26 11:33:27 -06:00
|
|
|
#include <QList>
|
2009-11-08 02:20:34 -06:00
|
|
|
|
2009-12-26 11:33:27 -06:00
|
|
|
#include "../common/protocol.pb.h"
|
2009-02-12 11:07:19 -06:00
|
|
|
|
2009-12-26 11:33:27 -06:00
|
|
|
#define MAX_PKT_HDR_SIZE 1536
|
|
|
|
#define MAX_STREAM_NAME_SIZE 64
|
2009-02-12 11:07:19 -06:00
|
|
|
|
2009-12-26 11:33:27 -06:00
|
|
|
class AbstractPort;
|
2009-02-12 11:07:19 -06:00
|
|
|
|
2009-12-26 11:33:27 -06:00
|
|
|
class MyService: public OstProto::OstService
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyService();
|
|
|
|
virtual ~MyService();
|
2009-10-14 10:16:56 -05:00
|
|
|
|
2009-12-26 11:33:27 -06:00
|
|
|
/* Methods provided by the service */
|
|
|
|
virtual void getPortIdList(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::Void* request,
|
|
|
|
::OstProto::PortIdList* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void getPortConfig(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::PortIdList* request,
|
|
|
|
::OstProto::PortConfigList* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void getStreamIdList(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::PortId* request,
|
|
|
|
::OstProto::StreamIdList* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void getStreamConfig(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::StreamIdList* request,
|
|
|
|
::OstProto::StreamConfigList* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void addStream(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::StreamIdList* request,
|
|
|
|
::OstProto::Ack* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void deleteStream(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::StreamIdList* request,
|
|
|
|
::OstProto::Ack* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void modifyStream(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::StreamConfigList* request,
|
|
|
|
::OstProto::Ack* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void startTx(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::PortIdList* request,
|
|
|
|
::OstProto::Ack* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void stopTx(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::PortIdList* request,
|
|
|
|
::OstProto::Ack* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void startCapture(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::PortIdList* request,
|
|
|
|
::OstProto::Ack* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void stopCapture(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::PortIdList* request,
|
|
|
|
::OstProto::Ack* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void getCaptureBuffer(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::PortId* request,
|
|
|
|
::OstProto::CaptureBuffer* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void getStats(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::PortIdList* request,
|
|
|
|
::OstProto::PortStatsList* response,
|
|
|
|
::google::protobuf::Closure* done);
|
|
|
|
virtual void clearStats(::google::protobuf::RpcController* controller,
|
|
|
|
const ::OstProto::PortIdList* request,
|
|
|
|
::OstProto::Ack* response,
|
|
|
|
::google::protobuf::Closure* done);
|
2009-10-14 10:16:56 -05:00
|
|
|
|
2009-12-26 11:33:27 -06:00
|
|
|
private:
|
|
|
|
/*! AbstractPort::id() and index into portInfo[] are same! */
|
|
|
|
QList<AbstractPort*> portInfo;
|
2009-11-08 02:20:34 -06:00
|
|
|
|
2009-12-26 11:33:27 -06:00
|
|
|
};
|
2009-02-22 01:53:14 -06:00
|
|
|
|
2009-12-26 11:33:27 -06:00
|
|
|
#endif
|