aasdk/include/f1x/aasdk/Channel/AV/IVideoServiceChannelEventHandler.hpp
2018-07-13 02:46:50 +02:00

61 lines
2.2 KiB
C++

/*
* This file is part of aasdk library project.
* Copyright (C) 2018 f1x.studio (Michal Szwaj)
*
* aasdk is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
* aasdk is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <aasdk_proto/AVChannelSetupRequestMessage.pb.h>
#include <aasdk_proto/AVChannelStartIndicationMessage.pb.h>
#include <aasdk_proto/ChannelOpenRequestMessage.pb.h>
#include <aasdk_proto/VideoFocusRequestMessage.pb.h>
#include <aasdk_proto/AVChannelStopIndicationMessage.pb.h>
#include <f1x/aasdk/Messenger/Timestamp.hpp>
#include <f1x/aasdk/Common/Data.hpp>
#include <f1x/aasdk/Error/Error.hpp>
namespace f1x
{
namespace aasdk
{
namespace channel
{
namespace av
{
class IVideoServiceChannelEventHandler
{
public:
typedef std::shared_ptr<IVideoServiceChannelEventHandler> Pointer;
IVideoServiceChannelEventHandler() = default;
virtual ~IVideoServiceChannelEventHandler() = default;
virtual void onChannelOpenRequest(const proto::messages::ChannelOpenRequest& request) = 0;
virtual void onAVChannelSetupRequest(const proto::messages::AVChannelSetupRequest& request) = 0;
virtual void onAVChannelStartIndication(const proto::messages::AVChannelStartIndication& indication) = 0;
virtual void onAVChannelStopIndication(const proto::messages::AVChannelStopIndication& indication) = 0;
virtual void onAVMediaWithTimestampIndication(messenger::Timestamp::ValueType, const common::DataConstBuffer& buffer) = 0;
virtual void onAVMediaIndication(const common::DataConstBuffer& buffer) = 0;
virtual void onVideoFocusRequest(const proto::messages::VideoFocusRequest& request) = 0;
virtual void onChannelError(const error::Error& e) = 0;
};
}
}
}
}