#ifndef PPAPI_PROXY_SERIALIZED_STRUCTS_H_
#define PPAPI_PROXY_SERIALIZED_STRUCTS_H_
#include <string>
#include <vector>
#include "base/logging.h"
#include "base/shared_memory.h"
#include "build/build_config.h"
#include "ipc/ipc_platform_file.h"
#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_point.h"
#include "ppapi/c/pp_rect.h"
#include "ppapi/proxy/serialized_var.h"
#include "ppapi/shared_impl/host_resource.h"
class Pickle;
struct PP_FontDescription_Dev;
namespace ppapi {
namespace proxy {
class Dispatcher;
struct PPAPI_PROXY_EXPORT SerializedFontDescription {
SerializedFontDescription();
~SerializedFontDescription();
void SetFromPPFontDescription(Dispatcher* dispatcher,
const PP_FontDescription_Dev& desc,
bool source_owns_ref);
void SetToPPFontDescription(Dispatcher* dispatcher,
PP_FontDescription_Dev* desc,
bool dest_owns_ref) const;
SerializedVar face;
int32_t family;
uint32_t size;
int32_t weight;
PP_Bool italic;
PP_Bool small_caps;
int32_t letter_spacing;
int32_t word_spacing;
};
struct SerializedDirEntry {
std::string name;
bool is_dir;
};
struct PPBFlash_DrawGlyphs_Params {
PPBFlash_DrawGlyphs_Params();
~PPBFlash_DrawGlyphs_Params();
PP_Instance instance;
ppapi::HostResource image_data;
SerializedFontDescription font_desc;
uint32_t color;
PP_Point position;
PP_Rect clip;
float transformation[3][3];
PP_Bool allow_subpixel_aa;
std::vector<uint16_t> glyph_indices;
std::vector<PP_Point> glyph_advances;
};
struct PPBURLLoader_UpdateProgress_Params {
PP_Instance instance;
ppapi::HostResource resource;
int64_t bytes_sent;
int64_t total_bytes_to_be_sent;
int64_t bytes_received;
int64_t total_bytes_to_be_received;
};
struct PPPVideoCapture_Buffer {
ppapi::HostResource resource;
uint32_t size;
base::SharedMemoryHandle handle;
};
class PPAPI_PROXY_EXPORT SerializedHandle {
public:
enum Type { INVALID, SHARED_MEMORY, SOCKET, CHANNEL_HANDLE };
struct Header {
Header() : type(INVALID), size(0) {}
Header(Type type_arg, uint32_t size_arg)
: type(type_arg), size(size_arg) {
}
Type type;
uint32_t size;
};
SerializedHandle();
explicit SerializedHandle(Type type);
SerializedHandle(const base::SharedMemoryHandle& handle, uint32_t size);
SerializedHandle(const Type type,
const IPC::PlatformFileForTransit& descriptor);
Type type() const { return type_; }
bool is_shmem() const { return type_ == SHARED_MEMORY; }
bool is_socket() const { return type_ == SOCKET; }
bool is_channel_handle() const { return type_ == CHANNEL_HANDLE; }
const base::SharedMemoryHandle& shmem() const {
DCHECK(is_shmem());
return shm_handle_;
}
uint32_t size() const {
DCHECK(is_shmem());
return size_;
}
const IPC::PlatformFileForTransit& descriptor() const {
DCHECK(is_socket() || is_channel_handle());
return descriptor_;
}
void set_shmem(const base::SharedMemoryHandle& handle, uint32_t size) {
type_ = SHARED_MEMORY;
shm_handle_ = handle;
size_ = size;
descriptor_ = IPC::InvalidPlatformFileForTransit();
}
void set_socket(const IPC::PlatformFileForTransit& socket) {
type_ = SOCKET;
descriptor_ = socket;
shm_handle_ = base::SharedMemory::NULLHandle();
size_ = 0;
}
void set_channel_handle(const IPC::PlatformFileForTransit& descriptor) {
type_ = CHANNEL_HANDLE;
descriptor_ = descriptor;
shm_handle_ = base::SharedMemory::NULLHandle();
size_ = 0;
}
void set_null_shmem() {
set_shmem(base::SharedMemory::NULLHandle(), 0);
}
void set_null_socket() {
set_socket(IPC::InvalidPlatformFileForTransit());
}
void set_null_channel_handle() {
set_channel_handle(IPC::InvalidPlatformFileForTransit());
}
bool IsHandleValid() const;
Header header() const {
return Header(type_, size_);
}
static bool WriteHeader(const Header& hdr, Pickle* pickle);
static bool ReadHeader(PickleIterator* iter, Header* hdr);
private:
Type type_;
base::SharedMemoryHandle shm_handle_;
uint32_t size_;
IPC::PlatformFileForTransit descriptor_;
};
struct PPPDecryptor_Buffer {
ppapi::HostResource resource;
uint32_t size;
base::SharedMemoryHandle handle;
};
#if defined(OS_WIN)
typedef HANDLE ImageHandle;
#elif defined(OS_MACOSX) || defined(OS_ANDROID)
typedef base::SharedMemoryHandle ImageHandle;
#else
typedef int ImageHandle;
#endif
}
}
#endif