001package org.apache.maven.scm.provider.local.command.add; 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 org.apache.maven.scm.ScmException; 023import org.apache.maven.scm.ScmFile; 024import org.apache.maven.scm.ScmFileSet; 025import org.apache.maven.scm.ScmFileStatus; 026import org.apache.maven.scm.ScmResult; 027import org.apache.maven.scm.command.add.AbstractAddCommand; 028import org.apache.maven.scm.command.add.AddScmResult; 029import org.apache.maven.scm.provider.ScmProviderRepository; 030import org.apache.maven.scm.provider.local.command.LocalCommand; 031import org.apache.maven.scm.provider.local.repository.LocalScmProviderRepository; 032 033import java.io.File; 034import java.util.ArrayList; 035import java.util.List; 036 037/** 038 * @author <a href="mailto:brett@apache.org">Brett Porter</a> 039 * 040 */ 041public class LocalAddCommand 042 extends AbstractAddCommand 043 implements LocalCommand 044{ 045 /** {@inheritDoc} */ 046 protected ScmResult executeAddCommand( ScmProviderRepository repository, ScmFileSet fileSet, String message, 047 boolean binary ) 048 throws ScmException 049 { 050 LocalScmProviderRepository localRepo = (LocalScmProviderRepository) repository; 051 052 List<ScmFile> fileList = new ArrayList<ScmFile>(); 053 for ( File file : fileSet.getFileList() ) 054 { 055 String path = file.getPath().replace( '\\', '/' ); 056 localRepo.addFile( path ); 057 fileList.add( new ScmFile( path, ScmFileStatus.ADDED ) ); 058 } 059 060 // TODO: Also, ensure it is tested from the update test 061 return new AddScmResult( null, fileList ); 062 } 063}