summaryrefslogtreecommitdiff
path: root/openEMS/matlab/Add2Queue.m
blob: a80bdc9468e6cdd192d039eae5da7960735b13f3 (plain)
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
function [queue] = Add2Queue(queue,func_name, func_args, varargin)
% function [queue] = Add2Queue(queue,func_name, func_args, varargin)
%
% Use this function to add a funtion to the queue.
%
% For more details see: InitQueue
%
% See also: InitQueue, FinishQueue, ResultsQueue, RunOpenEMS
%
% openEMS matlab interface
% -----------------------
% author: Thorsten Liebig

if isfield(queue,'jobs')
    jobnum = numel(queue.jobs)+1;
else
    jobnum = 1;
end

running = numel(queue.jobs_finished) - sum(queue.jobs_finished);

while (running>=queue.maxThreads)
    [queue running] = CheckQueue(queue);
end


if (queue.verbose>=1)
    disp(['Add2Queue: Job #' num2str(jobnum) ' starting...']);
end

queue.jobs_finished(jobnum) = 0;

queue.jobs{jobnum}.argsfile = [tempname '.mat'];
save(queue.jobs{jobnum}.argsfile,'func_args');

queue.jobs{jobnum}.nargout = nargout(func_name);
queue.jobs{jobnum}.outargsfile = [tempname '.mat'];

queue.jobs{jobnum}.command = [queue.bin queue.bin_options ' "load(''' queue.jobs{jobnum}.argsfile ''');' ...
    queue.DependPath ...
    'err=[];' ...
    'try;' ...
    '[outargs{1:' num2str(queue.jobs{jobnum}.nargout) '}]=' func_name '(func_args{:});' ...
    'catch err;outargs=0;end;' ...
    'save(''-V7'',''' queue.jobs{jobnum}.outargsfile ''',''outargs'',''err'');' ...
    'exit;"'];

[queue.jobs{jobnum}.pid, queue.jobs{jobnum}.filenames] = queue_addProcess( queue.jobs{jobnum}.command );