]> git.lizzy.rs Git - bspwm.git/blob - src/bspc.c
5dd807cd0da00ab34fae1d80f4633398f7d168c2
[bspwm.git] / src / bspc.c
1 /* Copyright (c) 2012, Bastien Dejean
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this
8  *    list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  *    this list of conditions and the following disclaimer in the documentation
11  *    and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <sys/stat.h>
28 #include <sys/types.h>
29 #include <sys/socket.h>
30 #include <poll.h>
31 #include <sys/un.h>
32 #include <unistd.h>
33 #include "helpers.h"
34 #include "common.h"
35
36 int main(int argc, char *argv[])
37 {
38         int sock_fd;
39         struct sockaddr_un sock_address;
40         char msg[BUFSIZ], rsp[BUFSIZ];
41
42         if (argc < 2) {
43                 err("No arguments given.\n");
44         }
45
46         sock_address.sun_family = AF_UNIX;
47         char *sp;
48
49         if ((sock_fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
50                 err("Failed to create the socket.\n");
51         }
52
53         sp = getenv(SOCKET_ENV_VAR);
54         if (sp != NULL) {
55                 snprintf(sock_address.sun_path, sizeof(sock_address.sun_path), "%s", sp);
56         } else {
57                 char *host = NULL;
58                 int dn = 0, sn = 0;
59                 if (xcb_parse_display(NULL, &host, &dn, &sn) != 0) {
60                         snprintf(sock_address.sun_path, sizeof(sock_address.sun_path), SOCKET_PATH_TPL, host, dn, sn);
61                 }
62                 free(host);
63         }
64
65         if (connect(sock_fd, (struct sockaddr *) &sock_address, sizeof(sock_address)) == -1) {
66                 err("Failed to connect to the socket.\n");
67         }
68
69         argc--, argv++;
70         int msg_len = 0;
71
72         for (int offset = 0, rem = sizeof(msg), n = 0; argc > 0 && rem > 0; offset += n, rem -= n, argc--, argv++) {
73                 n = snprintf(msg + offset, rem, "%s%c", *argv, 0);
74                 msg_len += n;
75         }
76
77         if (send(sock_fd, msg, msg_len, 0) == -1) {
78                 err("Failed to send the data.\n");
79         }
80
81         int ret = EXIT_SUCCESS, nb;
82
83         struct pollfd fds[] = {
84                 {sock_fd, POLLIN, 0},
85                 {STDOUT_FILENO, POLLHUP, 0},
86         };
87
88         while (poll(fds, 2, -1) > 0) {
89                 if (fds[0].revents & POLLIN) {
90                         if ((nb = recv(sock_fd, rsp, sizeof(rsp)-1, 0)) > 0) {
91                                 rsp[nb] = '\0';
92                                 if (rsp[0] == FAILURE_MESSAGE[0]) {
93                                         ret = EXIT_FAILURE;
94                                         fprintf(stderr, "%s", rsp + 1);
95                                         fflush(stderr);
96                                 } else {
97                                         fprintf(stdout, "%s", rsp);
98                                         fflush(stdout);
99                                 }
100                         } else {
101                                 break;
102                         }
103                 }
104                 if (fds[1].revents & (POLLERR | POLLHUP)) {
105                         break;
106                 }
107         }
108
109         close(sock_fd);
110         return ret;
111 }