/* SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. * * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. 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. */ using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Runtime.CompilerServices; using System.Text; namespace OpenSearch.Client { internal class FieldExpressionVisitor : ExpressionVisitor { private readonly IConnectionSettingsValues _settings; private readonly Stack<string> _stack = new Stack<string>(); public FieldExpressionVisitor(IConnectionSettingsValues settings) => _settings = settings; public string Resolve(Expression expression, bool toLastToken = false) { Visit(expression); if (toLastToken) return _stack.Last(); var builder = new StringBuilder(_stack.Sum(s => s.Length) + (_stack.Count - 1)); return _stack .Aggregate( builder, (sb, name) => (sb.Length > 0 ? sb.Append(".") : sb).Append(name)) .ToString(); } public string Resolve(MemberInfo info) { if (info == null) return null; var name = info.Name; if (_settings.PropertyMappings.TryGetValue(info, out var propertyMapping)) return propertyMapping.Name; var att = OpenSearchPropertyAttributeBase.From(info); if (att != null && !att.Name.IsNullOrEmpty()) return att.Name; return _settings.PropertyMappingProvider?.CreatePropertyMapping(info)?.Name ?? _settings.DefaultFieldNameInferrer(name); } protected override Expression VisitMember(MemberExpression expression) { if (_stack == null) return base.VisitMember(expression); var name = Resolve(expression.Member); _stack.Push(name); return base.VisitMember(expression); } protected override Expression VisitMethodCall(MethodCallExpression methodCall) { if (methodCall.Method.Name == nameof(SuffixExtensions.Suffix) && methodCall.Arguments.Any()) { VisitConstantOrVariable(methodCall, _stack); var callingMember = new ReadOnlyCollection<Expression>( new List<Expression> { { methodCall.Arguments.First() } } ); Visit(callingMember); return methodCall; } else if (methodCall.Method.Name == "get_Item" && methodCall.Arguments.Any()) { var t = methodCall.Object.Type; var isDict = typeof(IDictionary).IsAssignableFrom(t) || typeof(IDictionary<,>).IsAssignableFrom(t) || t.IsGenericType && t.GetGenericTypeDefinition() == typeof(IDictionary<,>); if (!isDict) return base.VisitMethodCall(methodCall); VisitConstantOrVariable(methodCall, _stack); Visit(methodCall.Object); return methodCall; } else if (IsLinqOperator(methodCall.Method)) { for (var i = 1; i < methodCall.Arguments.Count; i++) Visit(methodCall.Arguments[i]); Visit(methodCall.Arguments[0]); return methodCall; } return base.VisitMethodCall(methodCall); } private static void VisitConstantOrVariable(MethodCallExpression methodCall, Stack<string> stack) { var lastArg = methodCall.Arguments.Last(); var value = lastArg is ConstantExpression constantExpression ? constantExpression.Value.ToString() : Expression.Lambda(lastArg).Compile().DynamicInvoke().ToString(); stack.Push(value); } private static bool IsLinqOperator(MethodInfo methodInfo) { if (methodInfo.DeclaringType != typeof(Queryable) && methodInfo.DeclaringType != typeof(Enumerable)) return false; return methodInfo.GetCustomAttribute<ExtensionAttribute>() != null; } } }