aboutsummaryrefslogtreecommitdiff
path: root/src/stable/minicron.cpp
blob: 7d095c018dc666e50ca2d6c1778fdb1a6641da51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
/*
 * Copyright (C) 2007-2023 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "bu/minicron.h"

#include <stdlib.h>
#include <time.h>

Bu::MiniCron::MiniCron() :
    jidNext( 1 )
{
}

Bu::MiniCron::~MiniCron()
{
    while( !hJobs.isEmpty() )
    {
        delete hJobs.dequeue();
    }
}

bool Bu::MiniCron::hasJobs()
{
    return !hJobs.isEmpty();
}

time_t Bu::MiniCron::getNextRun()
{
    if( hasJobs() )
        return hJobs.peek()->getNextRun();
    return -1;
}

time_t Bu::MiniCron::getNextRun( Bu::MiniCron::JobId jid )
{
    for( JobHeap::iterator i = hJobs.begin(); i; i++ )
    {
        if( (*i)->getId() == jid )
        {
            return (*i)->getNextRunTime();
        }
    }
    return -1;
}

void Bu::MiniCron::poll()
{
    time_t tNow = time( NULL );

    while( !hJobs.isEmpty() )
    {
        if( hJobs.peek()->getNextRun() <= tNow )
        {
            Job *pJob = hJobs.dequeue();
            pJob->run();
            if( pJob->bContinue )
            {
                hJobs.enqueue( pJob );
            }
            else
            {
                delete pJob;
            }
        }
        else
        {
            break;
        }
    }
}

Bu::MiniCron::JobId Bu::MiniCron::addJob( const Bu::String &sName,
        Bu::MiniCron::CronSignal sigJob, const Bu::MiniCron::Timer &t )
{
    JobId jid = jidNext++;
    Job *pJob = new Job( sName, jid );
    pJob->sigJob = sigJob;
    pJob->pTimer = t.clone();
    pJob->tNextRun = pJob->pTimer->nextTime();
    hJobs.enqueue( pJob );

    return jid;
}

Bu::MiniCron::JobId Bu::MiniCron::addJobOnce( const Bu::String &sName,
        Bu::MiniCron::CronSignal sigJob, const Bu::MiniCron::Timer &t )
{
    JobId jid = jidNext++;
    Job *pJob = new Job( sName, jid, false );
    pJob->sigJob = sigJob;
    pJob->pTimer = t.clone();
    pJob->tNextRun = pJob->pTimer->nextTime();
    hJobs.enqueue( pJob );

    return jid;
}

void Bu::MiniCron::removeJob( JobId jid )
{
    Bu::List<Job *> lJobs;
    while( !hJobs.isEmpty() )
    {
        Job *pJob = hJobs.dequeue();
        if( pJob->getId() == jid )
        {
            delete pJob;
        }
        else
            lJobs.append( pJob );
    }

    for( Bu::List<Job *>::iterator i = lJobs.begin(); i; i++ )
    {
        hJobs.enqueue( *i );
    }
}

void Bu::MiniCron::runJob( JobId jid, bool bReschedule )
{
    Bu::List<Job *> lJobs;
    while( !hJobs.isEmpty() )
    {
        Job *pJob = hJobs.dequeue();
        if( pJob->getId() == jid )
        {
            pJob->run( bReschedule );
            if( !pJob->bContinue )
            {
                delete pJob;
                break;
            }
            lJobs.append( pJob );
            break;
        }
        lJobs.append( pJob );
    }

    for( Bu::List<Job *>::iterator i = lJobs.begin(); i; i++ )
    {
        hJobs.enqueue( *i );
    }
}

void Bu::MiniCron::runJob( const Bu::String &sName, bool bReschedule )
{
    Bu::List<Job *> lJobs;
    while( !hJobs.isEmpty() )
    {
        Job *pJob = hJobs.dequeue();
        if( pJob->getName() == sName )
        {
            pJob->run( bReschedule );
            if( !pJob->bContinue )
            {
                delete pJob;
                break;
            }
            lJobs.append( pJob );
            break;
        }
        lJobs.append( pJob );
    }

    for( Bu::List<Job *>::iterator i = lJobs.begin(); i; i++ )
    {
        hJobs.enqueue( *i );
    }
}

Bu::MiniCron::JobInfoList Bu::MiniCron::getJobInfo()
{
    JobInfoList lRet;
    for( JobHeap::iterator i = hJobs.begin(); i; i++ )
    {
        lRet.append(
            JobInfo( (*i)->getName(), (*i)->getId(), (*i)->getNextRun() )
            );
    }
    lRet.sort();
    return lRet;
}

Bu::MiniCron::Job::Job( const Bu::String &sName, JobId jid, bool bRepeat ) :
    sName( sName ),
    pTimer( NULL ),
    bContinue( bRepeat ),
    jid( jid ),
    tAdded( time( NULL ) ),
    iRunCount( 0 )
{
}

Bu::MiniCron::Job::~Job()
{
    delete pTimer;
    pTimer = NULL;
}

void Bu::MiniCron::Job::run( bool bReschedule )
{
    iRunCount++;
    if( bReschedule )
        tNextRun = pTimer->nextTime();
    sigJob( *this );
}

time_t Bu::MiniCron::Job::getNextRun() const
{
    return tNextRun;
}

void Bu::MiniCron::Job::calcNextRun()
{
    if( pTimer )
        tNextRun = pTimer->nextTime();
}

void Bu::MiniCron::Job::setTimer( const Timer &t )
{
    delete pTimer;
    pTimer = t.clone();
}

void Bu::MiniCron::Job::stop()
{
    bContinue = false;
}

void Bu::MiniCron::Job::resume()
{
    bContinue = true;
}

Bu::MiniCron::JobId Bu::MiniCron::Job::getId() const
{
    return jid;
}

time_t Bu::MiniCron::Job::getTimeCreated() const
{
    return tAdded;
}

int Bu::MiniCron::Job::getRunCount() const
{
    return iRunCount;
}

time_t Bu::MiniCron::Job::getNextRunTime() const
{
    return tNextRun;
}

Bu::String Bu::MiniCron::Job::getName() const
{
    return sName;
}

Bu::MiniCron::JobInfo::JobInfo( const Bu::String &sName, JobId jid,
        time_t tNext ) :
    sName( sName ),
    jid( jid ),
    tNext( tNext )
{
}

Bu::MiniCron::JobInfo::~JobInfo()
{
}

bool Bu::MiniCron::JobInfo::operator<( const JobInfo &rhs ) const
{
    return jid < rhs.jid;
}

Bu::MiniCron::Timer::Timer()
{
}

Bu::MiniCron::Timer::~Timer()
{
}

Bu::MiniCron::TimerInterval::TimerInterval( time_t tFirst, time_t tInterval ) :
    tNext( tFirst ),
    tInterval( tInterval )
{
}

Bu::MiniCron::TimerInterval::~TimerInterval()
{
}

time_t Bu::MiniCron::TimerInterval::nextTime()
{
    time_t tRet = tNext;
    tNext += tInterval;
    return tRet;
}

Bu::MiniCron::TimerBasic::TimerBasic( const Bu::String &s ) :
    tLast( -1 ),
    sSpec( s )
{
}

Bu::MiniCron::TimerBasic::~TimerBasic()
{
}

time_t Bu::MiniCron::TimerBasic::nextTime()
{
    if( tLast == -1 )
        tLast = time( NULL );

    Bu::String::const_iterator i = const_cast<const Bu::String &>(sSpec).begin();
    switch( lex( i ) )
    {
        case tokDaily:
            {
                int iHour = lexInt( i );
                int iMin = lexInt( i );

                struct tm t;
                ::memcpy( &t, localtime( &tLast ), sizeof(struct tm) );
                if( iHour < t.tm_hour ||
                    (iHour == t.tm_hour && iMin <= t.tm_min) )
                {
                    t.tm_mday++;
                }
                t.tm_hour = iHour;
                t.tm_min = iMin;
                t.tm_sec = 0;
                tLast = mktime( &t );
            }
            break;

        case tokHourly:
            {
                int iMin = lexInt( i );

                struct tm t;
                ::memcpy( &t, localtime( &tLast ), sizeof(struct tm) );
                if( iMin <= t.tm_min )
                    t.tm_hour++;
                t.tm_min = iMin;
                t.tm_sec = 0;
                tLast = mktime( &t );
            }
            break;

        case tokWeekly:
            {
                int iDay = lexInt( i );
                int iHour = lexInt( i );
                int iMin = lexInt( i );
                
                struct tm t;
                ::memcpy( &t, localtime( &tLast ), sizeof(struct tm) );
                if( iDay < t.tm_wday || 
                    (iDay == t.tm_wday && iHour < t.tm_hour) ||
                    (iDay == t.tm_wday && iHour == t.tm_hour
                     && iMin <= t.tm_min) )
                {
                    if( iDay <= t.tm_wday )
                        t.tm_mday += 7 - (t.tm_wday-iDay);
                    else
                        t.tm_mday += 7 - (iDay-t.tm_wday);
                }
                else
                {
                    t.tm_mday += (iDay-t.tm_wday);
                }
                t.tm_hour = iHour;
                t.tm_min = iMin;
                t.tm_sec = 0;
                tLast = mktime( &t );
            }
            break;

        case tokMonthly:
            break;

        case tokYearly:
            break;

        default:
            break;
    }

    return tLast;
}

Bu::MiniCron::TimerBasic::Token Bu::MiniCron::TimerBasic::lex(
        Bu::String::const_iterator &i )
{
    if( !i )
    {
        return tokEos;
    }

    Bu::String::const_iterator b = i;

    for(; b && (*b == ' ' || *b == '\t'); b++ ) { i = b+1; }
    for(; b && *b != ' ' && *b != '\t'; b++ ) { }

    Bu::String sTok( i, b );
    i = b;

    if( sTok == "daily" )
        return tokDaily;
    else if( sTok == "hourly" )
        return tokHourly;
    else if( sTok == "weekly" )
        return tokWeekly;
    else if( sTok == "monthly" )
        return tokMonthly;
    else if( sTok == "yearly" )
        return tokYearly;
    else if( sTok == "sun" )
    {
        iVal = 0;
        return valInt;
    }
    else if( sTok == "mon" )
    {
        iVal = 1;
        return valInt;
    }
    else if( sTok == "tue" )
    {
        iVal = 2;
        return valInt;
    }
    else if( sTok == "wed" )
    {
        iVal = 3;
        return valInt;
    }
    else if( sTok == "thu" )
    {
        iVal = 4;
        return valInt;
    }
    else if( sTok == "fri" )
    {
        iVal = 5;
        return valInt;
    }
    else if( sTok == "sat" )
    {
        iVal = 6;
        return valInt;
    }
    else if( sTok[0] >= '0' && sTok[0] <= '9' )
    {
        iVal = strtol( sTok.getStr(), NULL, 0 );
        return valInt;
    }

    return tokErr;
}

int Bu::MiniCron::TimerBasic::lexInt( Bu::String::const_iterator &i )
{
    Token t = lex( i );
    if( t == tokEos )
        return 0;
    if( t != valInt )
        throw Bu::ExceptionBase("Expected int, got something else.");
    return iVal;
}