Blame


1 44ee1bac 2021-01-27 op /*
2 d2b941f3 2021-01-28 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 44ee1bac 2021-01-27 op *
4 44ee1bac 2021-01-27 op * Permission to use, copy, modify, and distribute this software for any
5 44ee1bac 2021-01-27 op * purpose with or without fee is hereby granted, provided that the above
6 44ee1bac 2021-01-27 op * copyright notice and this permission notice appear in all copies.
7 44ee1bac 2021-01-27 op *
8 44ee1bac 2021-01-27 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 44ee1bac 2021-01-27 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 44ee1bac 2021-01-27 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 44ee1bac 2021-01-27 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 44ee1bac 2021-01-27 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 44ee1bac 2021-01-27 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 44ee1bac 2021-01-27 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 44ee1bac 2021-01-27 op */
16 44ee1bac 2021-01-27 op
17 44ee1bac 2021-01-27 op #include <errno.h>
18 346f28ee 2021-02-02 op #include <fcntl.h>
19 44ee1bac 2021-01-27 op #include <string.h>
20 44ee1bac 2021-01-27 op
21 44ee1bac 2021-01-27 op #include "gmid.h"
22 44ee1bac 2021-01-27 op
23 44ee1bac 2021-01-27 op int
24 44ee1bac 2021-01-27 op starts_with(const char *str, const char *prefix)
25 44ee1bac 2021-01-27 op {
26 44ee1bac 2021-01-27 op size_t i;
27 44ee1bac 2021-01-27 op
28 44ee1bac 2021-01-27 op if (prefix == NULL)
29 44ee1bac 2021-01-27 op return 0;
30 44ee1bac 2021-01-27 op
31 44ee1bac 2021-01-27 op for (i = 0; prefix[i] != '\0'; ++i)
32 44ee1bac 2021-01-27 op if (str[i] != prefix[i])
33 44ee1bac 2021-01-27 op return 0;
34 44ee1bac 2021-01-27 op return 1;
35 44ee1bac 2021-01-27 op }
36 44ee1bac 2021-01-27 op
37 44ee1bac 2021-01-27 op int
38 44ee1bac 2021-01-27 op ends_with(const char *str, const char *sufx)
39 44ee1bac 2021-01-27 op {
40 44ee1bac 2021-01-27 op size_t i, j;
41 44ee1bac 2021-01-27 op
42 44ee1bac 2021-01-27 op i = strlen(str);
43 44ee1bac 2021-01-27 op j = strlen(sufx);
44 44ee1bac 2021-01-27 op
45 44ee1bac 2021-01-27 op if (j > i)
46 44ee1bac 2021-01-27 op return 0;
47 44ee1bac 2021-01-27 op
48 44ee1bac 2021-01-27 op i -= j;
49 44ee1bac 2021-01-27 op for (j = 0; str[i] != '\0'; i++, j++)
50 44ee1bac 2021-01-27 op if (str[i] != sufx[j])
51 44ee1bac 2021-01-27 op return 0;
52 44ee1bac 2021-01-27 op return 1;
53 44ee1bac 2021-01-27 op }
54 44ee1bac 2021-01-27 op
55 44ee1bac 2021-01-27 op ssize_t
56 44ee1bac 2021-01-27 op filesize(int fd)
57 44ee1bac 2021-01-27 op {
58 44ee1bac 2021-01-27 op ssize_t len;
59 44ee1bac 2021-01-27 op
60 44ee1bac 2021-01-27 op if ((len = lseek(fd, 0, SEEK_END)) == -1)
61 44ee1bac 2021-01-27 op return -1;
62 44ee1bac 2021-01-27 op if (lseek(fd, 0, SEEK_SET) == -1)
63 44ee1bac 2021-01-27 op return -1;
64 44ee1bac 2021-01-27 op return len;
65 44ee1bac 2021-01-27 op }
66 bcf5d929 2021-02-01 op
67 346f28ee 2021-02-02 op void
68 346f28ee 2021-02-02 op mark_nonblock(int fd)
69 346f28ee 2021-02-02 op {
70 346f28ee 2021-02-02 op int flags;
71 346f28ee 2021-02-02 op
72 346f28ee 2021-02-02 op if ((flags = fcntl(fd, F_GETFL)) == -1)
73 346f28ee 2021-02-02 op fatal("fcntl(F_GETFL): %s", strerror(errno));
74 346f28ee 2021-02-02 op if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
75 346f28ee 2021-02-02 op fatal("fcntl(F_SETFL): %s", strerror(errno));
76 346f28ee 2021-02-02 op }
77 346f28ee 2021-02-02 op
78 bcf5d929 2021-02-01 op char *
79 bcf5d929 2021-02-01 op absolutify_path(const char *path)
80 bcf5d929 2021-02-01 op {
81 bcf5d929 2021-02-01 op char *wd, *r;
82 bcf5d929 2021-02-01 op
83 bcf5d929 2021-02-01 op if (*path == '/') {
84 bcf5d929 2021-02-01 op if ((r = strdup(path)) == NULL)
85 bcf5d929 2021-02-01 op err(1, "strdup");
86 bcf5d929 2021-02-01 op return r;
87 bcf5d929 2021-02-01 op }
88 bcf5d929 2021-02-01 op
89 bcf5d929 2021-02-01 op wd = getcwd(NULL, 0);
90 bcf5d929 2021-02-01 op if (asprintf(&r, "%s/%s", wd, path) == -1)
91 bcf5d929 2021-02-01 op err(1, "asprintf");
92 bcf5d929 2021-02-01 op free(wd);
93 bcf5d929 2021-02-01 op return r;
94 bcf5d929 2021-02-01 op }