All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eprosima.idl.parser.tree.Module Maven / Gradle / Ivy

The newest version!
// Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima).
//
// 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.eprosima.idl.parser.tree;

import java.util.ArrayList;

import org.antlr.v4.runtime.Token;

public class Module extends DefinitionContainer implements Definition
{   
    public Module(String scopeFile, boolean isInScope, String scope, String name, Token tk)
    {
        super(scopeFile, isInScope, scope, name, tk);
    }
    
    public void setParent(Object obj)
    {
        m_parent = obj;
    }
    
    public Object getParent()
    {
        return m_parent;
    }
    
    
    /*!
     * @brief This function is used in stringtemplates to not generate module in some cases (Right now in RequestReply.idl).
     */
    public boolean isThereAreValidDefinitions()
    {
    	boolean returnedValue = false;
    	
		for(int count = 0; !returnedValue && count < getDefinitions().size(); ++count)
        {
            returnedValue = getDefinitions().get(count).isIsInterface();
        }
    	
    	return returnedValue;
    }
    
    /*!
     * @brief This function is used in stringtemplates to not generate module in some cases (Right now in generated RTI idl).
     */
    public boolean isThereAreDeclarations()
    {
        boolean returnedValue = false;
        
        for(int count = 0; !returnedValue && count < getDefinitions().size(); ++count)
        {
            if(getDefinitions().get(count).isIsInterface())
            {
                returnedValue = ((Interface)getDefinitions().get(count)).isThereAreDeclarations();
            }
            else
            {
                returnedValue = getDefinitions().get(count).isIsTypeDeclaration() ||
                    getDefinitions().get(count).isIsException();
            }
        }
        
        return returnedValue;
    }
    
    @Override
    public boolean isIsModule()
    {
        return true;
    }
    
    @Override
    public boolean isIsInterface()
    {
    	return false;
    }
    
    @Override
    public boolean isIsException()
    {
    	return false;
    }
    
    @Override
    public boolean isIsTypeDeclaration()
    {
        return false;
    }

    @Override
    public boolean isIsConstDeclaration()
    {
        return false;
    }
    
	@Override
	public boolean isIsAnnotation()
    {
        return false;
    }
    
    ////////// RESTful block //////////
    
    public String getResourceCompleteBaseUri()
    {
        Annotation baseUri = getAnnotations().get("RESOURCES_BASE_URI");
        String baseUriStr = baseUri.getValue("value");
        
        if(baseUriStr != null)
        {
            // Remove http://
            int posInit = baseUriStr.indexOf("//");
            
            if(posInit == -1)
                posInit = 0;
            else
                posInit += 2;
            
            return baseUriStr.substring(posInit);
        }
        
        return baseUriStr;
    }
    
    /*
     * @brief This function return the base URI without the host.
     * Also all spaces are converted to %20.
     */
    public String getResourceBaseUri()
    {
        String baseUri = getResourceCompleteBaseUri();
        
        if(baseUri != null)
        {
            // Remove host
            int posEnd = baseUri.indexOf('/');
            
            if(posEnd == -1)
                return "";
            else
                return baseUri.substring(posEnd).replace(" ", "%20");
        }
        
        return null;
    }
    
    /*
     * @brief This function return the base URI without the host.
     * Also all spaces are converted to %20.
     */
    public String getResourceBaseUriWithoutLastBackslace()
    {
        String baseUri = getResourceBaseUri();
        
        if(baseUri != null)
        {
            if(!baseUri.isEmpty() && baseUri.charAt(baseUri.length() - 1) == '/')
            {
                if(baseUri.length() > 1)
                    baseUri = baseUri.substring(0, baseUri.length() - 1);
                else
                    baseUri = "";
            }
            return baseUri;
        }
        
        return null;
    }
    
    public String getResourceHost() {
        Annotation path =  getAnnotations().get("RESOURCES_BASE_URI");
        String pathStr = path.getValue("value");
        
        // Remove http://
        int posInit = pathStr.indexOf("//");
        if(posInit == -1)
            posInit = 0;
        else
            posInit += 2;
        
        // Remove path
        int posEnd = pathStr.indexOf('/', posInit);
        
        if(posEnd == -1)
            posEnd = pathStr.length()-1;
        
        return pathStr.substring(posInit, posEnd);     
    }
    
    ////////// End RESTful block //////////

    private Object m_parent = null;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy