package org.apache.maven.repository.manager.web.action;
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed 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 com.opensymphony.xwork.Action;
import com.opensymphony.webwork.interceptor.ParameterAware;
import org.apache.maven.repository.manager.web.utils.ConfigurationManager;
-
/**
* @author <a href="mailto:oching@apache.org">Maria Odea Ching</a>
- *
* @plexus.component role="com.opensymphony.xwork.Action" role-hint="org.apache.maven.repository.manager.web.action.IndexConfigurationAction"
*/
public class IndexConfigurationAction
*/
private ConfigurationManager configManager;
- public Map getParameters() {
+ public Map getParameters()
+ {
return parameters;
}
- public void setParameters(Map parameters) {
+ public void setParameters( Map parameters )
+ {
this.parameters = parameters;
}
/**
* Method that is executed when the action is invoked.
*
- * @return a String that specifies where to go to next
+ * @return a String that specifies where to go to next
* @throws Exception
*/
public String execute()
{
String[] discoverSnapshots = (String[]) parameters.get( ConfigurationManager.DISCOVER_SNAPSHOTS );
String[] minimalIndexPath = (String[]) parameters.get( ConfigurationManager.MIN_INDEXPATH );
- if( minimalIndexPath != null && minimalIndexPath.length == 1 && minimalIndexPath[0] != null )
+ if ( minimalIndexPath != null && minimalIndexPath.length == 1 && minimalIndexPath[0] != null )
{
map.put( ConfigurationManager.MIN_INDEXPATH, minimalIndexPath[0] );
}
map.put( ConfigurationManager.INDEXPATH, indexPath[0] );
map.put( ConfigurationManager.DISCOVER_SNAPSHOTS, discoverSnapshots[0] );
- String[] blacklistPatterns = ( String[] ) parameters.get( ConfigurationManager.DISCOVERY_BLACKLIST_PATTERNS );
- if( blacklistPatterns != null && blacklistPatterns.length == 1 && blacklistPatterns[0] != null )
- {
+ String[] blacklistPatterns = (String[]) parameters.get( ConfigurationManager.DISCOVERY_BLACKLIST_PATTERNS );
+ if ( blacklistPatterns != null && blacklistPatterns.length == 1 && blacklistPatterns[0] != null )
+ {
map.put( ConfigurationManager.DISCOVERY_BLACKLIST_PATTERNS, blacklistPatterns[0] );
}
package org.apache.maven.repository.manager.web.utils;
-import org.dom4j.Document;
-import org.dom4j.DocumentException;
-import org.dom4j.Element;
-import org.dom4j.io.SAXReader;
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed 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.repository.configuration.Configuration;
import org.apache.maven.repository.configuration.io.xpp3.ConfigurationXpp3Writer;
+import org.apache.maven.repository.configuration.io.xpp3.ConfigurationXpp3Reader;
+import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Writer;
+import java.io.Reader;
+import java.io.FileReader;
+import java.io.FileNotFoundException;
import java.net.URL;
import java.util.Iterator;
import java.util.Map;
-import java.util.HashMap;
/**
- * This class updates the configuration in plexus.xml
+ * This class updates/sets the configuration values in the mrm-admin-config.xml file used
+ * for discovery and indexing.
*
* @plexus.component role="org.apache.maven.repository.manager.web.utils.ConfigurationManager"
*/
public static final String DISCOVERY_BLACKLIST_PATTERNS = "discoveryBlacklistPatterns";
-
private Configuration config;
private File plexusDescriptor;
- private Document document;
-
/**
- * Method for updating the configuration in plexus.xml
+ * Method for updating the configuration in mrm-admin-config.xml
*
- * @param map contains the fields and the values to be updated in the configuration
+ * @param map contains the fields and the values to be updated in the configuration
*/
public void updateConfiguration( Map map )
throws IOException
try
{
- document = readXmlDocument( file );
+ config = readXmlDocument( file );
}
- catch ( DocumentException de )
+ catch ( XmlPullParserException de )
{
de.printStackTrace();
}
- Element rootElement = document.getRootElement();
- for( Iterator iter2 = rootElement.elementIterator(); iter2.hasNext(); )
- {
- Element field = (Element) iter2.next();
- if( !map.containsKey( field.getName() ) )
- {
- map.put( field.getName(), field.getData() );
- }
- }
-
- for( Iterator iter = map.entrySet().iterator();iter.hasNext(); )
+ for ( Iterator iter = map.entrySet().iterator(); iter.hasNext(); )
{
Map.Entry entry = (Map.Entry) iter.next();
String name = (String) entry.getKey();
- String value = ( String ) entry.getValue();
+ String value = (String) entry.getValue();
- if( name.equals( DISCOVERY_CRON_EXPRESSION ) )
+ if ( name.equals( DISCOVERY_CRON_EXPRESSION ) )
{
config.setDiscoveryCronExpression( value );
}
- if( name.equals( REPOSITORY_LAYOUT ) )
+ if ( name.equals( REPOSITORY_LAYOUT ) )
{
config.setRepositoryLayout( value );
}
- if( name.equals( DISCOVER_SNAPSHOTS ) )
+ if ( name.equals( DISCOVER_SNAPSHOTS ) )
{
config.setDiscoverSnapshots( Boolean.getBoolean( value ) );
}
- if( name.equals( REPOSITORY_DIRECTORY ) )
+ if ( name.equals( REPOSITORY_DIRECTORY ) )
{
config.setRepositoryDirectory( value );
}
- if( name.equals( INDEXPATH ) )
+ if ( name.equals( INDEXPATH ) )
{
config.setIndexPath( value );
}
- if( name.equals( MIN_INDEXPATH ) )
+ if ( name.equals( MIN_INDEXPATH ) )
{
config.setMinimalIndexPath( value );
}
- if( name.equals( DISCOVERY_BLACKLIST_PATTERNS ) )
+ if ( name.equals( DISCOVERY_BLACKLIST_PATTERNS ) )
{
config.setDiscoveryBlackListPatterns( value );
}
}
/**
- * Method that gets the properties set in the index-config.xml for the configuration fields
+ * Method that gets the properties set in the mrm-admin-config.xml for the configuration fields
* used in the schedule, indexing and discovery
*
* @return a Map that contains the elements in the properties of the configuration object
File file = getConfigFile();
config = new Configuration();
- if( !file.exists() )
+ if ( !file.exists() )
{
writeXmlDocument( getConfigFile() );
}
{
try
{
- document = readXmlDocument( file );
- }
- catch ( DocumentException de )
- {
- de.printStackTrace();
- }
-
- map = new HashMap();
- Element rootElement = document.getRootElement();
- for( Iterator iter2 = rootElement.elementIterator(); iter2.hasNext(); )
- {
- Element field = (Element) iter2.next();
- map.put( field.getName(), field.getData() );
- }
-
- if( map.get( DISCOVERY_CRON_EXPRESSION ) != null && !"".equals( map.get( DISCOVERY_CRON_EXPRESSION ) ) )
- {
- config.setDiscoveryCronExpression( ( String ) map.get( DISCOVERY_CRON_EXPRESSION ) );
- }
-
- if( map.get( REPOSITORY_LAYOUT ) != null && !"".equals( map.get( REPOSITORY_LAYOUT ) ) )
- {
- config.setRepositoryLayout( (String ) map.get( REPOSITORY_LAYOUT ) );
- }
-
- if( map.get( DISCOVER_SNAPSHOTS ) != null && !"".equals( map.get( DISCOVER_SNAPSHOTS ) ) )
- {
- config.setDiscoverSnapshots( ( ( Boolean ) map.get( DISCOVER_SNAPSHOTS ) ).booleanValue() );
- }
-
- if( map.get( REPOSITORY_DIRECTORY ) != null && !"".equals( map.get( REPOSITORY_DIRECTORY ) ) )
- {
- config.setRepositoryDirectory( ( String ) map.get( REPOSITORY_DIRECTORY ) );
- }
-
- if( map.get( INDEXPATH ) != null && !"".equals( map.get( INDEXPATH ) ) )
- {
- config.setIndexPath( ( String ) map.get( INDEXPATH ) );
- }
-
- if( map.get( MIN_INDEXPATH ) != null && !"".equals( map.get( MIN_INDEXPATH ) ) )
- {
- config.setMinimalIndexPath( ( String ) map.get( MIN_INDEXPATH ) );
+ config = readXmlDocument( file );
}
-
- if( map.get( DISCOVERY_BLACKLIST_PATTERNS ) != null && !"".equals( map.get( DISCOVERY_BLACKLIST_PATTERNS ) ) )
+ catch ( XmlPullParserException xe )
{
- config.setDiscoveryBlackListPatterns( ( String ) map.get( DISCOVERY_BLACKLIST_PATTERNS ) );
+ xe.printStackTrace();
}
}
}
/**
- * Method that reads the xml file and puts it in a Document object
+ * Method that reads the xml file and returns a Configuration object
*
- * @param file the xml file to be read
- * @return a Document object that represents the contents of the xml file
- * @throws DocumentException
+ * @param file the xml file to be read
+ * @return a Document object that represents the contents of the xml file
+ * @throws FileNotFoundException
+ * @throws IOException
+ * @throws XmlPullParserException
*/
- protected Document readXmlDocument( File file )
- throws DocumentException
+ protected Configuration readXmlDocument( File file )
+ throws IOException, XmlPullParserException
{
- SAXReader reader = new SAXReader();
- if ( file.exists() )
- {
- return reader.read( file );
- }
-
- return null;
- }
+ ConfigurationXpp3Reader configReader = new ConfigurationXpp3Reader();
+ Reader reader = new FileReader( file );
+ Configuration config = configReader.read( reader );
- /**
- * Method for removing the specified element from the document
- *
- * @param element
- * @param name
- */
- protected void removeElement( Element element, String name )
- {
- for( Iterator children = element.elementIterator(); children.hasNext(); )
- {
- Element child = (Element) children.next();
- if( child.getName().equals( name ) )
- {
- element.remove( child );
- }
- }
- }
-
- protected Element addElement( Element element, String name )
- {
- return element.addElement( name );
- }
-
- protected void setElementValue( Element element, String value )
- {
- element.setText( value );
- }
-
- protected Element addAndSetElement( Element element, String elementName, String elementValue )
- {
- Element retElement = addElement( element, elementName );
-
- setElementValue( retElement, elementValue );
-
- return retElement;
+ return config;
}
/**
- * Method for writing the document object into its corresponding
- * xml file.
+ * Method for writing the configuration into the xml file
*
- * @param file the file where the document will be written to
+ * @param file the file where the document will be written to
*/
protected void writeXmlDocument( File file )
throws IOException
}
/**
- * Method that returns the index-config.xml file
+ * Method that returns the mrm-admin-config.xml file
*
* @return a File that references the plexus.xml
*/
{
URL indexConfigXml = getClass().getClassLoader().getResource( "../" + INDEX_CONFIG_FILE );
- if( indexConfigXml != null )
+ if ( indexConfigXml != null )
{
plexusDescriptor = new File( indexConfigXml.getFile() );
}
int lastIndex = path.lastIndexOf( '/' );
path = path.substring( 0, lastIndex + 1 );
path = path + INDEX_CONFIG_FILE;
- plexusDescriptor = new File ( path );
+ plexusDescriptor = new File( path );
}
return plexusDescriptor;
}
- protected Document getDocument()
- {
- return document;
- }
}