]> git.lizzy.rs Git - bspwm.git/blob - bspc.c
Transfer nodes moved via configure requests
[bspwm.git] / 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 <sys/un.h>
31 #include <unistd.h>
32 #include "helpers.h"
33 #include "common.h"
34
35 int main(int argc, char *argv[])
36 {
37         int fd;
38         struct sockaddr_un sock_address;
39         char msg[BUFSIZ], rsp[BUFSIZ];
40
41         if (argc < 2) {
42                 err("No arguments given.\n");
43         }
44
45         sock_address.sun_family = AF_UNIX;
46         char *sp;
47
48         if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
49                 err("Failed to create the socket.\n");
50         }
51
52         sp = getenv(SOCKET_ENV_VAR);
53         if (sp != NULL) {
54                 snprintf(sock_address.sun_path, sizeof(sock_address.sun_path), "%s", sp);
55         } else {
56                 char *host = NULL;
57                 int dn = 0, sn = 0;
58                 if (xcb_parse_display(NULL, &host, &dn, &sn) != 0) {
59                         snprintf(sock_address.sun_path, sizeof(sock_address.sun_path), SOCKET_PATH_TPL, host, dn, sn);
60                 }
61                 free(host);
62         }
63
64         if (connect(fd, (struct sockaddr *) &sock_address, sizeof(sock_address)) == -1) {
65                 err("Failed to connect to the socket.\n");
66         }
67
68         argc--, argv++;
69         int msg_len = 0;
70
71         for (int offset = 0, rem = sizeof(msg), n = 0; argc > 0 && rem > 0; offset += n, rem -= n, argc--, argv++) {
72                 n = snprintf(msg + offset, rem, "%s%c", *argv, 0);
73                 msg_len += n;
74         }
75
76         if (send(fd, msg, msg_len, 0) == -1) {
77                 err("Failed to send the data.\n");
78         }
79
80         int ret = EXIT_SUCCESS, nb;
81         while ((nb = recv(fd, rsp, sizeof(rsp)-1, 0)) > 0) {
82                 rsp[nb] = '\0';
83                 if (rsp[0] == FAILURE_MESSAGE[0]) {
84                         ret = EXIT_FAILURE;
85                         printf("%s", rsp + 1);
86                 } else {
87                         printf("%s", rsp);
88                 }
89                 fflush(stdout);
90         }
91
92         close(fd);
93         return ret;
94 }