![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.plc4x.protocol.plc4xapi.v0.Plc4xApi Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* https://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.apache.plc4x.protocol.plc4xapi.v0;
import org.apache.plc4x.plugins.codegenerator.language.mspec.parser.MessageFormatParser;
import org.apache.plc4x.plugins.codegenerator.language.mspec.protocol.ProtocolHelpers;
import org.apache.plc4x.plugins.codegenerator.language.mspec.protocol.ValidatableTypeContext;
import org.apache.plc4x.plugins.codegenerator.protocol.Protocol;
import org.apache.plc4x.plugins.codegenerator.protocol.TypeContext;
import org.apache.plc4x.plugins.codegenerator.types.exceptions.GenerationException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Optional;
public class Plc4xApi implements Protocol, ProtocolHelpers {
private static final Logger LOGGER = LoggerFactory.getLogger(Plc4xApi.class);
@Override
public String getName() {
return "plc4x-api";
}
@Override
public Optional getVersion() {
return Optional.of("0");
}
@Override
public TypeContext getTypeContext() throws GenerationException {
ValidatableTypeContext typeContext;
LOGGER.info("Parsing: plc4x-api.mspec");
typeContext = new MessageFormatParser().parse(getMspecStream());
typeContext.validate();
return typeContext;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy