[LIB-9] Delete garbage
[chesshog.git] / src / main / java / org / hedgecode / chess / hedgefish / HedgefishTransmitter.java
1 /*
2  * Copyright (c) 2018. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.hedgefish;
18
19 import java.util.LinkedList;
20 import java.util.Queue;
21
22 import org.hedgecode.chess.uci.Transmitter;
23
24 /**
25  *
26  *
27  * @author Dmitry Samoshin aka gotty
28  */
29 public class HedgefishTransmitter implements Transmitter<HedgefishCommand> {
30
31     private Queue<HedgefishCommand> queue;
32     private boolean isActive;
33
34     HedgefishTransmitter() {
35         queue = new LinkedList<>();
36         isActive = true;
37     }
38
39     @Override
40     public boolean isActive() {
41         return isActive && queue.isEmpty();
42     }
43
44     @Override
45     public boolean hasCommand() {
46         return !queue.isEmpty();
47     }
48
49     @Override
50     public HedgefishCommand transmitCommand() {
51         return queue.poll();
52     }
53
54     @Override
55     public void addCommand(HedgefishCommand command) {
56         if (isActive)
57             queue.add(command);
58     }
59
60     @Override
61     public void stop() {
62         isActive = false;
63     }
64
65     @Override
66     public void close() {
67         queue.clear();
68     }
69
70 }