Send input to child in server program





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I made a simple server program which accepts multiple connections and awaits input from the console. It is then meant to send this input to one of the clients which are connected.



I need a way for the user to chose which client to send this input to. I'm using os.fork() to spawn children to handle connections and I'm using pipes to send data to them. I just need a way to let the user pick which child to send data to while also outputting data to the screen from the other children.



I originally thought about changing the child's stdin and inputting data to the child process separately but it seemed a bit complicated and maybe even impossible.



Is there any simple way of achieving this? Preferably without external libraries.



EDIT: Code so far:



# Imports
import socket,json,os,signal,select

# Settings
CONTROL_PORT = 12345

# Variables
pipes = {}

# Functions
def send(conn,data):
conn.send(json.dumps(data))
def recv(conn,buffer=4096):
return json.loads(conn.recv(buffer))
def handleClient(conn,addr):
print("[+] Started {} to handle conn from {}.".format(os.getpid(),addr[0]))
# Some simple handshake to verify client ___
# Loop for receiving and sending data / To Do List
# Body
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.bind(("0.0.0.0", CONTROL_PORT))
sock.listen(5)
print("[+] Control Server successfully started. Awaiting connections on {}".format(CONTROL_PORT))
pipe_id = 1
while True:
conn,addr=sock.accept()
pipes[pipe_id] = [os.pipe()]
pid = os.fork()
if pid = 0:
sock.close()
handleClient(conn,addr)
os._exit(0)
else:
pipe_id += 1
# Also finish main loop


I still have many things to finish in the code but I need to figure out how to do this first for most of them.










share|improve this question

























  • What do you got so far? Any code examples?

    – Urosh T.
    Nov 24 '18 at 20:29











  • @UroshT. I'll edit my question and add them.

    – TRSL
    Nov 24 '18 at 20:33


















0















I made a simple server program which accepts multiple connections and awaits input from the console. It is then meant to send this input to one of the clients which are connected.



I need a way for the user to chose which client to send this input to. I'm using os.fork() to spawn children to handle connections and I'm using pipes to send data to them. I just need a way to let the user pick which child to send data to while also outputting data to the screen from the other children.



I originally thought about changing the child's stdin and inputting data to the child process separately but it seemed a bit complicated and maybe even impossible.



Is there any simple way of achieving this? Preferably without external libraries.



EDIT: Code so far:



# Imports
import socket,json,os,signal,select

# Settings
CONTROL_PORT = 12345

# Variables
pipes = {}

# Functions
def send(conn,data):
conn.send(json.dumps(data))
def recv(conn,buffer=4096):
return json.loads(conn.recv(buffer))
def handleClient(conn,addr):
print("[+] Started {} to handle conn from {}.".format(os.getpid(),addr[0]))
# Some simple handshake to verify client ___
# Loop for receiving and sending data / To Do List
# Body
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.bind(("0.0.0.0", CONTROL_PORT))
sock.listen(5)
print("[+] Control Server successfully started. Awaiting connections on {}".format(CONTROL_PORT))
pipe_id = 1
while True:
conn,addr=sock.accept()
pipes[pipe_id] = [os.pipe()]
pid = os.fork()
if pid = 0:
sock.close()
handleClient(conn,addr)
os._exit(0)
else:
pipe_id += 1
# Also finish main loop


I still have many things to finish in the code but I need to figure out how to do this first for most of them.










share|improve this question

























  • What do you got so far? Any code examples?

    – Urosh T.
    Nov 24 '18 at 20:29











  • @UroshT. I'll edit my question and add them.

    – TRSL
    Nov 24 '18 at 20:33














0












0








0








I made a simple server program which accepts multiple connections and awaits input from the console. It is then meant to send this input to one of the clients which are connected.



I need a way for the user to chose which client to send this input to. I'm using os.fork() to spawn children to handle connections and I'm using pipes to send data to them. I just need a way to let the user pick which child to send data to while also outputting data to the screen from the other children.



