-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathlocal.c
84 lines (65 loc) · 1.26 KB
/
local.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include "local.h"
#ifdef LOCAL_ENABLE
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#ifdef LINUX_BUILD
#include <pty.h>
#endif
#ifdef OSX_BUILD
#include <util.h>
#endif
#endif
int pid;
int flags;
int fd;
int local_open(char *a,char *b,char *c) {
#ifdef LOCAL_ENABLE
pid = forkpty(&fd,0,0,0);
if(pid == -1) {
printf("forkpty failed\n");
}
flags = fcntl(fd,F_GETFL,0);
fcntl(fd, F_SETFL, flags | O_NONBLOCK);
char *termset = "TERM=xterm";
putenv(termset);
printf("fd: %d",fd);
if(pid == 0) {
char args[3];
char *shell = getenv("SHELL");
args[0] = shell;
args[1] ="";
args[2] = 0;
execl("/bin/bash","bash",NULL);
printf("forked\n");
return 1;
}
printf("fd: %d\n",fd);
#endif
return 1;
}
int local_write(char *buffer,int len) {
#ifdef LOCAL_ENABLE
return write(fd,buffer,len);
#endif
}
int local_read(char *buffer,int len) {
#ifdef LOCAL_ENABLE
int res = read(fd,buffer,len);
if((res == -1) && ((errno == EAGAIN) || (errno == EWOULDBLOCK))) {
return 0;
}
return res;
#endif
}
int local_resize(int cols,int rows) {
#ifdef LOCAL_ENABLE
struct winsize size = { rows, cols, 0, 0 };
ioctl(fd, TIOCSWINSZ, &size);
#endif
}
int local_close() {
#ifdef LOCAL_ENABLE
close(fd);
#endif
}