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

org.springframework.data.cassandra.core.convert.CassandraConversionContext Maven / Gradle / Ivy

There is a newer version: 4.3.4
Show newest version
/*
 * Copyright 2023 the original author or 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
 *
 *      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.springframework.data.cassandra.core.convert;

import org.springframework.data.cassandra.core.mapping.CassandraPersistentProperty;
import org.springframework.data.convert.ValueConversionContext;
import org.springframework.data.mapping.model.PropertyValueProvider;
import org.springframework.data.mapping.model.SpELContext;
import org.springframework.data.util.TypeInformation;
import org.springframework.lang.Nullable;

import com.datastax.oss.driver.api.core.cql.Row;

/**
 * {@link ValueConversionContext} that allows to delegate read/write to an underlying {@link CassandraConverter}.
 *
 * @author Mark Paluch
 * @since 4.2
 */
public class CassandraConversionContext implements ValueConversionContext {

	private final PropertyValueProvider accessor;
	private final CassandraPersistentProperty persistentProperty;
	private final CassandraConverter cassandraConverter;

	@Nullable private final SpELContext spELContext;

	public CassandraConversionContext(PropertyValueProvider accessor,
			CassandraPersistentProperty persistentProperty, CassandraConverter CassandraConverter) {
		this(accessor, persistentProperty, CassandraConverter, null);
	}

	public CassandraConversionContext(PropertyValueProvider accessor,
			CassandraPersistentProperty persistentProperty, CassandraConverter CassandraConverter,
			@Nullable SpELContext spELContext) {

		this.accessor = accessor;
		this.persistentProperty = persistentProperty;
		this.cassandraConverter = CassandraConverter;
		this.spELContext = spELContext;
	}

	@Override
	public CassandraPersistentProperty getProperty() {
		return persistentProperty;
	}

	@Nullable
	public Object getValue(String propertyPath) {
		return accessor.getPropertyValue(persistentProperty.getOwner().getRequiredPersistentProperty(propertyPath));
	}

	@Override
	@SuppressWarnings("unchecked")
	public  T write(@Nullable Object value, TypeInformation target) {
		return (T) cassandraConverter.convertToColumnType(value, target);
	}

	@Override
	public  T read(@Nullable Object value, TypeInformation target) {
		return value instanceof Row row ? cassandraConverter.read(target.getType(), row)
				: ValueConversionContext.super.read(value, target);
	}

	@Nullable
	public SpELContext getSpELContext() {
		return spELContext;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy