jobs.c
author Lluís Batlle <viric@viric.name>
Fri, 06 Mar 2015 23:26:50 +0100
changeset 337 43079a99351e
parent 335 b4a5d9544836
child 346 90545736507e
permissions -rw-r--r--
Increasing version to 0.7.5.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49
09bb8a5583e9 Added the license.
lbatlle@npdl268.bpo.hp.com
parents: 44
diff changeset
     1
/*
09bb8a5583e9 Added the license.
lbatlle@npdl268.bpo.hp.com
parents: 44
diff changeset
     2
    Task Spooler - a task queue system for the unix user
335
b4a5d9544836 Updating messages to 0.7.4.
viric
parents: 334
diff changeset
     3
    Copyright (C) 2007-2013  LluĂ­s Batlle i Rossell
49
09bb8a5583e9 Added the license.
lbatlle@npdl268.bpo.hp.com
parents: 44
diff changeset
     4
09bb8a5583e9 Added the license.
lbatlle@npdl268.bpo.hp.com
parents: 44
diff changeset
     5
    Please find the license in the provided COPYING file.
09bb8a5583e9 Added the license.
lbatlle@npdl268.bpo.hp.com
parents: 44
diff changeset
     6
*/
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
     7
#include <stdlib.h>
44
4dcf05746ece Better include files.
viric@llimona
parents: 42
diff changeset
     8
#include <unistd.h>
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
     9
#include <stdio.h>
44
4dcf05746ece Better include files.
viric@llimona
parents: 42
diff changeset
    10
#include <string.h>
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
    11
#include <sys/time.h>
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
    12
#include <time.h>
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
    13
#include "main.h"
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
    14
219
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
    15
/* The list will access them */
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
    16
int busy_slots = 0;
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
    17
int max_slots = 1;
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
    18
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
    19
struct Notify
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
    20
{
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
    21
    int socket;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
    22
    int jobid;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
    23
    struct Notify *next;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
    24
};
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
    25
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
    26
/* Globals */
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
    27
static struct Job *firstjob = 0;
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
    28
static struct Job *first_finished_job = 0;
44
4dcf05746ece Better include files.
viric@llimona
parents: 42
diff changeset
    29
static int jobids = 0;
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
    30
/* This is used for dependencies from jobs
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
    31
 * already out of the queue */
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
    32
static int last_errorlevel = 0; /* Before the first job, let's consider
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
    33
                                   a good previous result */
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
    34
/* We need this to handle well "-d" after a "-nf" run */
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
    35
static int last_finished_jobid;
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
    36
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
    37
static struct Notify *first_notify = 0;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
    38
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
    39
int max_jobs;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
    40
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
    41
static struct Job * get_job(int jobid);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
    42
void notify_errorlevel(struct Job *p);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
    43
5
bc5e251418f3 The LIST_LINEs are outputed by the client.
viric@llimona
parents: 3
diff changeset
    44
static void send_list_line(int s, const char * str)
bc5e251418f3 The LIST_LINEs are outputed by the client.
viric@llimona
parents: 3
diff changeset
    45
{
bc5e251418f3 The LIST_LINEs are outputed by the client.
viric@llimona
parents: 3
diff changeset
    46
    struct msg m;
bc5e251418f3 The LIST_LINEs are outputed by the client.
viric@llimona
parents: 3
diff changeset
    47
21
a797f96a022f Lines for list doesn't have limit.
viric@llimona
parents: 20
diff changeset
    48
    /* Message */
5
bc5e251418f3 The LIST_LINEs are outputed by the client.
viric@llimona
parents: 3
diff changeset
    49
    m.type = LIST_LINE;
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
    50
    m.u.size = strlen(str) + 1;
5
bc5e251418f3 The LIST_LINEs are outputed by the client.
viric@llimona
parents: 3
diff changeset
    51
21
a797f96a022f Lines for list doesn't have limit.
viric@llimona
parents: 20
diff changeset
    52
    send_msg(s, &m);
a797f96a022f Lines for list doesn't have limit.
viric@llimona
parents: 20
diff changeset
    53
a797f96a022f Lines for list doesn't have limit.
viric@llimona
parents: 20
diff changeset
    54
    /* Send the line */
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
    55
    send_bytes(s, str, m.u.size);
5
bc5e251418f3 The LIST_LINEs are outputed by the client.
viric@llimona
parents: 3
diff changeset
    56
}
bc5e251418f3 The LIST_LINEs are outputed by the client.
viric@llimona
parents: 3
diff changeset
    57
53
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    58
static void send_urgent_ok(int s)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    59
{
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    60
    struct msg m;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    61
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    62
    /* Message */
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    63
    m.type = URGENT_OK;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    64
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    65
    send_msg(s, &m);
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    66
}
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    67
66
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    68
static void send_swap_jobs_ok(int s)
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    69
{
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    70
    struct msg m;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    71
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    72
    /* Message */
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    73
    m.type = SWAP_JOBS_OK;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    74
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    75
    send_msg(s, &m);
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    76
}
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
    77
120
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
    78
static struct Job * find_previous_job(const struct Job *final)
53
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    79
{
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    80
    struct Job *p;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    81
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    82
    /* Show Queued or Running jobs */
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    83
    p = firstjob;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    84
    while(p != 0)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    85
    {
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    86
        if (p->next == final)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    87
            return p;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    88
        p = p->next;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    89
    }
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    90
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    91
    return 0;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    92
}
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
    93
22
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
    94
static struct Job * findjob(int jobid)
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
    95
{
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
    96
    struct Job *p;
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
    97
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
    98
    /* Show Queued or Running jobs */
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
    99
    p = firstjob;
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   100
    while(p != 0)
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   101
    {
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   102
        if (p->jobid == jobid)
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   103
            return p;
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   104
        p = p->next;
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   105
    }
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   106
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   107
    return 0;
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   108
}
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   109
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   110
static struct Job * findjob_holding_client()
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   111
{
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   112
    struct Job *p;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   113
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   114
    /* Show Queued or Running jobs */
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   115
    p = firstjob;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   116
    while(p != 0)
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   117
    {
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   118
        if (p->state == HOLDING_CLIENT)
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   119
            return p;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   120
        p = p->next;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   121
    }
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   122
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   123
    return 0;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   124
}
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   125
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   126
static struct Job * find_finished_job(int jobid)
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   127
{
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   128
    struct Job *p;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   129
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   130
    /* Show Queued or Running jobs */
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   131
    p = first_finished_job;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   132
    while(p != 0)
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   133
    {
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   134
        if (p->jobid == jobid)
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   135
            return p;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   136
        p = p->next;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   137
    }
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   138
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   139
    return 0;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   140
}
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   141
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   142
static int count_not_finished_jobs()
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   143
{
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   144
    int count=0;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   145
    struct Job *p;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   146
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   147
    /* Show Queued or Running jobs */
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   148
    p = firstjob;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   149
    while(p != 0)
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   150
    {
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   151
        ++count;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   152
        p = p->next;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   153
    }
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   154
    return count;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   155
}
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   156
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   157
static void add_notify_errorlevel_to(struct Job *job, int jobid)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   158
{
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   159
    int *p;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   160
    int newsize = (job->notify_errorlevel_to_size + 1)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   161
        * sizeof(int);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   162
    p = (int *) realloc(job->notify_errorlevel_to,
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   163
            newsize);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   164
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   165
    if (p == 0)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   166
        error("Cannot allocate more memory for notify_errorlist_to for jobid %i,"
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   167
                " having already %i elements",
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   168
                job->jobid, job->notify_errorlevel_to_size);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   169
    
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   170
    job->notify_errorlevel_to = p;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   171
    job->notify_errorlevel_to_size += 1;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   172
    job->notify_errorlevel_to[job->notify_errorlevel_to_size - 1] = jobid;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   173
}
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   174
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   175
void s_mark_job_running(int jobid)
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   176
{
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   177
    struct Job *p;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   178
    p = findjob(jobid);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   179
    if (!p)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   180
        error("Cannot mark the jobid %i RUNNING.", jobid);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   181
    p->state = RUNNING;
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   182
}
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   183
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   184
/* -1 means nothing awaken, otherwise returns the jobid awaken */
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   185
int wake_hold_client()
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   186
{
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   187
    struct Job *p;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   188
    p = findjob_holding_client();
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   189
    if (p)
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   190
    {
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   191
        p->state = QUEUED;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   192
        return p->jobid;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   193
    }
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   194
    return -1;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   195
}
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   196
63
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
   197
