
org.n52.youngs.impl.ReportImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of main Show documentation
Show all versions of main Show documentation
A mapping platform to load CSW records into Elasticsearch
/*
* Copyright 2015-2016 52°North Initiative for Geospatial Open Source
* Software GmbH
*
* Licensed 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.n52.youngs.impl;
import com.google.common.base.Joiner;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import java.time.LocalTime;
import java.util.Collection;
import java.util.Map;
import org.n52.youngs.api.Report;
/**
*
* @author Daniel Nüst
*/
public class ReportImpl implements Report {
private final Collection added = Lists.newArrayList();
private final Map failed = Maps.newHashMap();
private final Map messages = Maps.newHashMap();
@Override
public int getNumberOfRecordsAdded() {
return added.size();
}
@Override
public int getNumberOfRecordsFailed() {
return failed.size();
}
@Override
public void addSuccessfulRecord(String id) {
added.add(id);
}
@Override
public void addFailedRecord(String id, String reason) {
failed.put(id, reason);
}
public void addFailedRecord(String id) {
failed.put(id, "");
}
@Override
public Collection getAddedIds() {
return added;
}
@Override
public Map getFailedIds() {
return failed;
}
@Override
public void addMessage(String message) {
this.messages.put(LocalTime.now(), message);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("### Report ###\n");
sb.append(" Added: ").append(getNumberOfRecordsAdded()).append("\n");
sb.append(" Failed: ").append(getNumberOfRecordsFailed()).append("\n").append("\n");
sb.append(" Added IDs: ").append(Joiner.on(", ").join(added)).append("\n");
sb.append(" Faild IDs: ").append(Joiner.on(", ").withKeyValueSeparator(": ").join(failed)).append("\n");
sb.append(" Messages: ").append(Joiner.on("; ").withKeyValueSeparator(": ").join(messages)).append("\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy