summaryrefslogtreecommitdiffstats
blob: 3a1805c1d63ecf801490f49b4839ddc97408116a (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
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */
/*
 * Copyright (c) 2011, Isode Limited, London, England.
 * All rights reserved.
 */
package com.isode.stroke.streamstack;

import com.isode.stroke.base.SafeByteArray;
import com.isode.stroke.network.Timer;
import com.isode.stroke.network.TimerFactory;
import com.isode.stroke.signals.Slot;

public class WhitespacePingLayer extends StreamLayer {

    private static final int TIMEOUT_MILLISECONDS = 60000;

    public WhitespacePingLayer(TimerFactory timerFactory) {
        isActive = false;
        timer = timerFactory.createTimer(TIMEOUT_MILLISECONDS);
        timer.onTick.connect(new Slot() {
           public void call() {
               handleTimerTick();
           }
        });
    }

    public void writeData(SafeByteArray data) {
        writeDataToChildLayer(data);
    }

    public void handleDataRead(SafeByteArray data) {
        writeDataToParentLayer(data);
    }

    private void handleTimerTick() {
        timer.stop();
        writeDataToChildLayer(new SafeByteArray(" "));
        timer.start();
    }

    public void setActive() {
        isActive = true;
        timer.start();
    }

    public void setInactive() {
        timer.stop();
        isActive = false;
    }

    public boolean getIsActive() {
        return isActive;
    }

    private boolean isActive;
    private Timer timer;
}