ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtdaemon.C
Revision: 1.8
Committed: Wed Aug 18 00:34:27 2004 UTC (19 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-6_0, rel-4_8, rel-4_9, rel-4_4, rel-4_6, rel-4_7, rel-4_0, rel-4_1, rel-4_2, rel-4_3, rel-5_5, rel-5_4, rel-5_7, rel-5_1, rel-5_0, rel-5_3, rel-5_2, rel-5_9, rel-5_8, rel-3_8
Changes since 1.7: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*--------------------------------*-C-*---------------------------------*
2 * File: rxvtdaemon.C
3 *----------------------------------------------------------------------*
4 *
5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2003-2004 Marc Lehmann <pcg@goof.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *----------------------------------------------------------------------*/
22
23 #include <cstdlib>
24 #include <cstring>
25 #include <cstdio>
26
27 #include <inttypes.h>
28 #include <unistd.h>
29 #include <sys/utsname.h>
30 #include <limits.h>
31
32 #include "rxvtdaemon.h"
33
34 char *rxvt_connection::unix_sockname ()
35 {
36 char name[PATH_MAX];
37 char *path = getenv ("RXVT_SOCKET");
38
39 if (!path)
40 {
41 struct utsname u;
42 uname (&u);
43
44 path = getenv ("HOME");
45 snprintf (name, PATH_MAX, "%s/.rxvt-unicode-%s",
46 path ? path : "/tmp",
47 u.nodename);
48
49 path = name;
50 }
51
52 return strdup (path);
53 }
54
55 void rxvt_connection::send (const char *data, int len)
56 {
57 uint8_t s[2];
58
59 s[0] = len >> 8; s[1] = len;
60
61 write (fd, s, 2);
62 write (fd, data, len);
63 }
64
65 void rxvt_connection::send (const char *data)
66 {
67 send (data, strlen (data));
68 }
69
70 bool rxvt_connection::recv (auto_str &data, int *len)
71 {
72 uint8_t s[2];
73 int l;
74
75 if (read (fd, s, 2) != 2)
76 return false;
77
78 l = (s[0] << 8) + s[1];
79 if (l > 4096)
80 return false;
81
82 if (len)
83 *len = l;
84
85 data = new char[l + 1];
86
87 if (!data)
88 return false;
89
90 if (read (fd, data, l) != l)
91 return false;
92
93 data[l] = 0;
94
95 return true;
96 }
97
98 void rxvt_connection::send (int data)
99 {
100 uint8_t s[4];
101
102 s[0] = data >> 24; s[1] = data >> 16; s[2] = data >> 8; s[3] = data;
103
104 write (fd, s, 4);
105 }
106
107 bool rxvt_connection::recv (int &data)
108 {
109 uint8_t s[4];
110
111 if (read (fd, s, 4) != 4)
112 return false;
113
114 data = (((((s[0] << 8) | s[1]) << 8) | s[2]) << 8) | s[3];
115
116 return true;
117 }
118
119
120