summaryrefslogtreecommitdiff
path: root/lib/network.cc
blob: cb3f94ed18f8815a2b3ad94ff4d3a07933d2f0e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            network.cc
 *
 *  Wed Nov  3 21:23:14 CET 2004
 *  Copyright  2004 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *    This file is part of MIaV.
 *
 *    MIaV 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 2 of the License, or
 *    (at your option) any later version.
 *
 *    MIaV 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 MIaV; if not, write to the Free Software
 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "network.h"

//#ifdef USE_DEBUG
//#include "efencepp.h"
//#endif /*USE_DEBUG*/

#include "info.h"

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h> 

#include <arpa/inet.h>

Network::Network(Socket *gs)
{
  s = gs;
}

Network::~Network()
{
}

int Network::write(void *buf, int size)
{
  if(!s->isConnected()) {
    //    MIaV::info->error("Write attempted to a socket not connected!");
    return -1;
  }
  int n = send(s->ssocket, buf, size, MSG_WAITALL);

  if(n == -1) {
    MIaV::info->error("An error occurred!");
  }

  return n;
}

int Network::read(void *buf, int size)
{
  if(!s->isConnected()) {
    //    MIaV::info->error("Read attempted from a socket not connected!");
    return -1;
  }
  int n = recv(s->ssocket, buf, size, MSG_WAITALL);

  if(n == -1) {
    MIaV::info->error("An error occurred!");
  }

  return n;
}

/*
struct  msghdr {
  void          *msg_name        // Optional address.
  socklen_t      msg_namelen     // Size of address.
  struct iovec  *msg_iov         // Scatter/gather array.
  int            msg_iovlen      // Members in msg_iov.
  void          *msg_control     // Ancillary data; see below.
  socklen_t      msg_controllen  // Ancillary data buffer len.
  int            msg_flags       // Flags on received message.
};
*/

int Network::sendPackage(n_header *h, void* buf, int bufsz)
{
  struct msghdr msg;
  struct iovec iovecs[2];

  if(!s->isConnected()) {
    //    MIaV::info->error("Write attempted to a socket not connected!");
    return -1;
  }

  memset(&msg, 0, sizeof(msg));
  
  msg.msg_iov = iovecs;
  msg.msg_iovlen = 2;

  msg.msg_iov[0].iov_base = h;
  msg.msg_iov[0].iov_len = sizeof(*h);

  msg.msg_iov[1].iov_base = buf;
  msg.msg_iov[1].iov_len = bufsz;

  int n = sendmsg(s->ssocket, &msg, 0);
  if(n < 0) {
    MIaV::info->error("A network error ocurred during sendPackage!");
    return -1;
  }

  return n;
}

int Network::recvPackage(n_header *h, void* buf, int bufsz)
{	
  struct msghdr msg;
  struct iovec iovecs[2];

  if(!s->isConnected()) {
    //    MIaV::info->error("Read attempted to a socket not connected!");
    return -1;
  }

  memset(&msg, 0, sizeof(msg));
  
  iovecs[0].iov_base = h;
  iovecs[0].iov_len = sizeof(*h);
  
  iovecs[1].iov_base = buf;
  iovecs[1].iov_len = bufsz;
  
  msg.msg_iov = iovecs;
  msg.msg_iovlen = 2;

  int n = recvmsg(s->ssocket, &msg, MSG_WAITALL);

  if(n < 0) {
    MIaV::info->error("A network error ocurred during recvPackage!");
    return -1;
  }

  if(msg.msg_iovlen != 2) {
    MIaV::info->error("Wrong package format!");
    return -1;
  }
  return n;
}

int Network::sendFrame(Frame *frame)
{
  frameheader_t header;
  struct msghdr msg;
  struct iovec iovecs[2];

  if(!s->isConnected()) {
    //    MIaV::info->error("Write attempted to a socket not connected!");
    return -1;
  }

  header.timecode.hour = htonl(frame->timecode.hour);
  header.timecode.min = htonl(frame->timecode.min);
  header.timecode.sec = htonl(frame->timecode.sec);
  header.timecode.frame = htonl(frame->timecode.frame);
  header.snapshot = htonl(frame->snapshot);
  header.freeze = htonl(frame->freeze);
  header.vformat = (video_format_t)htons((short unsigned int)frame->vformat);
  header.aformat = (audio_format_t)htons((short unsigned int)frame->aformat);
  header.vframesize = htonl(frame->vframesize);
  header.aframesize = htonl(frame->aframesize);

  write(&header, sizeof(header));

  char *vframe = frame->vframe;
  char *aframe = frame->aframe;

  int vframesize = frame->vframesize;
  int aframesize = frame->aframesize;

  memset(&msg, 0, sizeof(msg));
  
  msg.msg_iov = iovecs;
  msg.msg_iovlen = 2;

  msg.msg_iov[0].iov_base = vframe;
  msg.msg_iov[0].iov_len = vframesize;

  msg.msg_iov[1].iov_base = aframe;
  msg.msg_iov[1].iov_len = aframesize;

  int n = sendmsg(s->ssocket, &msg, 0);

  if(n < 0) {
    MIaV::info->error("A network error ocurred during sendPackage!");
    return -1;
  }

  return n;
}


Frame *Network::recvFrame()
{
  Frame *frame = NULL;

  frameheader_t header;
  struct msghdr msg;
  struct iovec iovecs[2];

  if(!s->isConnected()) {
    //    MIaV::info->error("Read attempted to a socket not connected!");
    return NULL;
  }

  read(&header, sizeof(header));

  int vframesize = ntohl(header.vframesize);
  int aframesize = ntohl(header.aframesize);

  char *vframe = new char[vframesize];
  char *aframe = new char[aframesize];

  memset(&msg, 0, sizeof(msg));
  
  iovecs[0].iov_base = vframe;
  iovecs[0].iov_len = vframesize;

  iovecs[1].iov_base = aframe;
  iovecs[1].iov_len = aframesize;
  
  msg.msg_iov = iovecs;
  msg.msg_iovlen = 2;

  int n = recvmsg(s->ssocket, &msg, MSG_WAITALL);

  if(n < 0) {
    MIaV::info->error("A network error ocurred during recvPackage!");
    return NULL;
  }

  if(n == 0) {
    // No more frames to receive.
    return NULL;
  }

  if(msg.msg_iovlen != 2) {
    MIaV::info->error("Wrong package format!");
    return NULL;
  }

  frame = new Frame(vframe, vframesize, (video_format_t)ntohs((short unsigned int)header.vformat),
                    aframe, aframesize, (audio_format_t)ntohs((short unsigned int)header.aformat));

  frame->timecode.hour = ntohl(header.timecode.hour);
  frame->timecode.min = ntohl(header.timecode.min);
  frame->timecode.sec = ntohl(header.timecode.sec);
  frame->timecode.frame = ntohl(header.timecode.frame);
  frame->snapshot = ntohl(header.snapshot);
  frame->freeze = ntohl(header.freeze);

  return frame;
}

int Network::sendStatus(Status *status)
{
  return 0;
}

int Network::recvStatus(Status *status)
{
  /*
  status.diskspace = 10;
  status.diskspace_max = 100;
  status.load = 80;
  status.load_max = 100;
  */
  return 0;
}