blob: 13ff41de8dda8f62dddaa77ea00801c2953e336a [file] [log] [blame]
package org.apache.maven.scm.provider.svn.util;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.maven.scm.providers.svn.settings.Settings;
import org.apache.maven.scm.providers.svn.settings.io.xpp3.SvnXpp3Reader;
import org.codehaus.plexus.util.ReaderFactory;
import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
/**
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
* @version $Id$
*/
public class SvnUtil
{
protected static final String SVN_SETTINGS_FILENAME = "svn-settings.xml";
public static final File DEFAULT_SETTINGS_DIRECTORY = new File( System.getProperty( "user.home" ), ".scm" );
private static File settingsDirectory = DEFAULT_SETTINGS_DIRECTORY;
private SvnUtil()
{
}
public static Settings getSettings()
{
File scmUserDir = settingsDirectory;
File settingsFile = new File( scmUserDir, SVN_SETTINGS_FILENAME );
if ( settingsFile.exists() )
{
SvnXpp3Reader reader = new SvnXpp3Reader();
try
{
return reader.read( ReaderFactory.newXmlReader( settingsFile ) );
}
catch ( FileNotFoundException e )
{
//Nothing to do
}
catch ( IOException e )
{
//Nothing to do
}
catch ( XmlPullParserException e )
{
String message = settingsFile.getAbsolutePath() + " isn't well formed. SKIPPED." + e.getMessage();
System.out.println( message );
}
}
return new Settings();
}
public static void setSettingsDirectory( File directory )
{
settingsDirectory = directory;
}
}