forked from ysc/QuestionAnsweringSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConsoleDataSource.java
More file actions
154 lines (142 loc) · 5.66 KB
/
ConsoleDataSource.java
File metadata and controls
154 lines (142 loc) · 5.66 KB
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
/**
*
* APDPlat - Application Product Development Platform
* Copyright (c) 2013, 杨尚川, yang-shangchuan@qq.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.apdplat.qa.datasource;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
import org.apdplat.qa.model.Question;
import org.apdplat.qa.system.CommonQuestionAnsweringSystem;
import org.apdplat.qa.system.QuestionAnsweringSystem;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* 从控制台读取问题 依赖GoogleDataSource
*
* @author 杨尚川
*/
public class ConsoleDataSource implements DataSource {
private static final Logger LOG = LoggerFactory.getLogger(ConsoleDataSource.class);
private static final int QUESTION_MINI_LENGTH = 3;
private final DataSource dataSource;
public ConsoleDataSource(DataSource dataSource) {
this.dataSource = dataSource;
}
@Override
public List<Question> getQuestions() {
return getAndAnswerQuestions(null);
}
@Override
public Question getQuestion(String questionStr) {
return null;
}
@Override
public List<Question> getAndAnswerQuestions(QuestionAnsweringSystem questionAnsweringSystem) {
List<Question> questions = new ArrayList<>();
BufferedReader reader = null;
try {
reader = new BufferedReader(new InputStreamReader(System.in, "utf-8"));
Question question = null;
LOG.info("输入问题然后回车,以exit命令结束问题输入:");
String line = reader.readLine();
while (line != null && line.trim().length() > QUESTION_MINI_LENGTH) {
if (line.startsWith("exit")) {
break;
}
if (!line.startsWith("#")) {
//搜索问题的证据并回答问题
//边从控制台中获取问题边解答
String questionStr = null;
String expectAnswer = null;
String[] attrs = line.trim().split("[:|:]");
if (attrs == null) {
questionStr = line.trim();
}
if (attrs != null && attrs.length == 1) {
questionStr = attrs[0];
}
if (attrs != null && attrs.length == 2) {
questionStr = attrs[0];
expectAnswer = attrs[1];
}
LOG.info("Question:" + questionStr);
LOG.info("ExpectAnswer:" + expectAnswer);
//获取证据
//构造问题
question = dataSource.getQuestion(questionStr);
if (question == null) {
LOG.error("未成功检索到问题相关证据");
} else {
question.setExpectAnswer(expectAnswer);
LOG.info(question.toString());
//回答问题
if (questionAnsweringSystem != null && question != null) {
questionAnsweringSystem.answerQuestion(question);
}
questions.add(question);
}
}
LOG.info("输入问题然后回车,以exit命令结束问题输入:");
line = reader.readLine();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return questions;
}
@Override
public Question getAndAnswerQuestion(String questionStr, QuestionAnsweringSystem questionAnsweringSystem) {
return null;
}
/**
* @param args
*/
public static void main(String[] args) {
//Google数据源
DataSource dataSource = new GoogleDataSource();
//控制台数据源
dataSource = new ConsoleDataSource(dataSource);
//人名问答系统
QuestionAnsweringSystem questionAnsweringSystem = new CommonQuestionAnsweringSystem();
//指定控制台数据源
questionAnsweringSystem.setDataSource(dataSource);
//回答问题
questionAnsweringSystem.answerQuestions();
//输出统计信息
questionAnsweringSystem.showPerfectQuestions();
questionAnsweringSystem.showNotPerfectQuestions();
questionAnsweringSystem.showWrongQuestions();
}
}