Files
@ 33de0c52b059
Branch filter:
Location: DistRen/src/server/slave.c
33de0c52b059
7.7 KiB
text/plain
Slave reorganization, cleanup
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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | /*
Copyright 2009 Nathan Phillip Brink, Ethan Zonca, Matthew Orlando
This file is a part of DistRen.
DistRen is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DistRen is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with DistRen. If not, see <http://www.gnu.org/licenses/>.
*/
#include "slavefuncs.h"
#include "common/asprintf.h"
#include "common/options.h"
#include "common/protocol.h"
#include "common/remoteio.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
char curopt;
int tmp;
char *datadir;
char *server;
char *username;
char *hostname;
cfg_opt_t myopts[] = {
CFG_SIMPLE_STR("username", &username),
CFG_SIMPLE_STR("datadir", &datadir),
CFG_SIMPLE_STR("server", &server),
CFG_SIMPLE_STR("hostname", &hostname),
CFG_END()
};
cfg_t * my_cfg;
struct options_common *commonopts;
struct distrenjob *myjob; /* Structure to hold data gathered from the XML file */
struct remoteio *comm_slave;
/**
initializations
*/
datadir = NULL;
server = NULL;
username = NULL;
while(((char)-1) != (curopt = getopt(argc, argv, "u:h")))
{
if(curopt == ':')
{
fprintf(stderr, "-%c: is missing an argument\n", optopt);
return 1;
}
else if(curopt == '?')
{
fprintf(stderr, "-%c: invalid option specified\n", optopt);
return 1;
}
else if(curopt == 'h')
{
fprintf(stderr, "Usage: distrenslave [option] \nStarts a distren slave\n\t-u\tset username (run after fresh install)\n\t-h\tshow this help\n");
return 2;
}
else if(curopt == 'u')
username = strdup(optarg);
fprintf(stderr, "Putting username \"%s\" in distrenslave.conf\n", username);
conf_replace("distrenslave.conf", "!username", username);
fprintf(stderr, "Please invoke distrenslave with no arguments to run with the username you just set\n");
return 0;
}
/* Get conf data */
options_init(argc, argv, &my_cfg, myopts, "slave", &commonopts);
/* Notifies the user if there no username in .conf */
if(username == NULL || strcmp(username, "!username") == 0 ) {
fprintf(stderr, "\nPlease ensure that your username is present in distrenslave.conf\n");
return 0;
}
else
if( username != NULL || strcmp(username, "!username") != 0 )
{
// Log in the user
if(login_user(username) == 1){
fprintf(stderr, "You should now be logged into distren.\n");
}
else
{
fprintf(stderr, "Login failed, please check your username. If you have not registered, please do so on the DistRen website.\n");
return 0;
}
}
else
{
fprintf(stderr, "Please check your distrenslave.conf, it appears to be incorrectly formatted.\n");
}
fprintf(stderr, "Connecting to server...\n");
tmp = remoteio_open(&comm_slave, commonopts->remoteio, server);
if(tmp)
{
fprintf(stderr, "Error connecting to server; exiting\n");
return 1;
}
// Variables needed for main loop
int jobnum = 0;
int framenum = 0;
char *urltoTar; /* Full URL to the server-side location of job#.tgz */
char *pathtoTar; /* Full path to the location of the job#.tgz */
char *urltoOutput; /* Full URL where output is posted */
char *pathtoOutput; /* Full path to the output (rendered) file */
char *pathtoJobfile; /* Full path to the job's main file */
char *pathtoXml; /* Full path to the job's xml file */
char *outputExt; /* Output Extension (e.g., JPG) */
char *jobdatapath; /* Path to job data */
int haveWork = 0;
int quit = 0;
// Main loop
while(!quit)
{
// request work
fprintf(stderr,"Requesting work...\n");
sendSignal(comm_slave, DISTREN_REQUEST_GETWORK);
/* If we got a frame */
if(haveWork)
{
fprintf(stderr,"Got work from server...\n");
/* @TODO: Add remotio hooks */
// jobnum = remoteio_read(jobnum); /* Set jobnum from remoteio (we could use info from struct, but we need this info to download the xmlfile */
//framenum = remoteio_read(jobnum); /* Set framenum from remoteio */
fprintf(stderr, "Preparing to render frame %d in job %d\n", framenum, jobnum);
// Variable Preparation
_distren_asprintf(&jobdatapath, "job%d", jobnum);
_distren_asprintf(&urltoTar, "http://data.distren.org/job%d/job%d.tar.gz", jobnum); // Prepares URL to download from
_distren_asprintf(&pathtoTar, "%s/stor/jobdata/job%d.tar.gz", datadir, jobnum); // Prepares destination to save to
_distren_asprintf(&pathtoJobfile, "%s/%s/job.blend", datadir, jobdatapath ); // Prepares the path to the jobfile
_distren_asprintf(&urltoOutput, "http://data.distren.org/tmp/", jobdatapath ); // Prepares the URL where output is posted
_distren_asprintf(&pathtoXml, "%s/job%d/job%d.xml", datadir, jobnum ); // Prepares the path to the job's XML file
free(jobdatapath);
if(downloadTar(urltoTar, pathtoTar))
return 1;
unpackJob(pathtoTar, jobnum);
/* Parses a job's XML file, puts data in the myjob struct */
if(distrenjob_unserialize(&myjob, pathtoXml) == 0)
{
fprintf(stderr, "Well, the XML craziness may have worked. Maybe. \n");
free(pathtoXml);
/* Frees things up if it was successful. distrenjob_unserialize() really (usually) only fails if malloc'ing inside it fails */
distrenjob_free(&myjob);
}
else
{
fprintf(stderr, "XML job data parsing has failed. Please contact a developer, or try again.\n");
return 1;
}
/* Variable-fillers which require XML */
outputExt = myjob->output_format;
/* Prepares the path to the jobfile */
_distren_asprintf(&pathtoOutput, "%s/job%d/output/job%d-frame%d.%s", datadir, jobnum, jobnum, framenum, outputExt );
free(outputExt);
/* Execute blender */
if(exec_blender(pathtoJobfile, pathtoOutput, framenum))
{
fprintf(stderr,"Error running Blender. Check your installation and/or your PATH.\n");
return 1;
}
free(pathtoJobfile);
/* Post-execution */
fprintf(stderr, "Finished frame %d in job %d, uploading...\n", framenum, jobnum);
uploadOutput(pathtoOutput, urltoOutput); // @TODO: Handle return value
free(urltoOutput);
free(pathtoOutput);
// Tell the server that rendering and upload are complete of "jobjum.framenum"
char *jobFrame;
_distren_asprintf(&jobFrame, "%s.%s", jobnum, framenum);
sendExtSignal(comm_slave, DISTREN_REQUEST_DONEFRAME, jobFrame);
free(jobFrame);
}
else
fprintf(stderr,"Nothing to do. Idling...\n");
// If the server says that every frame for the last jobnum is finished, OR if the data is getting old
if(1 == 0)
{
// Note: individual frames are already deleted after uploading,
// except for ones that couldn't be uploaded
delete_jobdata(jobnum, datadir);
}
sleep(5); // Poll 5 seconds. @TODO: Remove all polling
}
fprintf(stderr,"Closing connection to server...\n");
remoteio_close(comm_slave);
return 0;
}
|