/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Nuxeo - initial API and implementation * * $Id: AbstractDocumentWriter.java 29029 2008-01-14 18:38:14Z ldoguin $ */ package org.eclipse.ecr.core.io.impl; import java.io.IOException; import java.util.Collection; import java.util.HashMap; import java.util.Map; import org.dom4j.io.OutputFormat; import org.eclipse.ecr.core.api.DocumentRef; import org.eclipse.ecr.core.io.DocumentTranslationMap; import org.eclipse.ecr.core.io.DocumentWriter; import org.eclipse.ecr.core.io.ExportedDocument; /** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> * */ public abstract class AbstractDocumentWriter implements DocumentWriter { // this abstract method is needed @Override public abstract DocumentTranslationMap write(ExportedDocument doc) throws IOException; @Override public DocumentTranslationMap write(ExportedDocument[] docs) throws IOException { if (docs == null || docs.length == 0) { return null; } String newRepo = null; String oldRepo = null; Map<DocumentRef, DocumentRef> newRefs = new HashMap<DocumentRef, DocumentRef>(); for (ExportedDocument doc : docs) { DocumentTranslationMap newMap = write(doc); if (newMap != null) { newRefs.putAll(newMap.getDocRefMap()); // assume repo will be the same for all docs if (oldRepo == null) { oldRepo = newMap.getOldServerName(); } if (newRepo == null) { newRepo = newMap.getNewServerName(); } } } return new DocumentTranslationMapImpl(oldRepo, newRepo, newRefs); } @Override public DocumentTranslationMap write(Collection<ExportedDocument> docs) throws IOException { if (docs == null || docs.isEmpty()) { return null; } String newRepo = null; String oldRepo = null; Map<DocumentRef, DocumentRef> newRefs = new HashMap<DocumentRef, DocumentRef>(); for (ExportedDocument doc : docs) { DocumentTranslationMap newMap = write(doc); if (newMap != null) { newRefs.putAll(newMap.getDocRefMap()); // assume repo will be the same for all docs if (oldRepo == null) { oldRepo = newMap.getOldServerName(); } if (newRepo == null) { newRepo = newMap.getNewServerName(); } } } return new DocumentTranslationMapImpl(oldRepo, newRepo, newRefs); } public static OutputFormat createPrettyPrint() { OutputFormat format = new OutputFormat(); format.setIndentSize(2); format.setNewlines(true); return format; } public static OutputFormat createCompactFormat() { OutputFormat format = new OutputFormat(); format.setIndent(false); format.setNewlines(false); return format; } }