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

org.apache.tika.config.Param Maven / Gradle / Ivy

There is a newer version: 6.5.21
Show newest version
/*
 * 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
 *
 *     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.apache.tika.config;

import org.apache.tika.exception.TikaException;
import org.apache.tika.utils.XMLReaderUtils;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Serializable;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.math.BigInteger;
import java.net.URI;
import java.net.URL;
import java.util.HashMap;
import java.util.Map;


/**
 * This is a serializable model class for parameters from configuration file.
 *
 * @param  value type. Should be serializable to string and have a constructor with string param
 * @since Apache Tika 1.14
 */
public class Param implements Serializable {

    private static final Map, String> map = new HashMap<>();
    private static final Map> reverseMap = new HashMap<>();

    static {
        map.put(Boolean.class, "bool");
        map.put(String.class, "string");
        map.put(Byte.class, "byte");
        map.put(Short.class, "short");
        map.put(Integer.class, "int");
        map.put(Long.class, "long");
        map.put(BigInteger.class, "bigint");
        map.put(Float.class, "float");
        map.put(Double.class, "double");
        map.put(File.class, "file");
        map.put(URI.class, "uri");
        map.put(URL.class, "url");
        for (Map.Entry, String> entry : map.entrySet()) {
            reverseMap.put(entry.getValue(), entry.getKey());
        }
    }

    private Class type;

    private String name;

    private String value;

    private T actualValue;

    public Param(){
    }

    public Param(String name, Class type, T value){
        this.name = name;
        this.type = type;
        this.value = value.toString();
    }

    public Param(String name, T value){
        this(name, (Class) value.getClass(), value);
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Class getType() {
        return type;
    }

    public void setType(Class type) {
        this.type = type;
    }

    public String getTypeString(){
        if (type == null) {
            return null;
        }
        if (map.containsKey(type)){
            return map.get(type);
        }
        return type.getName();
    }

    public void setTypeString(String type){
        if (type == null || type.isEmpty()){
            return;
        }
        
        this.type = classFromType(type);
        this.actualValue = null;
    }

    public T getValue(){
        if (actualValue == null) {
            actualValue = getTypedValue(type, value);
        }
        return actualValue;
    }

    @Override
    public String toString() {
        return "Param{" +
                "name='" + name + '\'' +
                ", value='" + value + '\'' +
                ", actualValue=" + actualValue +
                '}';
    }

    public void save(OutputStream stream) throws TransformerException, TikaException {
        
        
        DocumentBuilder builder = XMLReaderUtils.getDocumentBuilder();
        Document doc = builder.newDocument();
        Element paramEl = doc.createElement("param");
        doc.appendChild(paramEl);
        
        save(paramEl);
        
        Transformer transformer = XMLReaderUtils.getTransformer();
        transformer.transform(new DOMSource(paramEl), new StreamResult(stream));
    }

    public void save(Node node) {

        if ( !(node instanceof Element) ) {
            throw new IllegalArgumentException("Not an Element : " + node);
        }
        
        Element el = (Element) node;
        
        el.setAttribute("name",  getName());
        el.setAttribute("type", getTypeString());
        el.setTextContent(value);
    }

    public static  Param load(InputStream stream) throws SAXException, IOException, TikaException {
        
        DocumentBuilder db = XMLReaderUtils.getDocumentBuilder();
        Document document = db.parse(stream);
        
        return load(document.getFirstChild());
    }

    public static  Param load(Node node)  {
        
        Node nameAttr = node.getAttributes().getNamedItem("name");
        Node typeAttr = node.getAttributes().getNamedItem("type");
        Node value = node.getFirstChild();
        
        Param ret = new Param();
        ret.name  = nameAttr.getTextContent();
        ret.setTypeString(typeAttr.getTextContent());
        ret.value = value.getTextContent();
        
        return ret;
    }
    
    private static  Class classFromType(String type) {
        if (reverseMap.containsKey(type)){
            return (Class) reverseMap.get(type);
        } else try {
            return (Class) Class.forName(type);
        } catch (ClassNotFoundException e) {
            throw new RuntimeException(e);
        }
    }
    
    private static  T getTypedValue(Class type, String value) {
        try {
            Constructor constructor = type.getConstructor(String.class);
            constructor.setAccessible(true);
            return constructor.newInstance(value);
        } catch (NoSuchMethodException e) {
            throw new RuntimeException(type + " doesnt have a constructor that takes String arg", e);
        } catch (IllegalAccessException | InstantiationException | InvocationTargetException e) {
            throw new RuntimeException(e);
        }        
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy