blob: 7a59db2ff2c084bcc40dd0564f4fae9f9bf4d065 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2007, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.r.core.sourcemodel;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.statet.jcommons.lang.NonNullByDefault;
import org.eclipse.statet.jcommons.lang.Nullable;
import org.eclipse.statet.ecommons.text.core.sections.DocContentSections;
import org.eclipse.statet.ltk.ast.core.AstInfo;
import org.eclipse.statet.ltk.model.core.element.SourceUnitModelInfo;
import org.eclipse.statet.r.core.BasicRResourceSourceUnit;
import org.eclipse.statet.r.core.model.RModel;
import org.eclipse.statet.r.core.model.RSourceUnit;
import org.eclipse.statet.r.core.model.RWorkspaceSourceUnit;
import org.eclipse.statet.r.core.model.build.RSourceUnitModelContainer;
import org.eclipse.statet.r.core.source.RDocumentContentInfo;
/**
* Source unit implementation for R script files in workspace ("default R file").
*/
@NonNullByDefault
public final class RResourceSourceUnit extends BasicRResourceSourceUnit implements RWorkspaceSourceUnit {
private final RSourceUnitModelContainer model= new RSourceUnitModelContainer(this);
public RResourceSourceUnit(final String id, final IFile file) {
super(id, file);
}
@Override
public String getModelTypeId() {
return RModel.R_TYPE_ID;
}
@Override
public DocContentSections getDocumentContentInfo() {
return RDocumentContentInfo.INSTANCE;
}
@Override
public int getElementType() {
return RSourceUnit.R_WORKSPACE_SU;
}
@Override
protected void unregister() {
super.unregister();
this.model.clear();
}
@Override
public @Nullable AstInfo getAstInfo(final @Nullable String type, final boolean ensureSync,
final IProgressMonitor monitor) {
final AstInfo ast= this.model.getCurrentAst();
final long stamp= getResource().getModificationStamp();
if (ast != null && ast.getStamp().getContentStamp() == stamp) {
return ast;
}
// TODO ask saved
return null;
}
@Override
public @Nullable SourceUnitModelInfo getModelInfo(final @Nullable String type, final int syncLevel,
final IProgressMonitor monitor) {
if (type == null || type.equals(RModel.R_TYPE_ID)) {
return this.model.getModelInfo(syncLevel, monitor);
}
return null;
}
@Override
@SuppressWarnings("unchecked")
public <T> @Nullable T getAdapter(final Class<T> adapterType) {
if (adapterType == RSourceUnitModelContainer.class) {
return (T)this.model;
}
return super.getAdapter(adapterType);
}
}