mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 14:41:25 +00:00
Most of the times each class has an associated constant so allows to be able to define the constant at declaration time. Signed-off-by: Frediano Ziglio <freddy77@gmail.com> Acked-by: Julien Ropé <jrope@gmail.com>
79 lines
2.4 KiB
C++
79 lines
2.4 KiB
C++
/*
|
|
Copyright (C) 2009-2016 Red Hat, Inc.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef COMMON_GRAPHICS_CHANNEL_H_
|
|
#define COMMON_GRAPHICS_CHANNEL_H_
|
|
|
|
#include "red-channel.h"
|
|
#include "red-channel-client.h"
|
|
|
|
#include "push-visibility.h"
|
|
|
|
#define COMMON_CLIENT_TIMEOUT (NSEC_PER_SEC * 30)
|
|
|
|
class CommonGraphicsChannel: public RedChannel
|
|
{
|
|
public:
|
|
bool get_during_target_migrate() const
|
|
{
|
|
return during_target_migrate;
|
|
}
|
|
|
|
void set_during_target_migrate(bool value)
|
|
{
|
|
during_target_migrate = value;
|
|
}
|
|
protected:
|
|
using RedChannel::RedChannel;
|
|
|
|
private:
|
|
bool during_target_migrate = false; /* TRUE when the client that is associated with the channel
|
|
is during migration. Turned off when the vm is started.
|
|
The flag is used to avoid sending messages that are artifacts
|
|
of the transition from stopped vm to loaded vm (e.g., recreation
|
|
of the primary surface) */
|
|
};
|
|
|
|
enum {
|
|
RED_PIPE_ITEM_TYPE_INVAL_ONE = RED_PIPE_ITEM_TYPE_CHANNEL_BASE,
|
|
|
|
RED_PIPE_ITEM_TYPE_COMMON_LAST
|
|
};
|
|
|
|
class CommonGraphicsChannelClient: public RedChannelClient
|
|
{
|
|
enum { CHANNEL_RECEIVE_BUF_SIZE = 1024 };
|
|
uint8_t recv_buf[CHANNEL_RECEIVE_BUF_SIZE];
|
|
|
|
public:
|
|
using RedChannelClient::RedChannelClient;
|
|
|
|
protected:
|
|
virtual uint8_t *alloc_recv_buf(uint16_t type, uint32_t size) override;
|
|
virtual void release_recv_buf(uint16_t type, uint32_t size, uint8_t *msg) override;
|
|
virtual bool config_socket() override;
|
|
};
|
|
|
|
/* pipe item used to release a specific cached item on the client */
|
|
struct RedCachePipeItem final: public RedPipeItemNum<RED_PIPE_ITEM_TYPE_INVAL_ONE> {
|
|
SpiceMsgDisplayInvalOne inval_one;
|
|
};
|
|
|
|
#include "pop-visibility.h"
|
|
|
|
#endif /* COMMON_GRAPHICS_CHANNEL_H_ */
|