File size: 1,795 Bytes
19605ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
// Just emits "rotate" events at the right time.
// Does not know about a rotating file stream.
'use strict';

var assert = require('assert');
var EventEmitter = require('events').EventEmitter;
var _ = require('lodash');
var fs = require('fs');

var optionParser = require('./optionParser');
var nextRotTime = require('./nextrotationtime');

var _DEBUG = false;

function InitialPeriodRotateTrigger(options) {
    var base = new EventEmitter;

    var periodNum = 1;
    var periodScope = 'd';

    var rotatingoldfiles = true;

    function shutdown() {
    }

    function checkIfRotationNeeded(birthtime, now) {
        var nextRot = birthtime;
        var lastRot = birthtime;
        while (nextRot < now) {
            lastRot = nextRot;
            nextRot = nextRotTime(lastRot, periodScope, periodNum);
        }

        return { needsRotation: lastRot != birthtime, rotateTo: lastRot };
    }

    function newFile(data) {
        if (rotatingoldfiles) {
            // First setup, see if the file is old and needs rotating
            rotatingoldfiles = false;
            var rotation = checkIfRotationNeeded(data.stats.birthtime.getTime(), new Date().getTime());
            if (rotation.needsRotation) {
                // The current file is old enough to need a rotation.
                base.emit('rotate', {date: rotation.rotateTo});
            }
        }
    }

    function logWrite() {
        // Do nothing
    }

    var parsed = optionParser.parsePeriod(options.period);
    periodScope = parsed.periodScope;
    periodNum = parsed.periodNum;

    return _.extend({}, {
        newFile: newFile,
        logWrite: logWrite,
        shutdown: shutdown,
        checkIfRotationNeeded: checkIfRotationNeeded},
    base);
};

module.exports = InitialPeriodRotateTrigger;