I originally thought about changing the child's stdin and inputting data to the child process separately but it seemed a bit complicated and maybe even impossible.



Is there any simple way of achieving this? Preferably without external libraries.



EDIT: Code so far:



# Imports
import socket,json,os,signal,select

# Settings
CONTROL_PORT = 12345

# Variables
pipes = {}

# Functions
def send(conn,data):
conn.send(json.dumps(data))
def recv(conn,buffer=4096):
return json.loads(conn.recv(buffer))
def handleClient(conn,addr):
print("[+] Started {} to handle conn from {}.".format(os.getpid(),addr[0]))
# Some simple handshake to verify client ___
# Loop for receiving and sending data / To Do List
# Body
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.bind(("0.0.0.0", CONTROL_PORT))
sock.listen(5)
print("[+] Control Server successfully started. Awaiting connections on {}".format(CONTROL_PORT))
pipe_id = 1
while True:
conn,addr=sock.accept()
pipes[pipe_id] = [os.pipe()]
pid = os.fork()
if pid = 0:
sock.close()
handleClient(conn,addr)
os._exit(0)
else:
pipe_id += 1
# Also finish main loop


I still have many things to finish in the code but I need to figure out how to do this first for most of them.










share|improve this question
















I made a simple server program which accepts multiple connections and awaits input from the console. It is then meant to send this input to one of the clients which are connected.



I need a way for the user to chose which client to send this input to. I'm using os.fork() to spawn children to handle connections and I'm using pipes to send data to them. I just need a way to let the user pick which child to send data to while also outputting data to the screen from the other children.



I originally thought about changing the child's stdin and inputting data to the child process separately but it seemed a bit complicated and maybe even impossible.



Is there any simple way of achieving this? Preferably without external libraries.



EDIT: Code so far:



# Imports
import socket,json,os,signal,select

# Settings
CONTROL_PORT = 12345

# Variables
pipes = {}

# Functions
def send(conn,data):
conn.send(json.dumps(data))
def recv(conn,buffer=4096):
return json.loads(conn.recv(buffer))
def handleClient(conn,addr):
print("[+] Started {} to handle conn from {}.".format(os.getpid(),addr[0]))
# Some simple handshake to verify client ___
# Loop for receiving and sending data / To Do List
# Body
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.bind(("0.0.0.0", CONTROL_PORT))
sock.listen(5)
print("[+] Control Server successfully started. Awaiting connections on {}".format(CONTROL_PORT))
pipe_id = 1
while True:
conn,addr=sock.accept()
pipes[pipe_id] = [os.pipe()]
pid = os.fork()
if pid = 0:
sock.close()
handleClient(conn,addr)
os._exit(0)
else:
pipe_id += 1
# Also finish main loop


I still have many things to finish in the code but I need to figure out how to do this first for most of them.







python-3.x sockets server






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 24 '18 at 20:42







TRSL

















asked Nov 24 '18 at 20:11









TRSLTRSL

12




12













  • What do you got so far? Any code examples?

    – Urosh T.
    Nov 24 '18 at 20:29











  • @UroshT. I'll edit my question and add them.

    – TRSL
    Nov 24 '18 at 20:33



















  • What do you got so far? Any code examples?

    – Urosh T.
    Nov 24 '18 at 20:29











  • @UroshT. I'll edit my question and add them.

    – TRSL
    Nov 24 '18 at 20:33

















What do you got so far? Any code examples?

– Urosh T.
Nov 24 '18 at 20:29





What do you got so far? Any code examples?

– Urosh T.
Nov 24 '18 at 20:29













@UroshT. I'll edit my question and add them.

– TRSL
Nov 24 '18 at 20:33





@UroshT. I'll edit my question and add them.

– TRSL
Nov 24 '18 at 20:33












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53461955%2fsend-input-to-child-in-server-program%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53461955%2fsend-input-to-child-in-server-program%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini