blob: bf38a1b3b66ef6272073b87617f86929c12206ac (
plain) (
blame)
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
|
package com.juick.command;
import com.juick.User;
import com.juick.server.protocol.ProtocolListener;
import lombok.Getter;
import lombok.Setter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.util.Set;
/**
* @author ma1uta
*/
@Component
@Getter
public class Processor {
private static final Logger LOGGER = LoggerFactory.getLogger(Processor.class);
private final Set<Command> commands;
@Setter
private ProtocolListener protocolListener;
@Autowired
public Processor(Set<Command> commands) {
this.commands = commands;
}
public String execute(User sender, String command) {
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Execute command: {}", command);
}
for (Command commandItem : getCommands()) {
if (commandItem.pattern().matcher(command).matches()) {
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Found command processor: {}", commandItem.getClass().getName());
}
return commandItem.execute(sender, command);
}
}
LOGGER.debug("Command processor not found, return help");
return "";
}
}
|