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