2010-10-20 22:45:52 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright 2010, Google Inc.
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are
|
|
|
|
met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the following disclaimer
|
|
|
|
in the documentation and/or other materials provided with the
|
|
|
|
distribution.
|
|
|
|
* Neither the name of Google Inc. nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived from
|
|
|
|
this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2010-09-22 19:04:10 +02:00
|
|
|
package com.google.refine.model;
|
2010-02-27 00:33:16 +01:00
|
|
|
|
2010-03-06 08:43:45 +01:00
|
|
|
import java.io.Writer;
|
2010-02-27 00:33:16 +01:00
|
|
|
import java.util.Properties;
|
|
|
|
|
|
|
|
import org.json.JSONException;
|
2010-03-06 08:43:45 +01:00
|
|
|
import org.json.JSONObject;
|
2010-02-27 00:33:16 +01:00
|
|
|
import org.json.JSONWriter;
|
|
|
|
|
2010-09-22 19:04:10 +02:00
|
|
|
import com.google.refine.Jsonizable;
|
|
|
|
import com.google.refine.expr.ExpressionUtils;
|
|
|
|
import com.google.refine.model.Recon.Judgment;
|
2010-02-27 00:33:16 +01:00
|
|
|
|
2010-03-07 23:37:26 +01:00
|
|
|
public class ReconStats implements Jsonizable {
|
2010-03-06 09:03:29 +01:00
|
|
|
static public ReconStats load(JSONObject obj) throws Exception {
|
2010-03-06 08:43:45 +01:00
|
|
|
return new ReconStats(
|
|
|
|
obj.getInt("nonBlanks"),
|
|
|
|
obj.getInt("newTopics"),
|
|
|
|
obj.getInt("matchedTopics")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-03-03 05:19:58 +01:00
|
|
|
final public int nonBlanks;
|
|
|
|
final public int newTopics;
|
|
|
|
final public int matchedTopics;
|
2010-02-27 00:33:16 +01:00
|
|
|
|
|
|
|
public ReconStats(int nonBlanks, int newTopics, int matchedTopics) {
|
|
|
|
this.nonBlanks = nonBlanks;
|
|
|
|
this.newTopics = newTopics;
|
|
|
|
this.matchedTopics = matchedTopics;
|
|
|
|
}
|
|
|
|
|
2011-08-02 21:30:23 +02:00
|
|
|
@Override
|
2010-02-27 00:33:16 +01:00
|
|
|
public void write(JSONWriter writer, Properties options)
|
|
|
|
throws JSONException {
|
|
|
|
|
|
|
|
writer.object();
|
2010-03-03 05:19:58 +01:00
|
|
|
writer.key("nonBlanks"); writer.value(nonBlanks);
|
|
|
|
writer.key("newTopics"); writer.value(newTopics);
|
|
|
|
writer.key("matchedTopics"); writer.value(matchedTopics);
|
2010-02-27 00:33:16 +01:00
|
|
|
writer.endObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
static public ReconStats create(Project project, int cellIndex) {
|
2010-03-03 05:19:58 +01:00
|
|
|
int nonBlanks = 0;
|
|
|
|
int newTopics = 0;
|
|
|
|
int matchedTopics = 0;
|
|
|
|
|
|
|
|
for (Row row : project.rows) {
|
|
|
|
Cell cell = row.getCell(cellIndex);
|
|
|
|
if (cell != null && ExpressionUtils.isNonBlankData(cell.value)) {
|
|
|
|
nonBlanks++;
|
|
|
|
|
|
|
|
if (cell.recon != null) {
|
|
|
|
if (cell.recon.judgment == Judgment.New) {
|
|
|
|
newTopics++;
|
|
|
|
} else if (cell.recon.judgment == Judgment.Matched) {
|
|
|
|
matchedTopics++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new ReconStats(nonBlanks, newTopics, matchedTopics);
|
2010-02-27 00:33:16 +01:00
|
|
|
}
|
2010-03-06 08:43:45 +01:00
|
|
|
|
|
|
|
public void save(Writer writer) {
|
|
|
|
JSONWriter jsonWriter = new JSONWriter(writer);
|
|
|
|
try {
|
|
|
|
write(jsonWriter, new Properties());
|
|
|
|
} catch (JSONException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
2010-02-27 00:33:16 +01:00
|
|
|
}
|