blob: 2de2ca2c0c7a964421e3940dd4d3293d87549554 [file] [log] [blame]
/*
* Copyright (c) 2011 Google Inc.
*
* 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
*/
package com.google.eclipse.protobuf.scoping;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.xtext.scoping.impl.ImportUriResolver;
import com.google.eclipse.protobuf.protobuf.Import;
/**
* Resolves URIs. This implementation mimics how protoc understands imported file URIs. For example, the URI
* "platform:/resource/proto1.proto" is understood by EMF but not by protoc. The URI in the proto file needs to be
* simply "proto1.proto" for protoc to understand it.
* <p>
* This {@link ImportUriResolver} adds "platform:/resource" to any URI if is not specified, so EMF can find the
* imported resource.
* </p>
*
* @author alruiz@google.com (Alex Ruiz)
*/
public class ImportUriFixerAndResolver extends ImportUriResolver {
private static final String PREFIX = "platform:/resource";
/**
* Prefix used by EMF for resource URIs: "platform:/resource/".
*/
public static final String URI_PREFIX = PREFIX + "/";
/**
* If the given {@code EObject} is a <code>{@link Import}</code>, this method will add "platform:/resource" to the
* URI of such import if not specified already.
* @param from the given element to resolve.
* @return the {@code String} representation of the given object's {@code URI}.
*/
@Override public String apply(EObject from) {
if (from instanceof Import) fixUri((Import) from);
return super.apply(from);
}
/*
* The import URI is relative to the file where the import is. Protoc works fine, but the editor doesn't.
* In order for the editor to see the import, we need to add to the import URI "platform:resource" and the parent
* folder of the file containing the import.
*
* For example: given the following file hierarchy:
*
* - protobuf-test (project)
* - folder
* - proto2.proto
* - proto1.proto
*
* If we import "folder/proto2.proto" into proto1.proto, proto1.proto will compile fine, but the editor will complain.
* We need to have the import URI as "platform:/resource/protobuf-test/folder/proto2.proto" for the editor to see it.
*/
private void fixUri(Import i) {
URI importUri = URI.createURI(i.getImportURI());
if (importUri.scheme() != null) return;
URI fixedUri = URI.createURI(PREFIX).appendSegments(importUri.segments());
i.setImportURI(fixedUri.toString());
}
}