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

io.sarl.api.naming.parser.SkillSchemeNameParser Maven / Gradle / Ivy

The newest version!
/**
 * $Id$
 * 
 * SARL is an general-purpose agent programming language.
 * More details on http://www.sarl.io
 * 
 * Copyright (C) 2014-2024 SARL.io, the Original Authors and Main Authors
 * 
 * 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 io.sarl.api.naming.parser;

import io.sarl.api.naming.name.SkillName;
import io.sarl.lang.core.Capacity;
import io.sarl.lang.core.SREClassLoader;
import io.sarl.lang.core.annotation.DefaultValue;
import io.sarl.lang.core.annotation.DefaultValueSource;
import io.sarl.lang.core.annotation.DefaultValueUse;
import io.sarl.lang.core.annotation.SarlElementType;
import io.sarl.lang.core.annotation.SarlSourceCode;
import io.sarl.lang.core.annotation.SarlSpecification;
import io.sarl.lang.core.annotation.SyntheticMember;
import java.net.URI;
import java.util.StringTokenizer;
import java.util.UUID;
import org.eclipse.xtext.xbase.lib.Exceptions;
import org.eclipse.xtext.xbase.lib.Pure;
import org.eclipse.xtext.xbase.lib.XbaseGenerated;

/**
 * Parser of skill names that is accepting URI-based syntax.
 * 
 * 

The different types of names are:

    *
  • {@code "skill:[/]{0-2}agentId/capacityName[#fragmentName]"}
  • *
  • {@code "skill:[/]{0-2}contextId/agentId/capacityName[#fragmentName]"}
  • *
  • {@code "skill:[/]{0-2}contextId/spaceId/agentId/capacityName[#fragmentName]"}
  • *
* * @author Stéphane Galland * @version api.naming 0.14.0 20241106-161408 * @mavengroupid io.sarl.sdk * @mavenartifactid api.naming * @since 0.12 */ @SarlSpecification("0.14") @SarlElementType(10) @XbaseGenerated @SuppressWarnings("all") public class SkillSchemeNameParser extends AbstractSchemeNameParser { /** * Constructor. * * @optionalparam scheme the name scheme that is supported by this parser. By default it is {@link SkillName#SCHEME}. */ @DefaultValueSource public SkillSchemeNameParser(@DefaultValue("io.sarl.api.naming.parser.SkillSchemeNameParser#NEW_0") final String scheme) { super(scheme); } @Pure @Override public URI refactor(final URI name) { return this.refactor(name, 2, 4); } @Pure @Override public SkillName decode(final URI name) { try { String _path = name.getPath(); final StringTokenizer tokenizer = new StringTokenizer(_path, "/"); boolean _hasMoreTokens = tokenizer.hasMoreTokens(); if (_hasMoreTokens) { final String token0 = tokenizer.nextToken(); boolean _hasMoreTokens_1 = tokenizer.hasMoreTokens(); if (_hasMoreTokens_1) { final String token1 = tokenizer.nextToken(); boolean _hasMoreTokens_2 = tokenizer.hasMoreTokens(); if (_hasMoreTokens_2) { final String token2 = tokenizer.nextToken(); boolean _hasMoreTokens_3 = tokenizer.hasMoreTokens(); if (_hasMoreTokens_3) { final String token3 = tokenizer.nextToken(); UUID _fromString = UUID.fromString(token0); UUID _fromString_1 = UUID.fromString(token1); UUID _fromString_2 = UUID.fromString(token2); Class _loadClass = SREClassLoader.loadClass(token3, true, this.getClass().getClassLoader()); return new SkillName(name, _fromString, _fromString_1, _fromString_2, ((Class) _loadClass)); } UUID _fromString_3 = UUID.fromString(token0); UUID _fromString_4 = UUID.fromString(token1); Class _forName = Class.forName(token2); return new SkillName(name, _fromString_3, null, _fromString_4, ((Class) _forName)); } UUID _fromString_5 = UUID.fromString(token0); Class _forName_1 = Class.forName(token1); return new SkillName(name, null, null, _fromString_5, ((Class) _forName_1)); } } return null; } catch (Throwable _e) { throw Exceptions.sneakyThrow(_e); } } /** * Default value for the parameter scheme */ @Pure @SyntheticMember @SarlSourceCode("SkillName::SCHEME") private static String $DEFAULT_VALUE$NEW_0() { return SkillName.SCHEME; } /** * Constructor. * * @optionalparam scheme the name scheme that is supported by this parser. By default it is {@link SkillName#SCHEME}. */ @DefaultValueUse("java.lang.String") @SyntheticMember public SkillSchemeNameParser() { this($DEFAULT_VALUE$NEW_0()); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy