/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2010, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.data.osm.client; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.URL; import java.net.URLConnection; import java.util.ArrayList; import java.util.List; import javax.xml.stream.XMLStreamException; import org.geotoolkit.client.AbstractRequest; import org.geotoolkit.data.osm.model.Transaction; import org.geotoolkit.data.osm.xml.OSMXMLWriter; /** * Abstract implementation of {@link UploadRequest}, which defines the * parameters for a upload request. * * @author Johann Sorel (Geomatys) * @module */ public abstract class AbstractUpload extends AbstractRequest implements UploadRequest{ protected final List<Transaction> transactions = new ArrayList<Transaction>(); protected int changesetId = -1; protected String generator = "GeotoolKit.org"; protected String version = "3"; public AbstractUpload(final OpenStreetMapClient server, final String subPath){ super(server, subPath); } @Override public String getVersion() { return version; } @Override public void setVersion(final String version) { this.version = version; } @Override public String getGenerator() { return generator; } @Override public void setGenerator(final String generator) { this.generator = generator; } @Override public void setChangeSetID(final int id){ this.changesetId = id; } @Override public int getChangeSetID(){ return changesetId; } @Override public List<Transaction> transactions() { return transactions; } @Override public InputStream getResponseStream() throws IOException { final URL url = getURL(); URLConnection conec = url.openConnection(); conec = security.secure(conec); conec.setDoOutput(true); conec.setRequestProperty("Content-Type", "text/xml"); OutputStream stream = conec.getOutputStream(); stream = security.encrypt(stream); try{ final OSMXMLWriter writer = new OSMXMLWriter(); writer.setOutput(stream); writer.writeStartDocument(); writer.writeOSMChangeTag(version, generator); for(Transaction trs : transactions){ writer.writeTransaction(trs); } writer.writeEndDocument(); writer.dispose(); }catch(XMLStreamException ex){ throw new IOException(ex); }finally{ stream.close(); } return openRichException(conec); } }