ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtdaemon.C
Revision: 1.7
Committed: Thu Jul 29 15:25:43 2004 UTC (19 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_7, rel-3_6, rel-3_5, rel-3_4, rel-3_3
Changes since 1.6: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.6 /*--------------------------------*-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 pcg 1.1 #include <cstdlib>
24     #include <cstring>
25 pcg 1.4 #include <cstdio>
26 pcg 1.1
27 root 1.7 #include <inttypes.h>
28 pcg 1.3 #include <unistd.h>
29     #include <sys/utsname.h>
30     #include <limits.h>
31    
32 pcg 1.1 #include "rxvtdaemon.h"
33    
34 pcg 1.3 char *rxvt_connection::unix_sockname ()
35 pcg 1.1 {
36 pcg 1.3 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-%s",
46     path ? path : "/tmp",
47     u.nodename);
48    
49     path = name;
50     }
51    
52     return strdup (path);
53 pcg 1.1 }
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 pcg 1.2 bool rxvt_connection::recv (auto_str &data, int *len)
71 pcg 1.1 {
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 pcg 1.5 s[0] = data >> 24; s[1] = data >> 16; s[2] = data >> 8; s[3] = data;
103 pcg 1.1
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