Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Converters/ConstrainedValueParameterConverter.cs @ 17399

Last change on this file since 17399 was 17394, checked in by dpiringe, 5 years ago

#3026:

  • deleted: ConvertableAttribute, DummyConverter, ObjectExtensions
  • renamed: CustomJsonWriter -> SingleLineArrayJsonWriter, JCInstantiator -> JsonTemplateInstantiator
  • added: JsonItemConverterFactory, UnsupportedJsonItem
  • IJsonItemConverter:
    • added two new properties: Priority and ConvertableType -> because converters are automatically collected by plugin infrastructure now
    • Extract, Inject references a root converter now -> typically an instance of JsonItemConverter -> to prevent cycles
  • JsonItemConverter:
    • now implements the interface IJsonItemConverter
    • is now a dynamic class
    • is only instantiable with an factory (JsonItemConverterFactory)
    • still has the old (but now public) static methods Extract and Inject (without ref param IJsonItemConverter root) -> creates instance with factory and calls methods of instance
    • removed register and unregister methods, because the factory collects all converters automatically now (on first call of Create)
    • has cycle detection for Extract and Inject
    • renamed method Get to GetConverter
File size: 1.9 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using HeuristicLab.Common;
7using HeuristicLab.Core;
8
9namespace HeuristicLab.JsonInterface {
10  public class ConstrainedValueParameterConverter : ParameterBaseConverter {
11    public override int Priority => 3;
12    public override Type ConvertableType => typeof(IConstrainedValueParameter<>);
13
14    public override void InjectData(IParameter parameter, JsonItem data, IJsonItemConverter root) {
15      foreach(var x in GetValidValues(parameter))
16        if(x.ToString() == CastValue<string>(data.Value))
17          parameter.ActualValue = x;
18
19      if (parameter.ActualValue is IParameterizedItem && data.Children != null) {
20        foreach(var param in data.Children) {
21          if(param.Name == parameter.ActualValue.ItemName)
22            root.Inject(parameter.ActualValue, param, root);
23        }
24      }
25    }
26
27    public override void Populate(IParameter value, JsonItem item, IJsonItemConverter root) {
28      item.AddChilds(GetParameterizedChilds(value));
29      item.Name = value.Name;
30      item.Value = value.ActualValue?.ToString();
31      item.Range = GetValidValues(value).Select(x => x.ToString());
32    }     
33
34    #region Helper
35    private IItem[] GetValidValues(IParameter value) {
36      List<IItem> list = new List<IItem>();
37      var values = ((dynamic)value).ValidValues;
38      foreach (var x in values) list.Add((IItem)x);
39      return list.ToArray();
40    }
41
42    private IList<JsonItem> GetParameterizedChilds(IParameter value) {
43      List<JsonItem> list = new List<JsonItem>();
44      var values = ((dynamic)value).ValidValues;
45      foreach(var x in values) {
46        if (x is IParameterizedItem) {
47          JsonItem tmp = JsonItemConverter.Extract(x);
48          list.Add(tmp);
49        }
50      }
51      return list.Count == 0 ? null : list;
52    }
53    #endregion
54  }
55}
Note: See TracBrowser for help on using the repository browser.