/* * P4Java - java integration with Perforce SCM * Copyright (C) 2007-, Mike Wille, Tek42 * * 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; either * version 2.1 of the License, or (at your option) any later version. * * 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. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * You can contact the author at: * * Web: http://tek42.com * Email: mike@tek42.com * Mail: 755 W Big Beaver Road * Suite 1110 * Troy, MI 48084 */ package com.tek42.perforce.parse; import java.io.*; import java.util.*; import com.tek42.perforce.model.*; import com.tek42.perforce.PerforceException; /** * Responsible for building and saving workspaces. * * @author Mike Wille */ public class WorkspaceBuilder extends AbstractFormBuilder<Workspace> { /* * (non-Javadoc) * * @see com.tek42.perforce.parse.Builder#build(java.lang.StringBuilder) */ public Workspace buildForm(Map<String, String> fields) throws PerforceException { Workspace workspace = new Workspace(); workspace.setName(getField("Client", fields)); workspace.setOwner(getField("Owner", fields)); workspace.setHost(getField("Host", fields)); workspace.setRoot(getField("Root", fields)); workspace.setOptions(getField("Options", fields)); workspace.setSubmitOptions(getField("SubmitOptions", fields)); workspace.setLineEnd(getField("LineEnd", fields)); workspace.setAltRoots(getField("AltRoots", fields)); workspace.setDescription(getField("Description", fields)); workspace.setUpdate(getField("Update", fields)); workspace.setAccess(getField("Access", fields)); for(String line : getField("View", fields).split("\\n")) { workspace.addView(line); } workspace.clearDirty(); return workspace; } /* * (non-Javadoc) * * @see com.tek42.perforce.parse.Builder#getBuildCmd(java.lang.String) */ public String[] getBuildCmd(String p4exe, String id) { return new String[] { p4exe, "workspace", "-o", id }; } /* * (non-Javadoc) * * @see com.tek42.perforce.parse.Builder#getSaveCmd() */ public String[] getSaveCmd(String p4exe, Workspace obj) { return new String[] { p4exe, "-s", "client", "-i" }; } /* * (non-Javadoc) * * @see com.tek42.perforce.parse.Builder#save(java.lang.Object) */ public void save(Workspace workspace, Writer out) throws PerforceException { try { out.write("Client: " + workspace.getName() + "\n"); if(!workspace.getOwner().equals("")) out.write("Owner: " + workspace.getOwner() + "\n"); if(!workspace.getHost().equals("")) out.write("Host: " + workspace.getHost() + "\n"); out.write("Description: " + workspace.getDescription() + "\n"); out.write("Root: " + workspace.getRoot() + "\n"); if(!workspace.getAltRoots().equals("")) out.write("AltRoots: " + workspace.getAltRoots() + "\n"); out.write("Options: " + workspace.getOptions() + "\n"); if(!workspace.getSubmitOptions().equals("")) out.write("SubmitOptions: " + workspace.getSubmitOptions() + "\n"); out.write("LineEnd: " + workspace.getLineEnd() + "\n"); out.write("View:\n"); out.write(" " + workspace.getViewsAsString() + "\n"); } catch(IOException e) { throw new PerforceException("Failed to save workspace", e); } } }