-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
158 lines (126 loc) · 2.56 KB
/
main.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#include <stdio.h>
#include <stdlib.h>
#include <pwd.h>
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include <sys/utsname.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "main.h"
#include "parse.h"
#include "background.h"
char *homepath;
int homepathlength = 0;
int array[1000];
char *directoryname;
char * procname[1000];
int procstatus[1000];
int proccount[1000];
char hostname[1024];
struct passwd *pw;
char hist[100][100];
int size=0;
int parentpid;
int childpid;
void display_promt()
{
int pathlength = 0;
int i =0;
int flag = 0;
directoryname = getcwd(NULL,0);
for(i=0;i<homepathlength;i++)
if(directoryname[i]!= homepath[i])
{
flag = 1;
pathlength++;
break;
}
if(i >= homepathlength)
printf("<%s%s@%s%s:~%s%s%s>","\x1B[1;34m",pw->pw_name,hostname,"\x1B[0m","\x1B[1;32m",&directoryname[i],"\x1B[0m");
else
printf("<%s%s@%s%s:%s%s%s>","\x1B[1;34m",pw->pw_name,hostname,"\x1B[0m","\x1B[1;32m",directoryname,"\x1B[0m");
return;
}
void get_commands() {
int count;
count = 0;
char *bufferinput;
bufferinput = '\0';
int flag;
flag = 0;
size_t buffersize;
buffersize = 0;
int chk;
chk = 0;
getline(&bufferinput, &buffersize, stdin);
char i;
int len = strlen(bufferinput);
for(i=bufferinput[0];i!= 0;i++)
{
if(i == 72){
chk = 1;
count++;
}
}
if(*bufferinput=='\0' || *bufferinput == '\n') { flag = 1; return;}
if(*bufferinput != '\0' && *bufferinput != '\n' && chk != 1)
{
parse_command(bufferinput);
}
else
{
int index;
if(len == 4)
index = 0;
else
index = (len-4)/3;
//printf("%s\n",hist[size - index - 1]);
parse_command(hist[size - index - 1]);
}
return;
}
void check_bg()
{
int i;
i =0;
pid_t bg;
int status;
while((bg=waitpid(-1, &status, WNOHANG))>0)
{
for(i=0; i<1000; i++)
{
if(array[i]==bg)
{
printf("%s with pid %d exited \n",procname[i],bg);
array[i] = 100000000;
break;
}
}
}
return;
}
int main()
{
parentpid=getpid();
int i;
for (i=0;i<1000;i++)
array[i] = -10000;
homepath = getcwd(NULL,0);
homepathlength = strlen(homepath);
uid_t uid;
uid = geteuid();
pw = getpwuid(uid);
hostname[1023] = '\0';
gethostname(hostname, 1023);
signal(SIGINT, SIG_IGN);
signal(SIGSTOP, SIG_IGN);
signal(SIGTSTP, SIG_IGN);
while(1)
{
check_bg();
display_promt();
get_commands();
}
return 0;
}