org.ros.internal.message.context.MessageContextProvider.java Source code

Java tutorial

Introduction

Here is the source code for org.ros.internal.message.context.MessageContextProvider.java

Source

/*
 * Copyright (C) 2011 Google Inc.
 *
 * 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 org.ros.internal.message.context;

import com.google.common.base.Preconditions;
import com.google.common.collect.Maps;

import org.ros.internal.message.definition.MessageDefinitionParser;
import org.ros.internal.message.definition.MessageDefinitionParser.MessageDefinitionVisitor;
import org.ros.message.MessageDeclaration;
import org.ros.message.MessageFactory;

import java.util.Map;

/**
 * @author damonkohler@google.com (Damon Kohler)
 */
public class MessageContextProvider {

    private final Map<MessageDeclaration, MessageContext> cache;
    private final MessageFactory messageFactory;

    public MessageContextProvider(MessageFactory messageFactory) {
        Preconditions.checkNotNull(messageFactory);
        this.messageFactory = messageFactory;
        cache = Maps.newConcurrentMap();
    }

    public MessageContext get(MessageDeclaration messageDeclaration) {
        MessageContext messageContext = cache.get(messageDeclaration);
        if (messageContext == null) {
            messageContext = new MessageContext(messageDeclaration, messageFactory);
            MessageDefinitionVisitor visitor = new MessageContextBuilder(messageContext);
            MessageDefinitionParser messageDefinitionParser = new MessageDefinitionParser(visitor);
            messageDefinitionParser.parse(messageDeclaration.getType(), messageDeclaration.getDefinition());
            cache.put(messageDeclaration, messageContext);
        }
        return messageContext;
    }
}