/* * 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. * */ package org.apache.directory.studio.schemaeditor.model.io; import java.util.List; import org.apache.directory.studio.connection.core.Connection; import org.apache.directory.studio.schemaeditor.model.Project; import org.apache.directory.studio.schemaeditor.model.ProjectType; import org.apache.directory.studio.schemaeditor.model.Schema; import org.dom4j.Branch; import org.dom4j.Document; import org.dom4j.DocumentHelper; import org.dom4j.Element; /** * This class is used to export Project(s) into the XML Format. * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public class ProjectsExporter { // The tags private static final String PROJECT_TAG = "project"; //$NON-NLS-1$ private static final String PROJECTS_TAG = "projects"; //$NON-NLS-1$ private static final String NAME_TAG = "name"; //$NON-NLS-1$ private static final String TYPE_TAG = "type"; //$NON-NLS-1$ private static final String CONNECTION_TAG = "connection"; //$NON-NLS-1$ private static final String SCHEMA_CONNECTOR_TAG = "schemaConnector"; //$NON-NLS-1$ private static final String SCHEMA_BACKUP_TAG = "schemaBackup"; //$NON-NLS-1$ /** * Converts the given project to its representation * in Dom4J Document. * * @param project * the project to convert * @return * the corresponding Dom4j Document representation */ public static Document toDocument( Project project ) { // Creating the Document Document document = DocumentHelper.createDocument(); // Adding the project addProject( project, document ); return document; } /** * Converts the given projects to their representation * in Dom4J Document. * * @param projects * the projects to convert * @return * the corresponding Dom4j Document representation */ public static Document toDocument( Project[] projects ) { // Creating the Document Document document = DocumentHelper.createDocument(); Element projectsElement = document.addElement( PROJECTS_TAG ); if ( projects != null ) { for ( Project project : projects ) { addProject( project, projectsElement ); } } return document; } /** * Add the XML representation of the given project * to the given branch * * @param project * the project * @param branch * the branch */ private static void addProject( Project project, Branch branch ) { Element element = branch.addElement( PROJECT_TAG ); if ( project != null ) { // Name String name = project.getName(); if ( ( name != null ) && ( !name.equals( "" ) ) ) //$NON-NLS-1$ { element.addAttribute( NAME_TAG, name ); } // Type ProjectType type = project.getType(); if ( type != null ) { element.addAttribute( TYPE_TAG, type.toString() ); } // If project is an Online Schema Project if ( type.equals( ProjectType.ONLINE ) ) { // Connection ID Connection connection = project.getConnection(); if ( connection != null ) { element.addAttribute( CONNECTION_TAG, connection.getId() ); } // Schema Connection ID SchemaConnector schemaConnector = project.getSchemaConnector(); if ( schemaConnector != null ) { element.addAttribute( SCHEMA_CONNECTOR_TAG, project.getSchemaConnector().getId() ); } // Schema Backup Element schemaBackupElement = element.addElement( SCHEMA_BACKUP_TAG ); List<Schema> backupSchemas = project.getInitialSchema(); if ( backupSchemas != null ) { XMLSchemaFileExporter.addSchemas( backupSchemas.toArray( new Schema[0] ), schemaBackupElement ); } } // Schemas XMLSchemaFileExporter .addSchemas( project.getSchemaHandler().getSchemas().toArray( new Schema[0] ), element ); } } }