001/*
002 * ============================================================================
003 * Copyright © 2002-2023 by Thomas Thrien.
004 * All Rights Reserved.
005 * ============================================================================
006 *
007 * Licensed to the public under the agreements of the GNU Lesser General Public
008 * License, version 3.0 (the "License"). You may obtain a copy of the License at
009 *
010 *      http://www.gnu.org/licenses/lgpl.html
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
014 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
015 * License for the specific language governing permissions and limitations
016 * under the License.
017 */
018
019package org.tquadrat.foundation.util.stringconverter;
020
021import static java.lang.String.format;
022import static org.apiguardian.api.API.Status.STABLE;
023import static org.tquadrat.foundation.lang.Objects.nonNull;
024
025import java.io.Serial;
026import java.net.URI;
027import java.net.URISyntaxException;
028
029import org.apiguardian.api.API;
030import org.tquadrat.foundation.annotation.ClassVersion;
031import org.tquadrat.foundation.lang.StringConverter;
032
033/**
034 *  An implementation of
035 *  {@link StringConverter}
036 *  for
037 *  {@link URI}
038 *  values.<br>
039 *  <br>The method
040 *  {@link #fromString(CharSequence)}
041 *  will use the constructor
042 *  {@link URI#URI(String)}
043 *  to create a {@code URI} instance from the given value.
044 *
045 *  @extauthor Thomas Thrien - thomas.thrien@tquadrat.org
046 *  @version $Id: URIStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $
047 *  @since 0.0.6
048 *
049 *  @UMLGraph.link
050 */
051@ClassVersion( sourceVersion = "$Id: URIStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $" )
052@API( status = STABLE, since = "0.0.6" )
053public final class URIStringConverter implements StringConverter<URI>
054{
055        /*-----------*\
056    ====** Constants **========================================================
057        \*-----------*/
058    /**
059     *  The error message for an invalid URI on the command line: {@value}.
060     */
061    public static final String MSG_InvalidURI = "'%1$s' cannot be parsed as a valid URI";
062
063        /*------------------------*\
064    ====** Static Initialisations **===========================================
065        \*------------------------*/
066    /**
067     *  The serial version UID for objects of this class: {@value}.
068     *
069     *  @hidden
070     */
071    @Serial
072    private static final long serialVersionUID = 1L;
073
074    /**
075     *  An instance of this class.
076     */
077    public static final URIStringConverter INSTANCE = new URIStringConverter();
078
079        /*--------------*\
080    ====** Constructors **=====================================================
081        \*--------------*/
082    /**
083     *  Creates a new instance of {@code URIStringConverter}.
084     */
085    public URIStringConverter() {}
086
087        /*---------*\
088    ====** Methods **==========================================================
089        \*---------*/
090    /**
091     *  {@inheritDoc}
092     */
093    @Override
094    public final URI fromString( final CharSequence source ) throws IllegalArgumentException
095    {
096        URI retValue = null;
097        if( nonNull( source ) )
098        {
099            try
100            {
101                retValue = new URI( source.toString() );
102            }
103            catch( final URISyntaxException e )
104            {
105                throw new IllegalArgumentException( format( MSG_InvalidURI, source ), e );
106            }
107        }
108
109        //---* Done *----------------------------------------------------------
110        return retValue;
111    }   //  fromString()
112
113    /**
114     *  This method is used by the
115     *  {@link java.util.ServiceLoader}
116     *  to obtain the instance for this
117     *  {@link org.tquadrat.foundation.lang.StringConverter}
118     *  implementation.
119     *
120     *  @return The instance for this {@code StringConverter} implementation.
121     */
122    public static final URIStringConverter provider() { return INSTANCE; }
123}
124//  class URIStringConverter
125
126/*
127 *  End of File
128 */