blob: 89bc8dbbc4e8634eea18b119527abdbb4dcf8fc0 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sqoop.json;
import org.apache.sqoop.validation.Message;
import org.apache.sqoop.validation.Status;
import org.apache.sqoop.validation.ValidationResult;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* Serialize and transfer validation results (0..N).
*/
public class ValidationResultBean implements JsonBean {
private static final String ROOT = "ROOT";
private static final String ID = "ID";
private static final String STATUS = "STATUS";
private static final String TEXT = "TEXT";
private ValidationResult[] results;
private Long id;
public ValidationResultBean() {
// Empty, for restore
}
public ValidationResultBean(ValidationResult ... results) {
this.results = results;
}
public ValidationResult[] getValidationResults() {
return results;
}
public void setId(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
@Override
public JSONObject extract(boolean skipSensitive) {
JSONArray array = new JSONArray();
for(ValidationResult result : results) {
JSONObject output = extractValidationResult(result);
array.add(output);
}
JSONObject object = new JSONObject();
object.put(ROOT, array);
if(id != null) {
object.put(ID, id);
}
return object;
}
private JSONObject extractValidationResult(ValidationResult result) {
JSONObject ret = new JSONObject();
for(Map.Entry<String, List<Message>> entry : result.getMessages().entrySet()) {
ret.put(entry.getKey(), extractMessageList(entry.getValue()));
}
return ret;
}
private Object extractMessageList(List<Message> messages) {
JSONArray array = new JSONArray();
for(Message message : messages) {
array.add(extractMessage(message));
}
return array;
}
private Object extractMessage(Message message) {
JSONObject ret = new JSONObject();
ret.put(STATUS, message.getStatus().toString());
ret.put(TEXT, message.getMessage());
return ret;
}
@Override
public void restore(JSONObject jsonObject) {
JSONArray array = (JSONArray) jsonObject.get(ROOT);
results = new ValidationResult[array.size()];
int i = 0;
for(Object item : array) {
results[i++] = restoreValidationResult((JSONObject) item);
}
if(jsonObject.containsKey(ID)) {
id = (Long) jsonObject.get(ID);
}
}
private ValidationResult restoreValidationResult(JSONObject item) {
ValidationResult result = new ValidationResult();
Set<Map.Entry<String, JSONArray>> entrySet = item.entrySet();
for(Map.Entry<String, JSONArray> entry : entrySet) {
result.addMessages(entry.getKey(), restoreMessageList(entry.getValue()));
}
return result;
}
private List<Message> restoreMessageList(JSONArray array) {
List<Message> messages = new LinkedList<Message>();
for(Object item : array) {
messages.add(restoreMessage((JSONObject)item));
}
return messages;
}
private Message restoreMessage(JSONObject item) {
return new Message(
Status.valueOf((String) item.get(STATUS)),
(String) item.get(TEXT)
);
}
}