Jack2  1.9.9
JackSocket.h
1 /*
2 Copyright (C) 2004-2008 Grame
3 
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
8 
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
13 
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 
18 */
19 
20 #ifndef __JackSocket__
21 #define __JackSocket__
22 
23 #include <sys/types.h>
24 #include <sys/un.h>
25 #include <sys/socket.h>
26 #include <sys/ioctl.h>
27 #include <sys/time.h>
28 #include <arpa/inet.h>
29 #include <errno.h>
30 #include <unistd.h>
31 
32 #include "JackChannel.h"
33 
34 namespace Jack
35 {
36 
42 {
43 
44  private:
45 
46  int fSocket;
47  int fTimeOut;
48 
49  public:
50 
51  JackClientSocket():JackClientRequestInterface(), fSocket(-1), fTimeOut(0)
52  {}
53  JackClientSocket(int socket);
54 
55  int Connect(const char* dir, const char* name, int which);
56  int Close();
57  int Read(void* data, int len);
58  int Write(void* data, int len);
59  int GetFd()
60  {
61  return fSocket;
62  }
63  void SetReadTimeOut(long sec);
64  void SetWriteTimeOut(long sec);
65 
66  void SetNonBlocking(bool onoff);
67 };
68 
73 #define SOCKET_MAX_NAME_SIZE 256
74 
75 
77 {
78 
79  private:
80 
81  int fSocket;
82  char fName[SOCKET_MAX_NAME_SIZE];
83 
84  public:
85 
86  JackServerSocket(): fSocket( -1)
87  {}
89  {}
90 
91  int Bind(const char* dir, const char* name, int which);
92  JackClientSocket* Accept();
93  int Close();
94  int GetFd()
95  {
96  return fSocket;
97  }
98 };
99 
100 } // end of namespace
101 
102 #endif
103 
Client socket.
Definition: JackSocket.h:41