#region License Information /* HeuristicLab * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; using System.Linq; using System.Linq.Expressions; using HeuristicLab.Services.OKB.DataAccess; namespace HeuristicLab.Services.OKB { public class AlgorithmParameterBlobValueDataTypeNameFilter : IFilter { public string Name { get; protected set; } public DataTransfer.StringComparison Comparison { get; set; } public string Value { get; set; } public Expression> Expression { get { switch (Comparison) { case DataTransfer.StringComparison.Equal: return x => x.Experiment.AlgorithmParameterBlobValues.Any(y => ((y.AlgorithmParameter.Name == Name) || (y.AlgorithmParameter.Alias == Name)) && ((y.DataType.Name == Value) || (y.DataType.TypeName == Value))); case DataTransfer.StringComparison.NotEqual: return x => x.Experiment.AlgorithmParameterBlobValues.Any(y => ((y.AlgorithmParameter.Name == Name) || (y.AlgorithmParameter.Alias == Name)) && ((y.DataType.Name != Value) && (!(y.DataType.TypeName != Value)))); case DataTransfer.StringComparison.Contains: return x => x.Experiment.AlgorithmParameterBlobValues.Any(y => ((y.AlgorithmParameter.Name == Name) || (y.AlgorithmParameter.Alias == Name)) && (y.DataType.Name.Contains(Value) || y.DataType.TypeName.Contains(Value))); case DataTransfer.StringComparison.NotContains: return x => x.Experiment.AlgorithmParameterBlobValues.Any(y => ((y.AlgorithmParameter.Name == Name) || (y.AlgorithmParameter.Alias == Name)) && (!y.DataType.Name.Contains(Value) && !y.DataType.TypeName.Contains(Value))); default: return x => true; } } } public AlgorithmParameterBlobValueDataTypeNameFilter(string name, DataTransfer.StringComparison comparison, string value) { Name = name; Comparison = comparison; Value = value; } public AlgorithmParameterBlobValueDataTypeNameFilter(DataTransfer.NameSetComparisonStringFilter filter) { Name = filter.Name; Comparison = filter.Comparison; Value = filter.Value; } } }