source: flair-src/trunk/lib/FlairCore/src/unexported/ui_com.h@ 440

Last change on this file since 440 was 440, checked in by Sanahuja Guillaume, 3 years ago

up

File size: 2.2 KB
RevLine 
[2]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[2]4// %flair:license}
5// created: 2011/05/01
6// filename: ui_com.h
7//
8// author: Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: classe permettant la lecture et l'ecriture RT sur socket UDT
14//
15//
16/*********************************************************************/
17
18#ifndef UI_COM_H
19#define UI_COM_H
20
21#include "Thread.h"
22#include <udt.h>
23#ifdef __XENO__
24#include <native/pipe.h>
25#endif
26
[15]27namespace flair {
28namespace core {
29class Mutex;
30class Object;
[2]31}
[15]32namespace gui {
33class SendData;
34}
35}
[2]36
[15]37class ui_com : public flair::core::Thread {
38public:
39 ui_com(const flair::core::Object *parent, UDTSOCKET sock);
40 ~ui_com();
[439]41 //Send, public part
42 void Send(char *buf, ssize_t size,int ttl = -1);//ttl in ms, -1 for infinite
[15]43 ssize_t Receive(char *buf, ssize_t buf_size);
44 void AddSendData(const flair::gui::SendData *obj);
45 void UpdateSendData(const flair::gui::SendData *obj);
46 void RemoveSendData(const flair::gui::SendData *obj);
47 void UpdateDataToSendSize(void);
48 void Block(void);
49 void UnBlock(void);
50 bool ConnectionLost(void);
[234]51 void CheckConnection(void);
[15]52private:
53 ssize_t send_size;
54 char *send_buffer;
55 std::vector<const flair::gui::SendData *> data_to_send;
56 std::vector<flair::core::Time> resume_time;
57 flair::core::Mutex *send_mutex;
58 UDTSOCKET socket_fd;
59 bool connection_lost;
60 void Run(void);
61 void SendDatas(void);
[439]62 //private part, called to effectively send to udt
63 void SendNRT(char *buf, ssize_t size,int ttl);
[440]64 void PushDatasToSend(const flair::gui::SendData *data_to_send);
65 typedef struct {
66 char* buf;
67 ssize_t size;
68 uint16_t period;
69 uint16_t nb_buffering;
70 } PushedData_t;
71 std::vector<PushedData_t> PushedDatas;
[439]72
[15]73 static int compressBuffer(char *in, ssize_t in_size, char **out,
74 ssize_t *out_size, int level);
75 static int uncompressBuffer(unsigned char *in, ssize_t in_size,
76 unsigned char **out, ssize_t *out_size);
[2]77#ifdef __XENO__
[15]78 bool is_running;
79 static void *user_thread(void *arg);
80 pthread_t thread;
81 RT_PIPE pipe;
[2]82#endif
83};
84
85#endif // UI_COM_H
Note: See TracBrowser for help on using the repository browser.