Skip to content

Commit e46e44b

Browse files
authored
Merge pull request huaban#132 from sharkdoodoo/out-print-switch
huaban#81 add switch to support enable/disable System output
2 parents 118cc63 + fa9abd6 commit e46e44b

File tree

3 files changed

+40
-20
lines changed

3 files changed

+40
-20
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package com.huaban.analysis.jieba;
2+
3+
/**
4+
* @description: enable output content to be controlled by switch
5+
* @author: [email protected]
6+
* @date: 2022/6/21
7+
*/
8+
public class Log {
9+
10+
private static final boolean LOG_ENABLE = Boolean.parseBoolean(System.getProperty("jieba.log.enable", "true"));
11+
12+
public static final void debug(String debugInfo) {
13+
if (LOG_ENABLE) {
14+
System.out.println(debugInfo);
15+
}
16+
}
17+
18+
public static final void error(String errorInfo) {
19+
if (LOG_ENABLE) {
20+
System.err.println(errorInfo);
21+
}
22+
}
23+
}

src/main/java/com/huaban/analysis/jieba/WordDictionary.java

+13-17
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static WordDictionary getInstance() {
5454
*/
5555
public void init(Path configFile) {
5656
String abspath = configFile.toAbsolutePath().toString();
57-
System.out.println("initialize user dictionary:" + abspath);
57+
Log.debug("initialize user dictionary:" + abspath);
5858
synchronized (WordDictionary.class) {
5959
if (loadedPath.contains(abspath))
6060
return;
@@ -63,14 +63,12 @@ public void init(Path configFile) {
6363
try {
6464
stream = Files.newDirectoryStream(configFile, String.format(Locale.getDefault(), "*%s", USER_DICT_SUFFIX));
6565
for (Path path: stream){
66-
System.err.println(String.format(Locale.getDefault(), "loading dict %s", path.toString()));
66+
Log.error(String.format(Locale.getDefault(), "loading dict %s", path.toString()));
6767
singleton.loadUserDict(path);
6868
}
6969
loadedPath.add(abspath);
7070
} catch (IOException e) {
71-
// TODO Auto-generated catch block
72-
// e.printStackTrace();
73-
System.err.println(String.format(Locale.getDefault(), "%s: load user dict failure!", configFile.toString()));
71+
Log.error(String.format(Locale.getDefault(), "%s: load user dict failure!", configFile.toString()));
7472
}
7573
}
7674
}
@@ -80,13 +78,11 @@ public void init(String[] paths) {
8078
for (String path: paths){
8179
if (!loadedPath.contains(path)) {
8280
try {
83-
System.out.println("initialize user dictionary: " + path);
81+
Log.debug("initialize user dictionary: " + path);
8482
singleton.loadUserDict(path);
8583
loadedPath.add(path);
8684
} catch (Exception e) {
87-
// TODO Auto-generated catch block
88-
e.printStackTrace();
89-
System.err.println(String.format(Locale.getDefault(), "%s: load user dict failure!", path));
85+
Log.error(String.format(Locale.getDefault(), "%s: load user dict failure!", path));
9086
}
9187
}
9288
}
@@ -127,19 +123,19 @@ public void loadDict() {
127123
entry.setValue((Math.log(entry.getValue() / total)));
128124
minFreq = Math.min(entry.getValue(), minFreq);
129125
}
130-
System.out.println(String.format(Locale.getDefault(), "main dict load finished, time elapsed %d ms",
131-
System.currentTimeMillis() - s));
126+
Log.debug(String.format(Locale.getDefault(), "main dict load finished, time elapsed %d ms",
127+
System.currentTimeMillis() - s));
132128
}
133129
catch (IOException e) {
134-
System.err.println(String.format(Locale.getDefault(), "%s load failure!", MAIN_DICT));
130+
Log.error(String.format(Locale.getDefault(), "%s load failure!", MAIN_DICT));
135131
}
136132
finally {
137133
try {
138134
if (null != is)
139135
is.close();
140136
}
141137
catch (IOException e) {
142-
System.err.println(String.format(Locale.getDefault(), "%s close failure!", MAIN_DICT));
138+
Log.error(String.format(Locale.getDefault(), "%s close failure!", MAIN_DICT));
143139
}
144140
}
145141
}
@@ -187,11 +183,11 @@ public void loadUserDict(Path userDict, Charset charset) {
187183
freqs.put(word, Math.log(freq / total));
188184
count++;
189185
}
190-
System.out.println(String.format(Locale.getDefault(), "user dict %s load finished, tot words:%d, time elapsed:%dms", userDict.toString(), count, System.currentTimeMillis() - s));
186+
Log.debug(String.format(Locale.getDefault(), "user dict %s load finished, tot words:%d, time elapsed:%dms", userDict.toString(), count, System.currentTimeMillis() - s));
191187
br.close();
192188
}
193189
catch (IOException e) {
194-
System.err.println(String.format(Locale.getDefault(), "%s: load user dict failure!", userDict.toString()));
190+
Log.error(String.format(Locale.getDefault(), "%s: load user dict failure!", userDict.toString()));
195191
}
196192
}
197193

@@ -220,11 +216,11 @@ public void loadUserDict(String userDictPath, Charset charset) {
220216
freqs.put(word, Math.log(freq / total));
221217
count++;
222218
}
223-
System.out.println(String.format(Locale.getDefault(), "user dict %s load finished, tot words:%d, time elapsed:%dms", userDictPath, count, System.currentTimeMillis() - s));
219+
Log.debug(String.format(Locale.getDefault(), "user dict %s load finished, tot words:%d, time elapsed:%dms", userDictPath, count, System.currentTimeMillis() - s));
224220
br.close();
225221
}
226222
catch (IOException e) {
227-
System.err.println(String.format(Locale.getDefault(), "%s: load user dict failure!", userDictPath));
223+
Log.error(String.format(Locale.getDefault(), "%s: load user dict failure!", userDictPath));
228224
}
229225
}
230226

src/main/java/com/huaban/analysis/jieba/viterbi/FinalSeg.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import java.util.Collections;
1515

1616
import com.huaban.analysis.jieba.CharacterUtil;
17+
import com.huaban.analysis.jieba.Log;
1718
import com.huaban.analysis.jieba.Pair;
1819
import com.huaban.analysis.jieba.Node;
1920

@@ -92,18 +93,18 @@ private void loadModel() {
9293
}
9394
}
9495
catch (IOException e) {
95-
System.err.println(String.format(Locale.getDefault(), "%s: load model failure!", PROB_EMIT));
96+
Log.error(String.format(Locale.getDefault(), "%s: load model failure!", PROB_EMIT));
9697
}
9798
finally {
9899
try {
99100
if (null != is)
100101
is.close();
101102
}
102103
catch (IOException e) {
103-
System.err.println(String.format(Locale.getDefault(), "%s: close failure!", PROB_EMIT));
104+
Log.error(String.format(Locale.getDefault(), "%s: close failure!", PROB_EMIT));
104105
}
105106
}
106-
System.out.println(String.format(Locale.getDefault(), "model load finished, time elapsed %d ms.",
107+
Log.debug(String.format(Locale.getDefault(), "model load finished, time elapsed %d ms.",
107108
System.currentTimeMillis() - s));
108109
}
109110

0 commit comments

Comments
 (0)