From: Carl Worth Date: Wed, 7 Dec 2022 08:31:56 +0000 (-0800) Subject: Hook the server up to actually generate images X-Git-Url: https://git.cworth.org/git?p=zombocom-ai;a=commitdiff_plain;h=2d0b9c0fbe46efc3a99af9cc038fc2ab75b1cef3 Hook the server up to actually generate images And the images are even being sent back to the clients, (but they are just ignoring those events for now). --- diff --git a/index.js b/index.js index 249537f..8dadeab 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,8 @@ const fs = require('fs'); +const util = require('util'); +const execFile = util.promisify(require('child_process').execFile); + const express = require('express'); const app = express(); const http = require('http'); @@ -8,21 +11,23 @@ const { Server } = require("socket.io"); const io = new Server(server); const port = 2122; +const python_path = '/usr/bin/python3' +const generate_image_script = '/home/cworth/src/zombocom-ai/generate-image.py' const state_file = 'zombocom-state.json' -var comments; +var state; // Load comments at server startup fs.readFile(state_file, (err, data) => { if (err) - comments = []; + state = { images: [], comments: [] }; else - comments = JSON.parse(data); + state = JSON.parse(data); }); // Save comments when server is shutting down function cleanup() { - fs.writeFileSync('zombocom-state.json', JSON.stringify(comments), (error) => { + fs.writeFileSync('zombocom-state.json', JSON.stringify(state), (error) => { if (error) throw error; }) @@ -44,19 +49,41 @@ app.get('/index.html', (req, res) => { io.on('connection', (socket) => { // Replay old comments to a newly-joining client - comments.forEach((comment) => { + state.comments.forEach((comment) => { socket.emit('comment', comment) }); // When any client comments, send that to all clients (including sender) socket.on('comment', (comment) => { io.emit('comment', comment); - comments.push(comment); + state.comments.push(comment); }); // Generate an image when requested socket.on('generate', (request) => { console.log(`Generating image with code=${request['code']} and prompt=${request['prompt']}`); + async function generate_image(code, prompt) { + var promise; + if (code) { + promise = execFile(python_path, [generate_image_script, `--seed=${code}`, prompt]) + } else { + promise = execFile(python_path, [generate_image_script, prompt]) + } + const child = promise.child; + child.stdout.on('data', (data) => { + const images = JSON.parse(data); + images.forEach((image) => { + console.log(`Emitting image to clients: ${image}`); + io.emit('image', image); + state.images.push(image); + }); + }); + child.stderr.on('data', (data) => { + console.log("Error occurred during generate-image: " + data); + }); + const { stdout, stderr } = await promise; + } + generate_image(request['code'], request['prompt']); }); });