-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathExamplePluginCohortCompiler.cs
95 lines (79 loc) · 4.19 KB
/
ExamplePluginCohortCompiler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright (c) The University of Dundee 2018-2019
// This file is part of the Research Data Management Platform (RDMP).
// RDMP 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.
// RDMP 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 RDMP. If not, see <https://www.gnu.org/licenses/>.
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Threading;
using SynthEHR;
using Rdmp.Core.Curation.Data;
using Rdmp.Core.Curation.Data.Aggregation;
using Rdmp.Core.QueryCaching.Aggregation;
namespace Rdmp.Core.CohortCreation.Execution;
/// <summary>
/// Demonstration class for how to implement a plugin cohort e.g. to a REST API.
/// This class generates a number of random chis when prompted to query the 'api'.
///
/// <para>If deployed as a patient index table, also returns random dates of birth and death</para>
/// </summary>
public class ExamplePluginCohortCompiler : PluginCohortCompiler
{
public const string ExampleAPIName = $"{ApiPrefix}GenerateRandomChisExample";
public override void Run(AggregateConfiguration ac, CachedAggregateConfigurationResultsManager cache,
CancellationToken token)
{
token.ThrowIfCancellationRequested();
// The user of RDMP will have configured ac as either patient index table or normal cohort aggregate
if (ac.IsJoinablePatientIndexTable())
// user expects multiple columns from the API
RunAsPatientIndexTable(ac, cache, token);
else
// user expects only a single linkage identifier to be returned by the API
RunAsIdentifierList(ac, cache, token);
}
private void RunAsPatientIndexTable(AggregateConfiguration ac, CachedAggregateConfigurationResultsManager cache,
CancellationToken token)
{
using var dt = new DataTable();
dt.Columns.Add("chi", typeof(string));
dt.Columns.Add("dateOfBirth", typeof(DateTime));
dt.Columns.Add("dateOfDeath", typeof(DateTime));
// generate a list of random chis + date of birth/death
var pc = new PersonCollection();
pc.GeneratePeople(GetNumberToGenerate(ac), new Random());
foreach (var p in pc.People) dt.Rows.Add(p.CHI, p.DateOfBirth, p.DateOfDeath ?? (object)DBNull.Value);
SubmitPatientIndexTable(dt, ac, cache, true);
}
private void RunAsIdentifierList(AggregateConfiguration ac, CachedAggregateConfigurationResultsManager cache,
CancellationToken token)
{
var pc = new PersonCollection();
var requiredNumber = GetNumberToGenerate(ac);
var rand = new Random();
pc.GeneratePeople(requiredNumber, rand);
var set = new HashSet<string>(pc.People.Select(p => p.CHI));
// there may be duplicates, if so we need to bump up the number to match the required count
while (set.Count < requiredNumber)
{
pc.GeneratePeople(1, rand);
set.Add(pc.People[0].CHI);
}
// generate a list of random chis
SubmitIdentifierList("chi", set, ac, cache);
}
private static int GetNumberToGenerate(AggregateConfiguration ac) =>
// You can persist configuration info about how to query the API any way
// you want. Here we just use the Description field
int.TryParse(ac.Description, out var result) ? result : 5;
public override bool ShouldRun(ICatalogue cata) =>
// we will handle any dataset where the associated Catalogue has this name
// you can customise how to spot your API calls however you want
cata.Name.Equals(ExampleAPIName);
protected override string GetJoinColumnNameFor(AggregateConfiguration joinedTo) =>
// when RunAsPatientIndexTable is being used the column that can be linked
// to other datasets is called "chi"
"chi";
}