const char * jstate2string(enum Jobstate s)
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   198
{
120
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
   199
    const char * jobstate;
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   200
    switch(s)
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   201
    {
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   202
        case QUEUED:
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   203
            jobstate = "queued";
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   204
            break;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   205
        case RUNNING:
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   206
            jobstate = "running";
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   207
            break;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   208
        case FINISHED:
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   209
            jobstate = "finished";
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   210
            break;
156
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   211
        case SKIPPED:
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   212
            jobstate = "skipped";
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   213
            break;
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   214
        case HOLDING_CLIENT:
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   215
            jobstate = "skipped";
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   216
            break;
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   217
    }
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   218
    return jobstate;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   219
}
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   220
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   221
void s_list(int s)
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   222
{
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   223
    struct Job *p;
117
db479ef293d3 Making "-l" not to trunc the commands.
viric@llimona
parents: 114
diff changeset
   224
    char *buffer;
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   225
114
bd123730295d times() reporting finished.
viric@mandarina
parents: 113
diff changeset
   226
    /* Times:   0.00/0.00/0.00 - 4+4+4+2 = 14*/ 
117
db479ef293d3 Making "-l" not to trunc the commands.
viric@llimona
parents: 114
diff changeset
   227
    buffer = joblist_headers();
5
bc5e251418f3 The LIST_LINEs are outputed by the client.
viric@llimona
parents: 3
diff changeset
   228
    send_list_line(s,buffer);
117
db479ef293d3 Making "-l" not to trunc the commands.
viric@llimona
parents: 114
diff changeset
   229
    free(buffer);
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   230
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   231
    /* Show Queued or Running jobs */
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   232
    p = firstjob;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   233
    while(p != 0)
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   234
    {
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   235
        if (p->state != HOLDING_CLIENT)
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   236
        {
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   237
            buffer = joblist_line(p);
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   238
            send_list_line(s,buffer);
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   239
            free(buffer);
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   240
        }
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   241
        p = p->next;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   242
    }
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   243
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   244
    p = first_finished_job;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   245
120
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
   246
    /* Show Finished jobs */
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
   247
    while(p != 0)
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   248
    {
120
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
   249
        buffer = joblist_line(p);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
   250
        send_list_line(s,buffer);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
   251
        free(buffer);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
   252
        p = p->next;
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   253
    }
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   254
}
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   255
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   256
static struct Job * newjobptr()
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   257
{
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   258
    struct Job *p;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   259
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   260
    if (firstjob == 0)
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   261
    {
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   262
        firstjob = (struct Job *) malloc(sizeof(*firstjob));
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   263
        firstjob->next = 0;
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   264
        firstjob->output_filename = 0;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   265
        firstjob->command = 0;
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   266
        return firstjob;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   267
    }
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   268
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   269
    p = firstjob;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   270
    while(p->next != 0)
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   271
        p = p->next;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   272
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   273
    p->next = (struct Job *) malloc(sizeof(*p));
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   274
    p->next->next = 0;
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   275
    p->next->output_filename = 0;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   276
    p->next->command = 0;
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   277
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   278
    return p->next;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   279
}
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   280
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   281
/* Returns -1 if no last job id found */
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   282
static int find_last_jobid_in_queue(int neglect_jobid)
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   283
{
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   284
    struct Job *p;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   285
    int last_jobid = -1;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   286
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   287
    p = firstjob;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   288
    while(p != 0)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   289
    {
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   290
        if (p->jobid != neglect_jobid &&
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   291
            p->jobid > last_jobid)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   292
            last_jobid = p->jobid;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   293
        p = p->next;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   294
    }
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   295
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   296
    return last_jobid;
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   297
}
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   298
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   299
/* Returns -1 if no last job id found */
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   300
static int find_last_stored_jobid_finished()
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   301
{
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   302
    struct Job *p;
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   303
    int last_jobid = -1;
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   304
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   305
    p = first_finished_job;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   306
    while(p != 0)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   307
    {
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   308
        if (p->jobid > last_jobid)
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   309
            last_jobid = p->jobid;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   310
        p = p->next;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   311
    }
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   312
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   313
    return last_jobid;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   314
}
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   315
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   316
/* Returns job id or -1 on error */
18
af4898956964 Now commands of any-length are accepted.
viric@llimona
parents: 9
diff changeset
   317
