blob: 29f21b4203dead39227c48fa8f2d122651a8759f [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* 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.
*/
package com.intellij.platform.templates;
import com.intellij.ide.util.projectWizard.ProjectTemplateFileProcessor;
import com.intellij.openapi.components.PathMacroManager;
import com.intellij.openapi.components.PersistentStateComponent;
import com.intellij.openapi.components.ServiceManager;
import com.intellij.openapi.components.impl.ComponentManagerImpl;
import com.intellij.openapi.components.impl.stores.ComponentStoreImpl;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.JDOMExternalizable;
import com.intellij.openapi.util.JDOMUtil;
import com.intellij.openapi.util.WriteExternalException;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.util.containers.ContainerUtil;
import com.intellij.util.ui.UIUtil;
import com.intellij.util.xmlb.XmlSerializer;
import org.jdom.Element;
import org.jetbrains.annotations.Nullable;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* @author Dmitry Avdeev
* Date: 2/15/13
*/
public class SystemFileProcessor extends ProjectTemplateFileProcessor {
private static final String[] COMPONENT_NAMES = new String[] {
FileEditorManagerImpl.FILE_EDITOR_MANAGER,
"org.jetbrains.idea.maven.project.MavenWorkspaceSettingsComponent"
};
@Nullable
@Override
protected String encodeFileText(String content, VirtualFile file, Project project) throws IOException {
final String fileName = file.getName();
if (file.getParent().getName().equals(Project.DIRECTORY_STORE_FOLDER) && fileName.equals("workspace.xml")) {
List<Object> componentList = new ArrayList<Object>();
for (String componentName : COMPONENT_NAMES) {
Object component = project.getComponent(componentName);
if (component == null) {
try {
component = ServiceManager.getService(project, Class.forName(componentName));
}
catch (ClassNotFoundException ignore) {
}
}
ContainerUtil.addIfNotNull(componentList, component);
}
if (!componentList.isEmpty()) {
final Element root = new Element("project");
for (final Object component : componentList) {
final Element element = new Element("component");
element.setAttribute("name", ComponentManagerImpl.getComponentName(component));
root.addContent(element);
UIUtil.invokeAndWaitIfNeeded(new Runnable() {
@Override
public void run() {
if (component instanceof JDOMExternalizable) {
try {
((JDOMExternalizable)component).writeExternal(element);
}
catch (WriteExternalException ignore) {
LOG.error(ignore);
}
}
else {
Object state = ((PersistentStateComponent)component).getState();
Element element1 = XmlSerializer.serialize(state);
element.addContent(element1.cloneContent());
element.setAttribute("name", ComponentStoreImpl.getComponentName((PersistentStateComponent)component));
}
}
});
}
PathMacroManager.getInstance(project).collapsePaths(root);
return JDOMUtil.writeElement(root);
}
}
return null;
}
private static final Logger LOG = Logger.getInstance(SystemFileProcessor.class);
}