001package org.apache.maven.scm.provider.integrity.command.edit; 002 003/* 004 * Licensed to the Apache Software Foundation (ASF) under one 005 * or more contributor license agreements. See the NOTICE file 006 * distributed with this work for additional information 007 * regarding copyright ownership. The ASF licenses this file 008 * to you under the Apache License, Version 2.0 (the 009 * "License"); you may not use this file except in compliance 010 * with the License. You may obtain a copy of the License at 011 * 012 * http://www.apache.org/licenses/LICENSE-2.0 013 * 014 * Unless required by applicable law or agreed to in writing, 015 * software distributed under the License is distributed on an 016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 017 * KIND, either express or implied. See the License for the 018 * specific language governing permissions and limitations 019 * under the License. 020 */ 021 022import com.mks.api.response.APIException; 023import com.mks.api.response.Response; 024import org.apache.maven.scm.ScmException; 025import org.apache.maven.scm.ScmFileSet; 026import org.apache.maven.scm.command.edit.AbstractEditCommand; 027import org.apache.maven.scm.command.edit.EditScmResult; 028import org.apache.maven.scm.provider.ScmProviderRepository; 029import org.apache.maven.scm.provider.integrity.ExceptionHandler; 030import org.apache.maven.scm.provider.integrity.Sandbox; 031import org.apache.maven.scm.provider.integrity.repository.IntegrityScmProviderRepository; 032 033/** 034 * MKS Integrity implementation for Maven's AbstractEditCommand 035 * <br>Since it does not make sense to lock all files in the Sandbox, 036 * this command will make all of the working files writable in the Sandbox 037 * 038 * @author <a href="mailto:cletus@mks.com">Cletus D'Souza</a> 039 * @version $Id: IntegrityEditCommand.java 1.3 2011/08/22 13:06:25EDT Cletus D'Souza (dsouza) Exp $ 040 * @since 1.6 041 */ 042public class IntegrityEditCommand 043 extends AbstractEditCommand 044{ 045 /** 046 * {@inheritDoc} 047 */ 048 @Override 049 public EditScmResult executeEditCommand( ScmProviderRepository repository, ScmFileSet fileSet ) 050 throws ScmException 051 { 052 getLogger().info( "Attempting make files writeable in Sandbox " + fileSet.getBasedir().getAbsolutePath() ); 053 EditScmResult result; 054 IntegrityScmProviderRepository iRepo = (IntegrityScmProviderRepository) repository; 055 try 056 { 057 Sandbox siSandbox = iRepo.getSandbox(); 058 Response res = siSandbox.makeWriteable(); 059 int exitCode = res.getExitCode(); 060 boolean success = ( exitCode == 0 ? true : false ); 061 result = new EditScmResult( res.getCommandString(), "", "Exit Code: " + exitCode, success ); 062 } 063 catch ( APIException aex ) 064 { 065 ExceptionHandler eh = new ExceptionHandler( aex ); 066 getLogger().error( "MKS API Exception: " + eh.getMessage() ); 067 getLogger().info( eh.getCommand() + " exited with return code " + eh.getExitCode() ); 068 result = new EditScmResult( eh.getCommand(), eh.getMessage(), "Exit Code: " + eh.getExitCode(), false ); 069 } 070 071 return result; 072 } 073 074}