int s_newjob(int s, struct msg *m)
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   318
{
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   319
    struct Job *p;
18
af4898956964 Now commands of any-length are accepted.
viric@llimona
parents: 9
diff changeset
   320
    int res;
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   321
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   322
    p = newjobptr();
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   323
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   324
    p->jobid = jobids++;
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   325
    if (count_not_finished_jobs() < max_jobs)
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   326
        p->state = QUEUED;
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   327
    else
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   328
        p->state = HOLDING_CLIENT;
315
2b3ed8fdfb12 Implementing the num_slots for newjob in the messages, but the server still does
viric <viriketo@gmail.com>
parents: 289
diff changeset
   329
    p->num_slots = m->u.newjob.num_slots;
27
886bdb2f4632 Fixed the Output File information in the list.
viric@llimona
parents: 26
diff changeset
   330
    p->store_output = m->u.newjob.store_output;
55
678ca291d545 Now the '-nf' doesn't leave a job in 'finished' state.
viric@llimona
parents: 54
diff changeset
   331
    p->should_keep_finished = m->u.newjob.should_keep_finished;
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   332
    p->notify_errorlevel_to = 0;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   333
    p->notify_errorlevel_to_size = 0;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   334
    p->do_depend = m->u.newjob.do_depend;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   335
    p->depend_on = -1; /* By default. May be overriden in the next conditions */
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   336
    if (m->u.newjob.do_depend == 1)
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   337
    {
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   338
        /* Depend on the last queued job. */
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   339
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   340
        /* As we already have 'p' in the queue,
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   341
         * neglect it during the find_last_jobid_in_queue() */
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   342
        if (m->u.newjob.depend_on == -1)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   343
        {
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   344
            p->depend_on = find_last_jobid_in_queue(p->jobid);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   345
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   346
            /* We don't trust the last jobid in the queue (running or queued)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   347
             * if it's not the last added job. In that case, let
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   348
             * the next control flow handle it as if it could not
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   349
             * do_depend on any still queued job. */
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   350
            if (last_finished_jobid > p->depend_on)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   351
                p->depend_on = -1;
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   352
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   353
            /* If it's queued still without result, let it know
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   354
             * its result to p when it finishes. */
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   355
            if (p->depend_on != -1)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   356
            {
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   357
                struct Job *depended_job;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   358
                depended_job = findjob(p->depend_on);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   359
                if (depended_job != 0)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   360
                    add_notify_errorlevel_to(depended_job, p->jobid);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   361
                else
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   362
                    warning("The jobid %i is queued to do_depend on the jobid %i"
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   363
                        " suddenly non existant in the queue", p->jobid,
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   364
                        p->depend_on);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   365
            }
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   366
            else /* Otherwise take the finished job, or the last_errorlevel */
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   367
            {
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   368
                if (m->u.newjob.depend_on == -1)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   369
                {
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   370
                    int ljobid = find_last_stored_jobid_finished();
317
290b5aa53061 Making the number of slots appear on '-i'.
viric <viriketo@gmail.com>
parents: 316
diff changeset
   371
                    p->depend_on = ljobid;
290b5aa53061 Making the number of slots appear on '-i'.
viric <viriketo@gmail.com>
parents: 316
diff changeset
   372
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   373
                    /* If we have a newer result stored, use it */
317
290b5aa53061 Making the number of slots appear on '-i'.
viric <viriketo@gmail.com>
parents: 316
diff changeset
   374
                    /* NOTE:
290b5aa53061 Making the number of slots appear on '-i'.
viric <viriketo@gmail.com>
parents: 316
diff changeset
   375
                     *   Reading this now, I don't know how ljobid can be
290b5aa53061 Making the number of slots appear on '-i'.
viric <viriketo@gmail.com>
parents: 316
diff changeset
   376
                     *   greater than last_finished_jobid */
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   377
                    if (last_finished_jobid < ljobid)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   378
                    {
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   379
                        struct Job *parent;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   380
                        parent = find_finished_job(ljobid);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   381
                        if (!parent)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   382
                            error("jobid %i suddenly disappeared from the finished list",
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   383
                                ljobid);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   384
                        p->dependency_errorlevel = parent->result.errorlevel;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   385
                    }
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   386
                    else
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   387
                        p->dependency_errorlevel = last_errorlevel;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   388
                }
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   389
            }
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   390
        }
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   391
        else
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   392
        {
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   393
            /* The user decided what's the job this new job depends on */
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   394
            struct Job *depended_job;
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   395
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   396
            p->depend_on = m->u.newjob.depend_on;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   397
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   398
            depended_job = findjob(p->depend_on);
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   399
            if (depended_job != 0)
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   400
                add_notify_errorlevel_to(depended_job, p->jobid);
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   401
            else
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   402
            {
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   403
                struct Job *parent;
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   404
                parent = find_finished_job(p->depend_on);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   405
                if (parent)
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   406
                {
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   407
                    p->dependency_errorlevel = parent->result.errorlevel;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   408
                }
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   409
                else
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   410
                {
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   411
                    /* We consider as if the job not found
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   412
                       didn't finish well */
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   413
                    p->dependency_errorlevel = -1;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   414
                }
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   415
            }
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   416
        }
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   417
    }
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   418
18
af4898956964 Now commands of any-length are accepted.
viric@llimona
parents: 9
diff changeset
   419
147
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   420
    pinfo_init(&p->info);
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   421
    pinfo_set_enqueue_time(&p->info);
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   422
18
af4898956964 Now commands of any-length are accepted.
viric@llimona
parents: 9
diff changeset
   423
    /* load the command */
af4898956964 Now commands of any-length are accepted.
viric@llimona
parents: 9
diff changeset
   424
    p->command = malloc(m->u.newjob.command_size);
147
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   425
    if (p->command == 0)
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   426
        error("Cannot allocate memory in s_newjob command_size (%i)",
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   427
                m->u.newjob.command_size);
18
af4898956964 Now commands of any-length are accepted.
viric@llimona
parents: 9
diff changeset
   428
    res = recv_bytes(s, p->command, m->u.newjob.command_size);
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   429
    if (res == -1)
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   430
        error("wrong bytes received");
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   431
150
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   432
    /* load the label */
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   433
    p->label = 0;
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   434
    if (m->u.newjob.label_size > 0)
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   435
    {
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   436
        char *ptr;
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   437
        ptr = (char *) malloc(m->u.newjob.label_size);
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   438
        if (ptr == 0)
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   439
            error("Cannot allocate memory in s_newjob env_size(%i)",
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   440
                    m->u.newjob.env_size);
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   441
        res = recv_bytes(s, ptr, m->u.newjob.label_size);
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   442
        if (res == -1)
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   443
            error("wrong bytes received");
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   444
        p->label = ptr;
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   445
    }
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   446
147
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   447
    /* load the info */
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   448
    if (m->u.newjob.env_size > 0)
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   449
    {
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   450
        char *ptr;
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   451
        ptr = (char *) malloc(m->u.newjob.env_size);
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   452
        if (ptr == 0)
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   453
            error("Cannot allocate memory in s_newjob env_size(%i)",
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   454
                    m->u.newjob.env_size);
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   455
        res = recv_bytes(s, ptr, m->u.newjob.env_size);
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   456
        if (res == -1)
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   457
            error("wrong bytes received");
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   458
        pinfo_addinfo(&p->info, m->u.newjob.env_size+100,
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   459
                "Environment:\n%s", ptr);
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   460
        free(ptr);
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   461
    }
e173645f5221 Added environment info through TS_ENV
viric@llimona
parents: 146
diff changeset
   462
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   463
    return p->jobid;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   464
}
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   465
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   466
/* This assumes the jobid exists */
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   467
void s_removejob(int jobid)
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   468
{
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   469
    struct Job *p;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   470
    struct Job *newnext;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   471
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   472
    if (firstjob->jobid == jobid)
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   473
    {
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   474
        struct Job *newfirst;
134
5a6b8bb1f7a8 Fixing two bugs noted in buglist.bug (ts clients not dying on removejob, queue
viric@llimona
parents: 120
diff changeset
   475
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   476
        /* First job is to be removed */
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   477
        newfirst = firstjob->next;
18
af4898956964 Now commands of any-length are accepted.
viric@llimona
parents: 9
diff changeset
   478
        free(firstjob->command);
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   479
        free(firstjob->output_filename);
148
a8c5dac8f1e9 Fixing a memory leak in new pinfo.
viric@llimona
parents: 147
diff changeset
   480
        pinfo_free(&firstjob->info);
150
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   481
        free(firstjob->label);
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   482
        free(firstjob);
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   483
        firstjob = newfirst;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   484
        return;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   485
    }
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   486
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   487
    p = firstjob;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   488
    /* Not first job */
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   489
    while (p->next != 0)
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   490
    {
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   491
        if (p->next->jobid == jobid)
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   492
            break;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   493
        p = p->next;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   494
    }
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   495
    if (p->next == 0)
134
5a6b8bb1f7a8 Fixing two bugs noted in buglist.bug (ts clients not dying on removejob, queue
viric@llimona
parents: 120
diff changeset
   496
        error("Job to be removed not found. jobid=%i", jobid);
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   497
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   498
    newnext = p->next->next;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   499
18
af4898956964 Now commands of any-length are accepted.
viric@llimona
parents: 9
diff changeset
   500
    free(p->next->command);
3
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   501
    free(p->next);
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   502
    p->next = newnext;
2fb8a6bdd024 More code.
viric@llimona
parents:
diff changeset
   503
}
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   504
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   505
/* -1 if no one should be run. */
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   506
int next_run_job()
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   507
{
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   508
    struct Job *p;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   509
316
7ce3aeaf73b5 Making the option -N work fine; jobs get into running if there are free slots.
viric <viriketo@gmail.com>
parents: 315
diff changeset
   510
    const int free_slots = max_slots - busy_slots;
7ce3aeaf73b5 Making the option -N work fine; jobs get into running if there are free slots.
viric <viriketo@gmail.com>
parents: 315
diff changeset
   511
219
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
   512
    /* busy_slots may be bigger than the maximum slots,
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
   513
     * if the user was running many jobs, and suddenly
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
   514
     * trimmed the maximum slots down. */
316
7ce3aeaf73b5 Making the option -N work fine; jobs get into running if there are free slots.
viric <viriketo@gmail.com>
parents: 315
diff changeset
   515
    if (free_slots <= 0)
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   516
        return -1;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   517
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   518
    /* If there are no jobs to run... */
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   519
    if (firstjob == 0)
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   520
        return -1;
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   521
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   522
    /* Look for a runnable task */
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   523
    p = firstjob;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   524
    while(p != 0)
9
9acd8ae3190c First usable version!
lbatlle@npdl268.bpo.hp.com
parents: 8
diff changeset
   525
    {
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   526
        if (p->state == QUEUED)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   527
        {
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   528
            if (p->depend_on >= 0)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   529
            {
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   530
                struct Job *do_depend_job = get_job(p->depend_on);
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   531
                /* We won't try to run any job do_depending on an unfinished
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   532
                 * job */
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   533
                if (do_depend_job != NULL &&
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   534
                    (do_depend_job->state == QUEUED || do_depend_job->state == RUNNING))
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   535
                {
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   536
                    /* Next try */
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   537
                    p = p->next;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   538
                    continue;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   539
                }
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   540
            }
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   541
316
7ce3aeaf73b5 Making the option -N work fine; jobs get into running if there are free slots.
viric <viriketo@gmail.com>
parents: 315
diff changeset
   542
            if (free_slots >= p->num_slots)
7ce3aeaf73b5 Making the option -N work fine; jobs get into running if there are free slots.
viric <viriketo@gmail.com>
parents: 315
diff changeset
   543
            {
7ce3aeaf73b5 Making the option -N work fine; jobs get into running if there are free slots.
viric <viriketo@gmail.com>
parents: 315
diff changeset
   544
                busy_slots = busy_slots + p->num_slots;
7ce3aeaf73b5 Making the option -N work fine; jobs get into running if there are free slots.
viric <viriketo@gmail.com>
parents: 315
diff changeset
   545
                return p->jobid;
7ce3aeaf73b5 Making the option -N work fine; jobs get into running if there are free slots.
viric <viriketo@gmail.com>
parents: 315
diff changeset
   546
            }
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   547
        }
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   548
        p = p->next;
9
9acd8ae3190c First usable version!
lbatlle@npdl268.bpo.hp.com
parents: 8
diff changeset
   549
    }
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   550
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   551
    return -1;
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   552
}
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   553
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   554
/* Returns 1000 if no limit, The limit otherwise. */
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   555
static int get_max_finished_jobs()
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   556
{
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   557
    char *limit;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   558
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   559
    limit = getenv("TS_MAXFINISHED");
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   560
    if (limit == NULL)
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   561
        return 1000;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   562
    return abs(atoi(limit));
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   563
}
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   564
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   565
/* Add the job to the finished queue. */
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   566
static void new_finished_job(struct Job *j)
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   567
{
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   568
    struct Job *p;
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   569
    int count, max;
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   570
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   571
    max = get_max_finished_jobs();
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   572
    count = 0;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   573
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   574
    if (first_finished_job == 0 && count < max)
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   575
    {
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   576
        first_finished_job = j;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   577
        first_finished_job->next = 0;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   578
        return;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   579
    }
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   580
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   581
    ++count;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   582
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   583
    p = first_finished_job;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   584
    while(p->next != 0)
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   585
    {
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   586
        p = p->next;
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   587
        ++count;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   588
    }
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   589
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   590
    /* If too many jobs, wipe out the first */
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   591
    if (count >= max)
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   592
    {
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   593
        struct Job *tmp;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   594
        tmp = first_finished_job;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   595
        first_finished_job = first_finished_job->next;
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   596
        free(tmp->command);
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   597
        free(tmp->output_filename);
148
a8c5dac8f1e9 Fixing a memory leak in new pinfo.
viric@llimona
parents: 147
diff changeset
   598
        pinfo_free(&tmp->info);
150
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   599
        free(tmp->label);
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   600
        free(tmp);
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   601
    }
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   602
    p->next = j;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   603
    p->next->next = 0;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   604
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   605
    return;
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   606
}
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   607
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   608
static int job_is_in_state(int jobid, enum Jobstate state)
252
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   609
{
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   610
    struct Job *p;
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   611
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   612
    p = findjob(jobid);
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   613
    if (p == 0)
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   614
        return 0;
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   615
    if (p->state == state)
252
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   616
        return 1;
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   617
    return 0;
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   618
}
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
   619
287
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   620
int job_is_running(int jobid)
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   621
{
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   622
    return job_is_in_state(jobid, RUNNING);
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   623
}
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   624
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   625
int job_is_holding_client(int jobid)
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   626
{
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   627
    return job_is_in_state(jobid, HOLDING_CLIENT);
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   628
}
b3c38ff8f41a An implementation that looks like working for the queue limit and client
viric <viriketo@gmail.com>
parents: 267
diff changeset
   629
333
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   630
static int in_notify_list(int jobid)
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   631
{
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   632
    struct Notify *n, *tmp;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   633
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   634
    n = first_notify;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   635
    while (n != 0)
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   636
    {
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   637
        tmp = n;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   638
        n = n->next;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   639
        if (tmp->jobid == jobid)
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   640
            return 1;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   641
    }
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   642
    return 0;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   643
}
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   644
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   645
void job_finished(const struct Result *result, int jobid)
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   646
{
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   647
    struct Job *p;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   648
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   649
    if (busy_slots <= 0)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   650
        error("Wrong state in the server. busy_slots = %i instead of greater than 0", busy_slots);
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   651
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   652
    p = findjob(jobid);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   653
    if (p == 0)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   654
        error("on jobid %i finished, it doesn't exist", jobid);
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   655
288
8459747e1a73 Fixing the cleaning of the job list in case of ctrl-c on a blocked client
viric <viriketo@gmail.com>
parents: 287
diff changeset
   656
    /* The job may be not only in running state, but also in other states, as
8459747e1a73 Fixing the cleaning of the job list in case of ctrl-c on a blocked client
viric <viriketo@gmail.com>
parents: 287
diff changeset
   657
     * we call this to clean up the jobs list in case of the client closing the
8459747e1a73 Fixing the cleaning of the job list in case of ctrl-c on a blocked client
viric <viriketo@gmail.com>
parents: 287
diff changeset
   658
     * connection. */
8459747e1a73 Fixing the cleaning of the job list in case of ctrl-c on a blocked client
viric <viriketo@gmail.com>
parents: 287
diff changeset
   659
    if (p->state == RUNNING)
316
7ce3aeaf73b5 Making the option -N work fine; jobs get into running if there are free slots.
viric <viriketo@gmail.com>
parents: 315
diff changeset
   660
        busy_slots = busy_slots - p->num_slots;
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   661
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   662
    /* Mark state */
156
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   663
    if (result->skipped)
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   664
        p->state = SKIPPED;
156
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   665
    else
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   666
        p->state = FINISHED;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   667
    p->result = *result;
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   668
    last_finished_jobid = p->jobid;
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   669
    notify_errorlevel(p);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   670
    pinfo_set_end_time(&p->info);
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   671
246
239b28c0cca9 Adding information on the exit status (signal/exit code).
viric@mandarina
parents: 231
diff changeset
   672
    if (p->result.died_by_signal)
239b28c0cca9 Adding information on the exit status (signal/exit code).
viric@mandarina
parents: 231
diff changeset
   673
        pinfo_addinfo(&p->info, 100, "Exit status: killed by signal %i\n", p->result.signal);
239b28c0cca9 Adding information on the exit status (signal/exit code).
viric@mandarina
parents: 231
diff changeset
   674
    else
239b28c0cca9 Adding information on the exit status (signal/exit code).
viric@mandarina
parents: 231
diff changeset
   675
        pinfo_addinfo(&p->info, 100, "Exit status: died with exit code %i\n", p->result.errorlevel);
239b28c0cca9 Adding information on the exit status (signal/exit code).
viric@mandarina
parents: 231
diff changeset
   676
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   677
    /* Find the pointing node, to
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   678
     * update it removing the finished job. */
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   679
    {
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   680
        struct Job **jpointer = 0;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   681
        struct Job *newfirst = p->next;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   682
        if (firstjob == p)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   683
            jpointer = &firstjob;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   684
        else
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   685
        {
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   686
            struct Job *p2;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   687
            p2 = firstjob;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   688
            while(p2 != 0)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   689
            {
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   690
                if (p2->next == p)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   691
                {
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   692
                    jpointer = &(p2->next);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   693
                    break;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   694
                }
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   695
                p2 = p2->next;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   696
            }
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   697
        }
19
5efc347cca8d The finished jobs store the errorlevel, and can be listed.
viric@llimona
parents: 18
diff changeset
   698
333
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   699
        /* Add it to the finished queue (maybe temporarily) */
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
   700
        if (p->should_keep_finished || in_notify_list(p->jobid))
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   701
            new_finished_job(p);
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   702
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   703
        /* Remove it from the run queue */
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   704
        if (jpointer == 0)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   705
            error("Cannot remove a finished job from the "
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   706
                "queue list (jobid=%i)", p->jobid);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   707
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   708
        *jpointer = newfirst;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   709
    }
8
03339adb7014 Some more code for execution.
viric@llimona
parents: 5
diff changeset
   710
}
20
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   711
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   712
void s_clear_finished()
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   713
{
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   714
    struct Job *p;
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   715
22
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   716
    if (first_finished_job == 0)
20
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   717
        return;
22
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   718
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   719
    p = first_finished_job;
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   720
    first_finished_job = 0;
20
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   721
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
   722
    while (p != 0)
20
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   723
    {
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   724
        struct Job *tmp;
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   725
        tmp = p->next;
22
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   726
        free(p->command);
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   727
        free(p->output_filename);
148
a8c5dac8f1e9 Fixing a memory leak in new pinfo.
viric@llimona
parents: 147
diff changeset
   728
        pinfo_free(&p->info);
150
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
   729
        free(p->label);
20
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   730
        free(p);
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   731
        p = tmp;
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   732
    }
d85b4c0745fa "-c" added, for clearing the finished tasks' list.
viric@llimona
parents: 19
diff changeset
   733
}
22
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   734
35
83d0da612dc4 Kill the running job works fine.
viric@llimona
parents: 32
diff changeset
   735
void s_process_runjob_ok(int jobid, char *oname, int pid)
22
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   736
{
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   737
    struct Job *p;
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   738
    p = findjob(jobid);
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   739
    if (p == 0)
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   740
        error("Job %i already run not found on runjob_ok", jobid);
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   741
    if (p->state != RUNNING)
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   742
        error("Job %i not running, but %i on runjob_ok", jobid,
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   743
                p->state);
22
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   744
35
83d0da612dc4 Kill the running job works fine.
viric@llimona
parents: 32
diff changeset
   745
    p->pid = pid;
22
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   746
    p->output_filename = oname;
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   747
    pinfo_set_start_time(&p->info);
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   748
}
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   749
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   750
void s_send_runjob(int s, int jobid)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   751
{
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   752
    struct msg m;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   753
    struct Job *p;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   754
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   755
    p = findjob(jobid);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   756
    if (p == 0) 
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   757
        error("Job %i was expected to run", jobid);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   758
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   759
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   760
    m.type = RUNJOB;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   761
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   762
    /* TODO
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   763
     * We should make the dependencies update the jobids they're do_depending on.
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   764
     * Then, on finish, these could set the errorlevel to send to its dependency childs.
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   765
     * We cannot consider that the jobs will leave traces in the finished job list (-nf?) . */
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   766
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   767
    m.u.last_errorlevel = p->dependency_errorlevel;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   768
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   769
    send_msg(s, &m);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   770
}
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   771
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   772
void s_job_info(int s, int jobid)
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   773
{
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   774
    struct Job *p = 0;
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   775
    struct msg m;
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   776
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   777
    if (jobid == -1)
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   778
    {
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   779
        /* This means that we want the job info of the running task, or that
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   780
         * of the last job run */
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   781
        if (busy_slots > 0)
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   782
        {
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   783
            p = firstjob;
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   784
            if (p == 0)
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   785
                error("Internal state WAITING, but job not run."
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   786
                        "firstjob = %x", firstjob);
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   787
        }
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   788
        else
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   789
        {
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   790
            p = first_finished_job;
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   791
            if (p == 0)
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   792
            {
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   793
                send_list_line(s, "No jobs.\n");
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   794
                return;
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   795
            }
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   796
            while(p->next != 0)
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   797
                p = p->next;
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   798
        }
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   799
    } else
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   800
    {
154
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   801
        p = firstjob;
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   802
        while (p != 0 && p->jobid != jobid)
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   803
            p = p->next;
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   804
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   805
        /* Look in finished jobs if needed */
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   806
        if (p == 0)
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   807
        {
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   808
            p = first_finished_job;
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   809
            while (p != 0 && p->jobid != jobid)
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   810
                p = p->next;
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   811
        }
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   812
    }
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   813
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   814
    if (p == 0)
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   815
    {
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   816
        char tmp[50];
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   817
        sprintf(tmp, "Job %i not finished or not running.\n", jobid);
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   818
        send_list_line(s, tmp);
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   819
        return;
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   820
    }
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   821
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   822
    m.type = INFO_DATA;
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   823
    send_msg(s, &m);
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   824
    pinfo_dump(&p->info, s);
317
290b5aa53061 Making the number of slots appear on '-i'.
viric <viriketo@gmail.com>
parents: 316
diff changeset
   825
    fd_nprintf(s, 100, "Command: ");
290b5aa53061 Making the number of slots appear on '-i'.
viric <viriketo@gmail.com>
parents: 316
diff changeset
   826
    if (p->depend_on != -1)
290b5aa53061 Making the number of slots appear on '-i'.
viric <viriketo@gmail.com>
parents: 316
diff changeset
   827
        fd_nprintf(s, 100, "[%i]&& ", p->depend_on);
154
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   828
    write(s, p->command, strlen(p->command));
b1618fe033aa Fixed a bug on -i, when the job was not running or run. Added Command: in -i.
viric@llimona
parents: 153
diff changeset
   829
    fd_nprintf(s, 100, "\n");
317
290b5aa53061 Making the number of slots appear on '-i'.
viric <viriketo@gmail.com>
parents: 316
diff changeset
   830
    fd_nprintf(s, 100, "Slots required: %i\n", p->num_slots);
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   831
    fd_nprintf(s, 100, "Enqueue time: %s",
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   832
            ctime(&p->info.enqueue_time.tv_sec));
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   833
    if (p->state == RUNNING)
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   834
    {
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   835
        fd_nprintf(s, 100, "Start time: %s",
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   836
                ctime(&p->info.start_time.tv_sec));
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   837
        fd_nprintf(s, 100, "Time running: %fs\n",
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   838
                pinfo_time_until_now(&p->info));
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   839
    } else if (p->state == FINISHED)
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   840
    {
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   841
        fd_nprintf(s, 100, "Start time: %s",
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   842
                ctime(&p->info.start_time.tv_sec));
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   843
        fd_nprintf(s, 100, "End time: %s",
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   844
                ctime(&p->info.end_time.tv_sec));
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   845
        fd_nprintf(s, 100, "Time run: %fs\n",
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   846
                pinfo_time_run(&p->info));
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   847
    }
22
afdc8410633f Now output can go to filenames.
viric@llimona
parents: 21
diff changeset
   848
}
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   849
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   850
void s_send_output(int s, int jobid)
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   851
{
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   852
    struct Job *p = 0;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   853
    struct msg m;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   854
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   855
    if (jobid == -1)
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   856
    {
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
   857
        /* This means that we want the output info of the running task, or that
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   858
         * of the last job run */
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   859
        if (busy_slots > 0)
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   860
        {
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   861
            p = firstjob;
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   862
            if (p == 0)
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   863
                error("Internal state WAITING, but job not run."
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
   864
                        "firstjob = %x", firstjob);
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   865
        }
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   866
        else
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   867
        {
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   868
            p = first_finished_job;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   869
            if (p == 0)
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   870
            {
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   871
                send_list_line(s, "No jobs.\n");
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   872
                return;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   873
            }
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   874
            while(p->next != 0)
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   875
                p = p->next;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   876
        }
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   877
    } else
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   878
    {
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   879
        p = get_job(jobid);
225
6c2583ea71eb Bugfix: Improving the parent bugfix, so it displays a nicer message on SKIPPED
viric@mandarina
parents: 224
diff changeset
   880
        if (p != 0 && p->state != RUNNING
6c2583ea71eb Bugfix: Improving the parent bugfix, so it displays a nicer message on SKIPPED
viric@mandarina
parents: 224
diff changeset
   881
            && p->state != FINISHED
6c2583ea71eb Bugfix: Improving the parent bugfix, so it displays a nicer message on SKIPPED
viric@mandarina
parents: 224
diff changeset
   882
            && p->state != SKIPPED)
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   883
            p = 0;
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   884
    }
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   885
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   886
    if (p == 0)
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   887
    {
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   888
        char tmp[50];
196
bca29e2a1a86 Fixing a bug related to a message on -t on last job, when it was skipped.
viric@llimona
parents: 190
diff changeset
   889
        if (jobid == -1)
bca29e2a1a86 Fixing a bug related to a message on -t on last job, when it was skipped.
viric@llimona
parents: 190
diff changeset
   890
            sprintf(tmp, "The last job has not finished or is not running.\n");
bca29e2a1a86 Fixing a bug related to a message on -t on last job, when it was skipped.
viric@llimona
parents: 190
diff changeset
   891
        else
bca29e2a1a86 Fixing a bug related to a message on -t on last job, when it was skipped.
viric@llimona
parents: 190
diff changeset
   892
            sprintf(tmp, "Job %i not finished or not running.\n", jobid);
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   893
        send_list_line(s, tmp);
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   894
        return;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   895
    }
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   896
157
c4909531282e Fixed a bug on new skipped state and -o.
viric@mandarina
parents: 156
diff changeset
   897
    if (p->state == SKIPPED)
156
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   898
    {
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   899
        char tmp[50];
196
bca29e2a1a86 Fixing a bug related to a message on -t on last job, when it was skipped.
viric@llimona
parents: 190
diff changeset
   900
        if (jobid == -1)
bca29e2a1a86 Fixing a bug related to a message on -t on last job, when it was skipped.
viric@llimona
parents: 190
diff changeset
   901
            sprintf(tmp,  "The last job was skipped due to a dependency.\n");
bca29e2a1a86 Fixing a bug related to a message on -t on last job, when it was skipped.
viric@llimona
parents: 190
diff changeset
   902
                    
bca29e2a1a86 Fixing a bug related to a message on -t on last job, when it was skipped.
viric@llimona
parents: 190
diff changeset
   903
        else
bca29e2a1a86 Fixing a bug related to a message on -t on last job, when it was skipped.
viric@llimona
parents: 190
diff changeset
   904
            sprintf(tmp, "Job %i was skipped due to a dependency.\n", jobid);
156
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   905
        send_list_line(s, tmp);
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   906
        return;
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   907
    }
9ac3bd570159 Improved -d (depend) information.
viric@mandarina
parents: 155
diff changeset
   908
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   909
    m.type = ANSWER_OUTPUT;
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   910
    m.u.output.store_output = p->store_output;
35
83d0da612dc4 Kill the running job works fine.
viric@llimona
parents: 32
diff changeset
   911
    m.u.output.pid = p->pid;
289
f331d05328b3 Fixing a bug in the server, that made the server crash if the output file was
viric <viriketo@gmail.com>
parents: 288
diff changeset
   912
    if (m.u.output.store_output && p->output_filename)
153
3cc22be1ab95 Fixed a bug with -n and -p.
viric@llimona
parents: 150
diff changeset
   913
        m.u.output.ofilename_size = strlen(p->output_filename) + 1;
3cc22be1ab95 Fixed a bug with -n and -p.
viric@llimona
parents: 150
diff changeset
   914
    else
3cc22be1ab95 Fixed a bug with -n and -p.
viric@llimona
parents: 150
diff changeset
   915
        m.u.output.ofilename_size = 0;
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   916
    send_msg(s, &m);
289
f331d05328b3 Fixing a bug in the server, that made the server crash if the output file was
viric <viriketo@gmail.com>
parents: 288
diff changeset
   917
    if (m.u.output.ofilename_size > 0)
f331d05328b3 Fixing a bug in the server, that made the server crash if the output file was
viric <viriketo@gmail.com>
parents: 288
diff changeset
   918
        send_bytes(s, p->output_filename, m.u.output.ofilename_size);
32
3531439f2770 Tail works.
viric@llimona
parents: 27
diff changeset
   919
}
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   920
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   921
void notify_errorlevel(struct Job *p)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   922
{
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   923
    int i;
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   924
221
fed80bc73128 Updating the "-d" behaviour, so it now works well also with "-nf" submitted
viric@mandarina
parents: 219
diff changeset
   925
    last_errorlevel = p->result.errorlevel;
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   926
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   927
    for(i = 0; i < p->notify_errorlevel_to_size; ++i)
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   928
    {
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   929
        struct Job *notified;
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
   930
        notified = get_job(p->notify_errorlevel_to[i]);
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   931
        if (notified)
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   932
        {
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   933
            notified->dependency_errorlevel = p->result.errorlevel;
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   934
        }
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   935
    }
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   936
}
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
   937
334
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
   938
/* jobid is input/output. If the input is -1, it's changed to the jobid
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
   939
 * removed */
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
   940
int s_remove_job(int s, int *jobid)
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   941
{
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   942
    struct Job *p = 0;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   943
    struct msg m;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   944
    struct Job *before_p = 0;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   945
334
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
   946
    if (*jobid == -1)
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   947
    {
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   948
        /* Find the last job added */
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   949
        p = firstjob;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   950
        if (p != 0)
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   951
        {
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   952
            while (p->next != 0)
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   953
            {
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   954
                before_p = p;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   955
                p = p->next;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   956
            }
180
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   957
        } else
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   958
        {
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   959
            /* last 'finished' */
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   960
            p = first_finished_job;
190
a1d9f881740e Fixed "-r" without jobid.
lbatlle@npdl268.bpo.hp.com
parents: 182
diff changeset
   961
            if (p)
180
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   962
            {
190
a1d9f881740e Fixed "-r" without jobid.
lbatlle@npdl268.bpo.hp.com
parents: 182
diff changeset
   963
                while (p->next != 0)
a1d9f881740e Fixed "-r" without jobid.
lbatlle@npdl268.bpo.hp.com
parents: 182
diff changeset
   964
                {
a1d9f881740e Fixed "-r" without jobid.
lbatlle@npdl268.bpo.hp.com
parents: 182
diff changeset
   965
                    before_p = p;
a1d9f881740e Fixed "-r" without jobid.
lbatlle@npdl268.bpo.hp.com
parents: 182
diff changeset
   966
                    p = p->next;
a1d9f881740e Fixed "-r" without jobid.
lbatlle@npdl268.bpo.hp.com
parents: 182
diff changeset
   967
                }
180
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   968
            }
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   969
        }
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   970
    }
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   971
    else
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   972
    {
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   973
        p = firstjob;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   974
        if (p != 0)
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   975
        {
334
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
   976
            while (p->next != 0 && p->jobid != *jobid)
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   977
            {
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   978
                before_p = p;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   979
                p = p->next;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   980
            }
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   981
        }
180
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   982
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   983
        /* If not found, look in the 'finished' list */
334
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
   984
        if (p == 0 || p->jobid != *jobid)
180
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   985
        {
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   986
            p = first_finished_job;
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   987
            if (p != 0)
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   988
            {
334
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
   989
                while (p->next != 0 && p->jobid != *jobid)
180
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   990
                {
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   991
                    before_p = p;
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   992
                    p = p->next;
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   993
                }
334
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
   994
                if (p->jobid != *jobid)
227
3570252beade Bugfix: '-r' has a better behaviour when all the jobs finished.
viric@mandarina
parents: 226
diff changeset
   995
                    p = 0;
180
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   996
            }
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
   997
        }
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   998
    }
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
   999
227
3570252beade Bugfix: '-r' has a better behaviour when all the jobs finished.
viric@mandarina
parents: 226
diff changeset
  1000
    if (p == 0 || p->state == RUNNING || p == firstjob)
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1001
    {
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1002
        char tmp[50];
334
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
  1003
        if (*jobid == -1)
44
4dcf05746ece Better include files.
viric@llimona
parents: 42
diff changeset
  1004
            sprintf(tmp, "The last job cannot be removed.\n");
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1005
        else
334
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
  1006
            sprintf(tmp, "The job %i cannot be removed.\n", *jobid);
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1007
        send_list_line(s, tmp);
134
5a6b8bb1f7a8 Fixing two bugs noted in buglist.bug (ts clients not dying on removejob, queue
viric@llimona
parents: 120
diff changeset
  1008
        return 0;
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1009
    }
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1010
334
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
  1011
    /* Return the jobid found */
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
  1012
    *jobid = p->jobid;
e9e212846a89 Fixing a process left, when "-r" is used without jobid.
viric
parents: 333
diff changeset
  1013
178
5b64d66a8d89 Fixed awaking the wait_job clients on job removal.
viric@llimona
parents: 176
diff changeset
  1014
    /* Tricks for the check_notify_list */
5b64d66a8d89 Fixed awaking the wait_job clients on job removal.
viric@llimona
parents: 176
diff changeset
  1015
    p->state = FINISHED;
5b64d66a8d89 Fixed awaking the wait_job clients on job removal.
viric@llimona
parents: 176
diff changeset
  1016
    p->result.errorlevel = -1;
218
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
  1017
    notify_errorlevel(p);
f084c8de313f First attempt at multiple slot running.
viric@mandarina
parents: 209
diff changeset
  1018
        
178
5b64d66a8d89 Fixed awaking the wait_job clients on job removal.
viric@llimona
parents: 176
diff changeset
  1019
    /* Notify the clients in wait_job */
5b64d66a8d89 Fixed awaking the wait_job clients on job removal.
viric@llimona
parents: 176
diff changeset
  1020
    check_notify_list(m.u.jobid);
5b64d66a8d89 Fixed awaking the wait_job clients on job removal.
viric@llimona
parents: 176
diff changeset
  1021
180
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
  1022
    /* Update the list pointers */
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
  1023
    if (p == first_finished_job)
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
  1024
        first_finished_job = p->next;
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
  1025
    else
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
  1026
        before_p->next = p->next;
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
  1027
259
ba3827aa8f25 Adding -D. Forward to 0.6.3.
viric@mandarina
parents: 254
diff changeset
  1028
    free(p->notify_errorlevel_to);
64
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
  1029
    free(p->command);
2a17c9c7b1d5 Added a limit to the number of finished jobs.
viric@llimona
parents: 63
diff changeset
  1030
    free(p->output_filename);
146
5e689cb593aa Bones of the "-i" parameter, job info.
viric@llimona
parents: 134
diff changeset
  1031
    pinfo_free(&p->info);
150
a615d7971bf6 Added -L (label)
viric@llimona
parents: 148
diff changeset
  1032
    free(p->label);
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1033
    free(p);
180
a35159b7009a Finished jobs can also be removed now.
viric@llimona
parents: 178
diff changeset
  1034
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1035
    m.type = REMOVEJOB_OK;
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1036
    send_msg(s, &m);
134
5a6b8bb1f7a8 Fixing two bugs noted in buglist.bug (ts clients not dying on removejob, queue
viric@llimona
parents: 120
diff changeset
  1037
    return 1;
41
cad41574feda Added 'remove job'.
viric@llimona
parents: 39
diff changeset
  1038
}
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1039
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1040
static void add_to_notify_list(int s, int jobid)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1041
{
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1042
    struct Notify *n;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1043
    struct Notify *new;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1044
195
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1045
    new = (struct Notify *) malloc(sizeof(*new));
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1046
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1047
    new->socket = s;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1048
    new->jobid = jobid;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1049
    new->next = 0;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1050
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1051
    n = first_notify;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1052
    if (n == 0)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1053
    {
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1054
        first_notify = new;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1055
        return;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1056
    }
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1057
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1058
    while(n->next != 0)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1059
        n = n->next;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1060
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1061
    n->next = new;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1062
}
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1063
51
aa6e05d77537 '-w' returns the waited errorlevel. Added a testbench.
viric@llimona
parents: 49
diff changeset
  1064
static void send_waitjob_ok(int s, int errorlevel)
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1065
{
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1066
    struct msg m;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1067
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1068
    m.type = WAITJOB_OK;
112
303834d55e99 More code on times()
viric@mandarina
parents: 104
diff changeset
  1069
    m.u.result.errorlevel = errorlevel;
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1070
    send_msg(s, &m);
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1071
}
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1072
51
aa6e05d77537 '-w' returns the waited errorlevel. Added a testbench.
viric@llimona
parents: 49
diff changeset
  1073
static struct Job *
aa6e05d77537 '-w' returns the waited errorlevel. Added a testbench.
viric@llimona
parents: 49
diff changeset
  1074
get_job(int jobid)
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1075
{
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1076
    struct Job *j;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1077
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1078
    j = findjob(jobid);
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1079
    if (j != NULL)
51
aa6e05d77537 '-w' returns the waited errorlevel. Added a testbench.
viric@llimona
parents: 49
diff changeset
  1080
        return j;
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1081
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1082
    j = find_finished_job(jobid);
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1083
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1084
    if (j != NULL)
51
aa6e05d77537 '-w' returns the waited errorlevel. Added a testbench.
viric@llimona
parents: 49
diff changeset
  1085
        return j;
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1086
51
aa6e05d77537 '-w' returns the waited errorlevel. Added a testbench.
viric@llimona
parents: 49
diff changeset
  1087
    return 0;
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1088
}
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1089
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1090
/* Don't complain, if the socket doesn't exist */
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1091
void s_remove_notification(int s)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1092
{
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1093
    struct Notify *n;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1094
    struct Notify *previous;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1095
    n = first_notify;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1096
    while (n != 0 && n->socket != s)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1097
        n = n->next;
176
306890eeeffa Fixing a bug on s_remove_job, related to -w and dying with signals
viric@llimona
parents: 166
diff changeset
  1098
    if (n == 0 || n->socket != s)
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1099
        return;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1100
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1101
    /* Remove the notification */
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1102
    previous = first_notify;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1103
    if (n == previous)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1104
    {
254
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1105
        first_notify = n->next;
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1106
        free(n);
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1107
        return;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1108
    }
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1109
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1110
    /* if not the first... */
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1111
    while(previous->next != n)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1112
        previous = previous->next;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1113
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1114
    previous->next = n->next;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1115
    free(n);
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1116
}
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1117
333
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1118
static void destroy_finished_job(struct Job *j)
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1119
{
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1120
    if (j == first_finished_job)
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1121
        first_finished_job = j->next;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1122
    else
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1123
    {
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1124
        struct Job *i;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1125
        for(i = first_finished_job; i != 0; ++i)
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1126
        {
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1127
            if (i->next == j)
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1128
            {
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1129
                i->next = j->next;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1130
                break;
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1131
            }
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1132
        }
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1133
        if (i == 0) {
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1134
            error("Cannot destroy the expected job %i", j->jobid);
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1135
        }
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1136
    }
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1137
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1138
    free(j->notify_errorlevel_to);
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1139
    free(j->command);
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1140
    free(j->output_filename);
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1141
    pinfo_free(&j->info);
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1142
    free(j->label);
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1143
    free(j);
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1144
}
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1145
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1146
/* This is called when a job finishes */
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1147
void check_notify_list(int jobid)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1148
{
206
7acb031b40b8 Better managing of notifications on job finish.
viric@llimona
parents: 198
diff changeset
  1149
    struct Notify *n, *tmp;
51
aa6e05d77537 '-w' returns the waited errorlevel. Added a testbench.
viric@llimona
parents: 49
diff changeset
  1150
    struct Job *j;
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1151
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1152
    n = first_notify;
195
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1153
    while (n != 0)
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1154
    {
206
7acb031b40b8 Better managing of notifications on job finish.
viric@llimona
parents: 198
diff changeset
  1155
        tmp = n;
7acb031b40b8 Better managing of notifications on job finish.
viric@llimona
parents: 198
diff changeset
  1156
        n = n->next;
7acb031b40b8 Better managing of notifications on job finish.
viric@llimona
parents: 198
diff changeset
  1157
        if (tmp->jobid == jobid)
195
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1158
        {
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1159
            j = get_job(jobid);
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1160
            /* If the job finishes, notify the waiter */
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1161
            if (j->state == FINISHED || j->state == SKIPPED)
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1162
            {
209
507bd37ab1d3 Bug resolving a pointer when notifying job_ends.
lbatlle@npdl268.bpo.hp.com
parents: 206
diff changeset
  1163
                send_waitjob_ok(tmp->socket, j->result.errorlevel);
195
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1164
                /* We want to get the next Nofity* before we remove
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1165
                 * the actual 'n'. As s_remove_notification() simply
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1166
                 * removes the element from the linked list, we can
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1167
                 * safely follow on the list from n->next. */
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1168
                s_remove_notification(tmp->socket);
333
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1169
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1170
                /* Remove the jobs that were temporarily in the finished list,
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1171
                 * just for their notifiers. */
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1172
                if (!in_notify_list(jobid) && !j->should_keep_finished) {
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1173
                    destroy_finished_job(j);
4a2f6bdca101 Trying to fix the segfault reported by Alexander Inyukhin in the mailing list:
viric <viriketo@gmail.com>
parents: 317
diff changeset
  1174
                }
195
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1175
            }
cbe64953fa1f Bugfix: the -w and -t only worked if there was a *single* ts process waiting.
viric@mandarina
parents: 190
diff changeset
  1176
        }
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1177
    }
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1178
}
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1179
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1180
void s_wait_job(int s, int jobid)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1181
{
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1182
    struct Job *p = 0;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1183
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1184
    if (jobid == -1)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1185
    {
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1186
        /* Find the last job added */
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1187
        p = firstjob;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1188
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1189
        if (p != 0)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1190
            while (p->next != 0)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1191
                p = p->next;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1192
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1193
        /* Look in finished jobs if needed */
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1194
        if (p == 0)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1195
        {
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1196
            p = first_finished_job;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1197
            if (p != 0)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1198
                while (p->next != 0)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1199
                    p = p->next;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1200
        }
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1201
    }
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1202
    else
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1203
    {
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1204
        p = firstjob;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1205
        while (p != 0 && p->jobid != jobid)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1206
            p = p->next;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1207
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1208
        /* Look in finished jobs if needed */
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1209
        if (p == 0)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1210
        {
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1211
            p = first_finished_job;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1212
            while (p != 0 && p->jobid != jobid)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1213
                p = p->next;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1214
        }
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1215
    }
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1216
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1217
    if (p == 0)
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1218
    {
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1219
        char tmp[50];
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1220
        if (jobid == -1)
44
4dcf05746ece Better include files.
viric@llimona
parents: 42
diff changeset
  1221
            sprintf(tmp, "The last job cannot be waited.\n");
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1222
        else
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1223
            sprintf(tmp, "The job %i cannot be waited.\n", jobid);
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1224
        send_list_line(s, tmp);
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1225
        return;
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1226
    }
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1227
166
8c19a66b5407 Fixing a bug on wait_job on skipped jobs. Moving vnumber to 0.5
viric@vicerveza
parents: 157
diff changeset
  1228
    if (p->state == FINISHED || p->state == SKIPPED)
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1229
    {
112
303834d55e99 More code on times()
viric@mandarina
parents: 104
diff changeset
  1230
        send_waitjob_ok(s, p->result.errorlevel);
42
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1231
    }
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1232
    else
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1233
        add_to_notify_list(s, p->jobid);
f093d0964cf5 Added wait for jobs.
viric@llimona
parents: 41
diff changeset
  1234
}
53
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1235
226
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1236
void s_wait_running_job(int s, int jobid)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1237
{
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1238
    struct Job *p = 0;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1239
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1240
    /* The job finding algorithm should be similar to that of
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1241
     * s_send_output, because this will be used by "-t" and "-c" */
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1242
    if (jobid == -1)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1243
    {
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1244
        /* This means that we want the output info of the running task, or that
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1245
         * of the last job run */
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1246
        if (busy_slots > 0)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1247
        {
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1248
            p = firstjob;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1249
            if (p == 0)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1250
                error("Internal state WAITING, but job not run."
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1251
                        "firstjob = %x", firstjob);
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1252
        }
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1253
        else
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1254
        {
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1255
            p = first_finished_job;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1256
            if (p == 0)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1257
            {
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1258
                send_list_line(s, "No jobs.\n");
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1259
                return;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1260
            }
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1261
            while(p->next != 0)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1262
                p = p->next;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1263
        }
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1264
    }
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1265
    else
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1266
    {
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1267
        p = firstjob;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1268
        while (p != 0 && p->jobid != jobid)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1269
            p = p->next;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1270
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1271
        /* Look in finished jobs if needed */
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1272
        if (p == 0)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1273
        {
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1274
            p = first_finished_job;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1275
            while (p != 0 && p->jobid != jobid)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1276
                p = p->next;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1277
        }
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1278
    }
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1279
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1280
    if (p == 0)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1281
    {
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1282
        char tmp[50];
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1283
        if (jobid == -1)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1284
            sprintf(tmp, "The last job cannot be waited.\n");
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1285
        else
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1286
            sprintf(tmp, "The job %i cannot be waited.\n", jobid);
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1287
        send_list_line(s, tmp);
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1288
        return;
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1289
    }
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1290
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1291
    if (p->state == FINISHED || p->state == SKIPPED)
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1292
    {
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1293
        send_waitjob_ok(s, p->result.errorlevel);
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1294
    }
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1295
    else
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1296
        add_to_notify_list(s, p->jobid);
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1297
}
472ab90fd6a1 Bugfix: some "-t" and "-c" were not notified at end of job.
viric@mandarina
parents: 225
diff changeset
  1298
219
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
  1299
void s_set_max_slots(int new_max_slots)
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
  1300
{
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
  1301
    if (new_max_slots > 0)
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
  1302
        max_slots = new_max_slots;
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
  1303
    else
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
  1304
        warning("Received new_max_slots=%i", new_max_slots);
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
  1305
}
c24a1f5c1715 Adding hot-switchable amount of max_slots.
viric@mandarina
parents: 218
diff changeset
  1306
253
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1307
void s_get_max_slots(int s)
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1308
{
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1309
    struct msg m;
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1310
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1311
    /* Message */
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1312
    m.type = GET_MAX_SLOTS_OK;
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1313
    m.u.max_slots = max_slots;
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1314
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1315
    send_msg(s, &m);
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1316
}
e9b153f4ae40 Making "-S" to return the number of slots set, if without additional argument.
viric@mandarina
parents: 252
diff changeset
  1317
53
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1318
void s_move_urgent(int s, int jobid)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1319
{
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1320
    struct Job *p = 0;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1321
    struct Job *tmp1;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1322
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1323
    if (jobid == -1)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1324
    {
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1325
        /* Find the last job added */
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1326
        p = firstjob;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1327
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1328
        if (p != 0)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1329
            while (p->next != 0)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1330
                p = p->next;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1331
    }
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1332
    else
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1333
    {
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1334
        p = firstjob;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1335
        while (p != 0 && p->jobid != jobid)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1336
            p = p->next;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1337
    }
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1338
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1339
    if (p == 0 || firstjob->next == 0)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1340
    {
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1341
        char tmp[50];
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1342
        if (jobid == -1)
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1343
            sprintf(tmp, "The last job cannot be urged.\n");
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1344
        else
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1345
            sprintf(tmp, "The job %i cannot be urged.\n", jobid);
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1346
        send_list_line(s, tmp);
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1347
        return;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1348
    }
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1349
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1350
    /* Interchange the pointers */
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1351
    tmp1 = find_previous_job(p);
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1352
    tmp1->next = p->next;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1353
    p->next = firstjob->next;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1354
    firstjob->next = p;
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1355
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1356
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1357
    send_urgent_ok(s);
731c41817842 '-u' (urgency) implemented.
viric@llimona
parents: 51
diff changeset
  1358
}
63
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1359
66
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1360
void s_swap_jobs(int s, int jobid1, int jobid2)
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1361
{
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1362
    struct Job *p1, *p2;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1363
    struct Job *prev1, *prev2;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1364
    struct Job *tmp;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1365
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1366
    p1 = findjob(jobid1);
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1367
    p2 = findjob(jobid2);
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1368
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1369
    if (p1 == 0 || p2 == 0 || p1 == firstjob || p2 == firstjob)
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1370
    {
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1371
        char prev[60];
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1372
        sprintf(prev, "The jobs %i and %i cannot be swapped.\n", jobid1, jobid2);
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1373
        send_list_line(s, prev);
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1374
        return;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1375
    }
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1376
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1377
    /* Interchange the pointers */
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1378
    prev1 = find_previous_job(p1);
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1379
    prev2 = find_previous_job(p2);
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1380
    prev1->next = p2;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1381
    prev2->next = p1;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1382
    tmp = p1->next;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1383
    p1->next = p2->next;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1384
    p2->next = tmp;
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1385
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1386
    send_swap_jobs_ok(s);
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1387
}
f70a27afd92e Adding "swap jobs" with -U. Fixed a big problem with fds 0, 1, 2.
viric@mandarina
parents: 64
diff changeset
  1388
63
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1389
static void send_state(int s, enum Jobstate state)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1390
{
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1391
    struct msg m;
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1392
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1393
    m.type = ANSWER_STATE;
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1394
    m.u.state = state;
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1395
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1396
    send_msg(s, &m);
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1397
}
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1398
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1399
void s_send_state(int s, int jobid)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1400
{
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1401
    struct Job *p = 0;
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1402
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1403
    if (jobid == -1)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1404
    {
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1405
        /* Find the last job added */
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1406
        p = firstjob;
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1407
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1408
        if (p != 0)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1409
            while (p->next != 0)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1410
                p = p->next;
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1411
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1412
        /* Look in finished jobs if needed */
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1413
        if (p == 0)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1414
        {
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1415
            p = first_finished_job;
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1416
            if (p != 0)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1417
                while (p->next != 0)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1418
                    p = p->next;
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1419
        }
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1420
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1421
    }
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1422
    else
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1423
    {
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1424
        p = get_job(jobid);
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1425
    }
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1426
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1427
    if (p == 0)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1428
    {
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1429
        char tmp[50];
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1430
        if (jobid == -1)
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1431
            sprintf(tmp, "The last job cannot be stated.\n");
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1432
        else
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1433
            sprintf(tmp, "The job %i cannot be stated.\n", jobid);
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1434
        send_list_line(s, tmp);
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1435
        return;
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1436
    }
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1437
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1438
    /* Interchange the pointers */
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1439
    send_state(s, p->state);
47be318f4cbc Added "-s" for querying the job state.
viric@llimona
parents: 55
diff changeset
  1440
}
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1441
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1442
static void dump_job_struct(FILE *out, const struct Job *p)
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1443
{
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1444
    fprintf(out, "  new_job\n");
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1445
    fprintf(out, "    jobid %i\n", p->jobid);
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1446
    fprintf(out, "    command \"%s\"\n", p->command);
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1447
    fprintf(out, "    state %s\n",
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1448
            jstate2string(p->state));
112
303834d55e99 More code on times()
viric@mandarina
parents: 104
diff changeset
  1449
    fprintf(out, "    result.errorlevel %i\n", p->result.errorlevel);
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1450
    fprintf(out, "    output_filename \"%s\"\n",
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1451
            p->output_filename ? p->output_filename : "NULL");
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1452
    fprintf(out, "    store_output %i\n", p->store_output);
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1453
    fprintf(out, "    pid %i\n", p->pid);
252
f0af96f58947 Fixing the problem of ts clients being killed. The queue should be reusable
viric@mandarina
parents: 246
diff changeset
  1454
    fprintf(out, "    should_keep_finished %i\n", p->should_keep_finished);
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1455
}
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1456
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1457
void dump_jobs_struct(FILE *out)
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1458
{
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1459
    const struct Job *p;
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1460
104
dc4dd9939238 Fixed error reporting.
viric@llimona
parents: 92
diff changeset
  1461
    fprintf(out, "New_jobs\n");
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1462
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1463
    p = firstjob;
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1464
    while (p != 0)
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1465
    {
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1466
        dump_job_struct(out, p);
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1467
        p = p->next;
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1468
    }
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1469
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1470
    p = first_finished_job;
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1471
    while (p != 0)
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1472
    {
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1473
        dump_job_struct(out, p);
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1474
        p = p->next;
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1475
    }
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 66
diff changeset
  1476
}
120
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1477
254
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1478
static void dump_notify_struct(FILE *out, const struct Notify *n)
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1479
{
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1480
    fprintf(out, "  notify\n");
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1481
    fprintf(out, "    jobid %i\n", n->jobid);
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1482
    fprintf(out, "    socket \"%i\"\n", n->socket);
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1483
}
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1484
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1485
void dump_notifies_struct(FILE *out)
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1486
{
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1487
    const struct Notify *n;
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1488
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1489
    fprintf(out, "New_notifies\n");
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1490
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1491
    n = first_notify;
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1492
    while (n != 0)
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1493
    {
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1494
        dump_notify_struct(out, n);
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1495
        n = n->next;
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1496
    }
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1497
}
41252d5e85f5 Fixed a bug in the notify list, reported by mark meissonnier.
viric@mandarina
parents: 253
diff changeset
  1498
120
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1499
void joblist_dump(int fd)
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1500
{
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1501
    struct Job *p;
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1502
    char *buffer;
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1503
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1504
    buffer = joblistdump_headers();
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1505
    write(fd,buffer, strlen(buffer));
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1506
    free(buffer);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1507
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1508
    /* We reuse the headers from the list */
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1509
    buffer = joblist_headers();
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1510
    write(fd, "# ", 2);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1511
    write(fd, buffer, strlen(buffer));
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1512
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1513
    /* Show Finished jobs */
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1514
    p = first_finished_job;
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1515
    while(p != 0)
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1516
    {
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1517
        buffer = joblist_line(p);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1518
        write(fd, "# ", 2);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1519
        write(fd,buffer, strlen(buffer));
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1520
        free(buffer);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1521
        p = p->next;
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1522
    }
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1523
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1524
    write(fd, "\n", 1);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1525
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1526
    /* Show Queued or Running jobs */
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1527
    p = firstjob;
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1528
    while(p != 0)
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1529
    {
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1530
        buffer = joblistdump_torun(p);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1531
        write(fd,buffer,strlen(buffer));
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1532
        free(buffer);
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1533
        p = p->next;
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1534
    }
790bc4cecd3b Added TS_SAVELIST.
viric@llimona
parents: 117
diff changeset
  1535
}