Files @ eb391af42d62
Branch filter:

Location: DistRen/src/server/slave.c

binki
Non-working tabletennis, better poll() resiliency, some fixups to the slave, etc.
  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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
/*
  Copyright 2010 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/multiio.h"
#include "common/options.h"
#include "common/protocol.h"
#include "common/remoteio.h"
#include "common/request.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>

#define DEBUG 0

struct slave_state
{
  /* whether or not we've gotten past the copyright line */
  short copyright_done;

  /* number of bytes that we need to read before we have a whole packet */
  size_t expectlen;
  /* whether or not we should exit */
  int quit;

  /* the server's remoteio handle */
  struct remoteio *rem;
};

static void distren_slave_remoteio_close_handle(void *blah, void *data);
static size_t distren_slave_remoteio_read_handle(struct remoteio *rem,
						 void *blah,
						 void *buf,
						 size_t len,
						 void *data);

int main(int argc, char *argv[])
{
  multiio_context_t multiio;

  struct slave_state slave_state;

  char *datadir;
  char *server;
  char *username;
  char *password;
  char *hostname;

  cfg_opt_t myopts[] = {
    CFG_SIMPLE_STR("username", &username),
    CFG_SIMPLE_STR("password", &password),
    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 - not needed anymore? */

  /**
     initializations
  */
  datadir = NULL;
  server = NULL;
  username = NULL;
  password = NULL;
  hostname = NULL;

  char curopt;
  int runBenchmark = 0;

  multiio = multiio_context_new();

  while(((char)-1) != (curopt = getopt(argc, argv, "u:rh")))
     {
       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-r\tRecalculate render power (benchmark)\n\t-h\tshow this help\n");
           return 2;
         }
       else if(curopt == 'r')
         {
           runBenchmark = 1;
           break;
         }
       else if(curopt == 'u')
         username = strdup(optarg);
         if(DEBUG)
           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, multiio);

  if(!datadir)
    {
      fprintf(stderr, "datadir not set\n");
      return 1;
    }
  if(!server)
    {
      fprintf(stderr, "server not set\n");
      return 1;
    }
  if(!username)
    {
      fprintf(stderr, "username not set\n");
      return 1;
    }
  if(!password)
    {
      fprintf(stderr, "password not set\n");
      return 1;
    }
  if(!hostname)
    {
      fprintf(stderr, "hostname not set\n");
      return 1;
    }

  /* Notifies the user if there no username in .conf */
  if(checkUsername(username))
    return 1;
  if(!strncmp(password, "!password",10))
    {
      fprintf(stderr, "You haven't specified a password. Please edit distrenslave.conf!\n");
      return 1;
    }

  // Variables needed for main loop
  int jobnum = 0;
  int framenum = 0;
  int slavekey = atoi(username); // @TODO: Make this more friendly

  char *urltoTar;      /* Full URL to the server-side location of job#.tgz */
  char *pathtoTar;     /* Full path to the location of the job#.tgz */
  char *pathtoTardir;

  char *urltoOutput;   /* Full URL where output is posted */
  char *pathtoOutput;  /* Full path to the output (rendered) file */
  char *pathtoOutdir;  /* Full path to output directory */
  char *pathtoRenderOutput;  /* Contains blender framenum placeholder */

  char *urltoJobfile; /* No longer used, url to .blend on server */

  char *pathtoJob;     /* Full path to job data folder */
  char *pathtoJobfile; /* Full path to the job's main file */
  char *outputExt = "jpg";     /* Output Extension (e.g., JPG) */

  int haveWork = 0;

  int benchmarkTime = 0;
  int renderPower = 0;

  slave_state.copyright_done = 0;
  slave_state.expectlen = 0;
  slave_state.quit = 0;

  fprintf(stderr, "Connecting to server...\n");
  if(remoteio_open_server(&slave_state.rem, commonopts->remoteio, &distren_slave_remoteio_read_handle, &slave_state, &distren_slave_remoteio_close_handle, server))
    {
      fprintf(stderr, "Error connecting to server; exiting\n");
      return 1;
    }
  greet_server(slave_state.rem);


  fprintf(stderr,"\nDistRen Slave Pre-Alpha %s\n- Experimental build: Use at your own risk!\n\n", PACKAGE_VERSION);

  // @TODO: add call to function to force recalc if $render_power == ""
  if(runBenchmark)
    {
      if(slaveBenchmark(datadir, &benchmarkTime, &renderPower))
        {
          fprintf(stderr,"Benchmark failed! Exiting.\n");
          return 1;
        }
      else
        {
          fprintf(stderr,"Benchmark successful, time taken was %d seconds, giving you a render power of %d.\n",
                  benchmarkTime, renderPower);
          _web_setrenderpower(slavekey, password, renderPower);
          return 0;
        }
    }

  if(!DEBUG)
    fprintf(stderr, "Running..");


  // Main loop
  while(!slave_state.quit)
    {
      multiio_poll(multiio);

      if(slave_state.quit)
	break;

    // request work
    fprintf(stderr, "Waiting...\n");
    haveWork = getwork(slave_state.rem, &jobnum, &framenum);

    /* 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 */
        // outputExt = remotio)read(outputExt); /* Set output extension from remotio */

        if(DEBUG)
          fprintf(stderr, "Preparing to render frame %d in job %d\n", framenum, jobnum);

        prepareJobPaths(jobnum, framenum, outputExt, datadir, &urltoTar, &pathtoTar,&pathtoTardir,&pathtoJob, &pathtoJobfile, &urltoJobfile, &urltoOutput, &pathtoOutput, &pathtoRenderOutput, &pathtoOutdir);

        int dlret = downloadTar(urltoTar, pathtoTar);
        if(dlret == 0)
          fprintf(stderr,"Data retrieved successfully!\n");
        else if(dlret == 3){
          resetframe(slave_state.rem, jobnum, framenum);  // Unassign the frame on the server so other slaves can render it
          return 0; // ouput dir doesn't exist
        }
        else
          if(DEBUG)
            fprintf(stderr,"Using existing tarball %s...\n", pathtoTar);

        // Decompress tarball
        struct stat jbuffer;
        int jstatus = stat(pathtoTar, &jbuffer);
        if(jstatus == -1){
          if(DEBUG)
            fprintf(stderr,"Main job file does not exist, extracting...\n");

          // If error unpacking tarball
          if(unpackJob(pathtoJob, pathtoTar)){
            resetframe(slave_state.rem, jobnum, framenum);  // Unassign the frame on the server so other slaves can render it
            fprintf(stderr,"Error decompressing tarball! Exiting.\n");
            return 1;
          }
        }

        /* ignore return because directory may exist already */
        if(DEBUG)
          fprintf(stderr,"Creating output directory %s\n", pathtoOutdir);
        mkdir(pathtoOutdir, 0700);

        if(DEBUG)
          fprintf(stderr,"Marking frame started on server... ");
        _web_startframe(slavekey, password, jobnum, framenum);

        /* Execute blender */
        if(DEBUG){
          fprintf(stderr,"Executing blender on file %s\n", pathtoJobfile);
          fprintf(stderr,"Directing output to file %s\n", pathtoOutput);
        }

        /* Execute blender */
        if(exec_blender(pathtoJobfile, pathtoOutput, framenum))
          {
            fprintf(stderr,"Error running Blender. Check your installation and/or your PATH.\n");
            resetframe(slave_state.rem, jobnum, framenum);  // Unassign the frame on the server so other slaves can render it
            return 1;
          }
        free(pathtoJobfile);
        pathtoJobfile = NULL;

        struct stat buffer;
        int fstatus = stat(pathtoOutput, &buffer);
        if(fstatus == -1){
          fprintf(stderr,"*** %s doesn't exist! Scene may not have camera, or your blender installation is not working.\n", pathtoOutput);
          resetframe(slave_state.rem, jobnum, framenum);  // Unassign the frame on the server so other slaves can render it
          return 1;
        }
        else{
          /* Post-execution */
          if(DEBUG)
            fprintf(stderr, "Finished frame %d in job %d, uploading...\n", framenum, jobnum);
          else
            fprintf(stderr,"Finished frame.\n");
          uploadOutput(pathtoOutput, urltoOutput, jobnum, framenum, slavekey); // @TODO: Handle return value

          free(urltoOutput);
          free(pathtoOutput);
          urltoOutput = NULL;
          pathtoOutput = NULL;

          // Tell the server that rendering and upload are complete of "jobjum.framenum"
          finishframe(slave_state.rem, jobnum, framenum);

  free(urltoTar);
  free(pathtoTar);
  free(pathtoTardir);
  free(pathtoJob);
  free(pathtoJobfile);
  free(urltoJobfile);
  free(urltoOutput);
  free(pathtoRenderOutput);
  free(pathtoOutdir);

        }
     }
    else{
      if(DEBUG)
        fprintf(stderr,"Nothing to do. Idling...\n");
      else
        fprintf(stderr,".");

      /**
	 to prevent infinite loops from burning CPU, we just sleep(1) ;-)
      */
      sleep(1);
    }

    /* @TODO: 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, "Quitting...\n");

  free(my_cfg);
  free(datadir);
  fprintf(stderr, "Goodbye!\n");
  return 0;
}

static void distren_slave_remoteio_close_handle(void *blah, void *data)
{
  struct slave_state *slave_state = (struct slave_state *)data;

  fprintf(stderr, "Lost connection to server\n");

  slave_state->quit = 1;
}

static size_t distren_slave_remoteio_read_handle(struct remoteio *rem,
						 void *blah,
						 void *buf,
						 size_t len,
						 void *data)
{
  struct slave_state *slave_state = (struct slave_state *)data;

  struct distren_request *req, *my_req;
  void *req_data, *my_req_data;

  size_t to_return;

  size_t counter;

  /* to_return shall record how much of buf we've eaten already */
  to_return = 0;

  if(!slave_state->copyright_done)
    {
      putchar('\n');
      /* we have to flush through data until we hit a newline */
      for(counter = 0;
	  counter + slave_state->expectlen < 256 && counter < len && ((char *)buf)[counter] != '\n';
	  counter ++)
	{
	  putchar(((char *)buf)[counter]);
	}
      slave_state->expectlen += counter - 1;
      if(slave_state->expectlen == 256)
	{
	  fprintf(stderr, "\nThe server's greeting is too long. Maybe it speaks a foreign language\n");
	  slave_state->quit = 1;
	}
      if(counter < len && ((char *)buf)[counter] == '\n')
	{
	  putchar('\n');
	  counter ++;
	  slave_state->expectlen = 0;
	  slave_state->copyright_done = 1;
	  to_return += counter;
	  buf += counter;
	  len -= counter;
	}
      if(!slave_state->copyright_done)
	return to_return;
    }

  while(1)
    {
      /* if we haven't read a full header yet: */
      if(!slave_state->expectlen)
	{
	  if(len < sizeof(struct distren_request))
	    return 0;

	  /* figure out how much we need to read in before we can get anywhere */
	  if(distren_request_new_fromdata(&req, buf, len))
	    {
	      fprintf(stderr, "Failing to interpret data from server, exiting\n");
	      slave_state->quit = 1;
	      return 0;
	    }
	  slave_state->expectlen = sizeof(struct distren_request) + req->len;
	  distren_request_free(req);
	}

      if(slave_state->expectlen
	    && slave_state->expectlen <= len)
	{
	  distren_request_new_fromdata(&req, buf, len);
	  req_data = buf + sizeof(struct distren_request);

	  switch((enum distren_request_type)req->type)
	    {
	    case DISTREN_REQUEST_VERSION:
	      fprintf(stderr, "The server runs ");
	      for(counter = 0; counter < req->len; counter ++)
		putc(((char *)req_data)[counter], stderr);
	      putc('\n', stderr);
	      break;

	    case DISTREN_REQUEST_PING:
	      fprintf(stderr, "PONG ! :-D\n");

	      distren_request_poing(&my_req, &my_req_data, 0, req_data, req->len);
	      remoteio_write(slave_state->rem, &my_req, sizeof(struct distren_request));
	      remoteio_write(slave_state->rem, &my_req_data, req->len);
	      distren_request_free_with_data(my_req, my_req_data);
	      break;

	    case DISTREN_REQUEST_DISCONNECT:
	      /* hopefully this ends up being a useful message... */
	      printf("You have been disconnected: \"");
	      for(counter = 0; counter < req->len; counter ++)
		putchar(((char *)buf)[counter]);
	      putchar('"');
	      putchar('\n');
	      break;

	    default:
	      fprintf(stderr, "something\n");
	      break;
	    }

	  distren_request_free(req);
	  slave_state->expectlen = 0;

	  counter = req->len + sizeof(struct distren_request);

	  len -= counter;
	  buf += counter;
	  to_return += counter;
	}
    }

  return to_return;
}