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

biweekly.io.scribe.property.BinaryPropertyScribe Maven / Gradle / Ivy

There is a newer version: 0.6.8
Show newest version
package biweekly.io.scribe.property;

import biweekly.ICalDataType;
import biweekly.ICalVersion;
import biweekly.io.ParseContext;
import biweekly.io.WriteContext;
import biweekly.io.json.JCalValue;
import biweekly.io.xml.XCalElement;
import biweekly.parameter.Encoding;
import biweekly.parameter.ICalParameters;
import biweekly.property.BinaryProperty;
import biweekly.util.org.apache.commons.codec.binary.Base64;

import com.github.mangstadt.vinnie.io.VObjectPropertyValues;

/*
 Copyright (c) 2013-2021, Michael Angstadt
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met: 

 1. Redistributions of source code must retain the above copyright notice, this
 list of conditions and the following disclaimer. 
 2. Redistributions in binary form must reproduce the above copyright notice,
 this list of conditions and the following disclaimer in the documentation
 and/or other materials provided with the distribution. 

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

/**
 * Marshals {@link BinaryProperty} properties.
 * @author Michael Angstadt
 */
public abstract class BinaryPropertyScribe extends ICalPropertyScribe {
	public BinaryPropertyScribe(Class clazz, String propertyName) {
		super(clazz, propertyName, ICalDataType.URI);
	}

	@Override
	protected ICalParameters _prepareParameters(T property, WriteContext context) {
		ICalParameters copy = new ICalParameters(property.getParameters());

		if (property.getUri() != null) {
			copy.setEncoding(null);
		} else if (property.getData() != null) {
			copy.setEncoding(Encoding.BASE64);
		}

		return copy;
	}

	@Override
	protected ICalDataType _dataType(T property, ICalVersion version) {
		if (property.getUri() != null) {
			return (version == ICalVersion.V1_0) ? ICalDataType.URL : ICalDataType.URI;
		}
		if (property.getData() != null) {
			return ICalDataType.BINARY;
		}
		return defaultDataType(version);
	}

	@Override
	protected String _writeText(T property, WriteContext context) {
		String uri = property.getUri();
		if (uri != null) {
			return uri;
		}

		byte[] data = property.getData();
		if (data != null) {
			return Base64.encodeBase64String(data);
		}

		return "";
	}

	@Override
	protected T _parseText(String value, ICalDataType dataType, ICalParameters parameters, ParseContext context) {
		value = VObjectPropertyValues.unescape(value);

		if (dataType == ICalDataType.BINARY || parameters.getEncoding() == Encoding.BASE64) {
			byte[] data = Base64.decodeBase64(value);
			return newInstance(data);
		}

		return newInstance(value, dataType);
	}

	@Override
	protected void _writeXml(T property, XCalElement element, WriteContext context) {
		String uri = property.getUri();
		if (uri != null) {
			element.append(ICalDataType.URI, uri);
			return;
		}

		byte[] data = property.getData();
		if (data != null) {
			element.append(ICalDataType.BINARY, Base64.encodeBase64String(data));
			return;
		}

		element.append(defaultDataType(context.getVersion()), "");
	}

	@Override
	protected T _parseXml(XCalElement element, ICalParameters parameters, ParseContext context) {
		String uri = element.first(ICalDataType.URI);
		if (uri != null) {
			return newInstance(uri, ICalDataType.URI);
		}

		String base64Data = element.first(ICalDataType.BINARY);
		if (base64Data != null) {
			byte[] data = Base64.decodeBase64(base64Data);
			return newInstance(data);
		}

		throw missingXmlElements(ICalDataType.URI, ICalDataType.BINARY);
	}

	@Override
	protected JCalValue _writeJson(T property, WriteContext context) {
		String uri = property.getUri();
		if (uri != null) {
			return JCalValue.single(uri);
		}

		byte[] data = property.getData();
		if (data != null) {
			return JCalValue.single(Base64.encodeBase64String(data));
		}

		return JCalValue.single("");
	}

	@Override
	protected T _parseJson(JCalValue value, ICalDataType dataType, ICalParameters parameters, ParseContext context) {
		String valueStr = value.asSingle();

		if (dataType == ICalDataType.BINARY) {
			byte[] data = Base64.decodeBase64(valueStr);
			return newInstance(data);
		}

		return newInstance(valueStr, dataType);
	}

	/**
	 * Creates a property object from the given binary data.
	 * @param data the data
	 * @return the property object
	 */
	protected abstract T newInstance(byte[] data);

	/**
	 * Creates a property object from the given string value.
	 * @param value the string value
	 * @param dataType the data type
	 * @return the property object
	 */
	protected abstract T newInstance(String value, ICalDataType dataType);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy