blob: ac81dbf69fb2993b1dfd92964f8b5b5fac0f935c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.j2ee.internal.componentcore;
import java.io.File;
import java.io.IOException;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.jst.j2ee.commonarchivecore.internal.Archive;
import org.eclipse.jst.j2ee.commonarchivecore.internal.exception.OpenFailureException;
import org.eclipse.jst.j2ee.commonarchivecore.internal.exception.SaveFailureException;
import org.eclipse.jst.j2ee.commonarchivecore.internal.helpers.ArchiveTypeDiscriminator;
import org.eclipse.jst.j2ee.commonarchivecore.internal.helpers.ArchiveTypeDiscriminatorImpl;
import org.eclipse.jst.j2ee.commonarchivecore.internal.impl.ArchiveImpl;
import org.eclipse.jst.j2ee.commonarchivecore.internal.strategy.ImportStrategy;
import org.eclipse.jst.j2ee.commonarchivecore.internal.strategy.LoadStrategy;
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
/**
* @deprecated see {@link JavaEEBinaryComponentHelper}
* @author jasholl
*
*/
public class UtilityBinaryComponentHelper extends EnterpriseBinaryComponentHelper {
public UtilityBinaryComponentHelper(IVirtualComponent component) {
super(component);
}
protected static class Discriminator extends ArchiveTypeDiscriminatorImpl {
private static Discriminator instance;
public static Discriminator getInstance() {
if (instance == null) {
instance = new Discriminator();
}
return instance;
}
@Override
public Archive createConvertedArchive() {
ReferenceCountedArchiveImpl archive = new ReferenceCountedArchiveImpl();
return archive;
}
@Override
public boolean canImport(Archive anArchive) {
return true;
}
@Override
public ImportStrategy createImportStrategy(Archive old, Archive newArchive) {
return null;
}
public String getUnableToOpenMessage() {
return "";//$NON-NLS-1$
}
}
protected static class ReferenceCountedArchiveImpl extends ArchiveImpl implements IReferenceCountedArchive {
private int count = 0;
public void access() {
synchronized (this) {
count++;
}
}
@Override
public void close() {
helper.aboutToClose();
synchronized (this) {
count--;
if (count > 0) {
return;
}
}
physicallyClose(this);
}
public void forceClose(){
count = 0;
helper.aboutToClose();
super.close();
}
private EnterpriseBinaryComponentHelper helper = null;
public EnterpriseBinaryComponentHelper getEnterpriseBinaryComponentHelper() {
return helper;
}
public void setEnterpriseBinaryComponentHelper(EnterpriseBinaryComponentHelper helper) {
this.helper = helper;
}
@Override
protected LoadStrategy createLoadStrategyForReopen(Archive parent) throws IOException {
try {
return createBinaryLoadStrategy(getEnterpriseBinaryComponentHelper());
} catch (OpenFailureException e) {
throw new IOException(e.getMessage());
}
}
@Override
protected void cleanupAfterTempSave(String uri, File original, File destinationFile) throws SaveFailureException {
helper.preCleanupAfterTempSave(uri, original, destinationFile);
super.cleanupAfterTempSave(uri, original, destinationFile);
helper.postCleanupAfterTempSave(uri, original, destinationFile);
}
}
@Override
protected ArchiveTypeDiscriminator getDiscriminator() {
return Discriminator.getInstance();
}
@Override
protected IReferenceCountedArchive getUniqueArchive() {
try {
return openArchive();
} catch (OpenFailureException e) {
}
return null;
}
@Override
public EObject getPrimaryRootObject() {
return null;
}
}