Skip to content

Commit 4239880

Browse files
committed
server/configurations/features: Change show to feature object
1 parent c0f2d65 commit 4239880

File tree

1 file changed

+51
-18
lines changed

1 file changed

+51
-18
lines changed

src/server/configurations/features.rs

+51-18
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
use std::collections::HashMap;
2-
31
use axum::{
42
extract::{Path, Query, State},
53
routing::get,
64
Json, Router,
75
};
8-
use futures::{StreamExt, TryStreamExt};
96
use serde::{Deserialize, Serialize};
107

118
use crate::server::{self, Context, Error};
@@ -93,9 +90,22 @@ async fn index(
9390
Ok(Json(IndexBody { features }))
9491
}
9592

93+
#[derive(Serialize)]
94+
struct Run {
95+
id: i32,
96+
count: i32,
97+
}
98+
99+
#[derive(Serialize)]
100+
struct ShowFeature {
101+
id: i32,
102+
name: String,
103+
runs: Vec<Run>,
104+
}
105+
96106
#[derive(Serialize)]
97107
struct ShowResponse {
98-
counts: HashMap<String, i32>,
108+
feature: ShowFeature,
99109
}
100110

101111
/// Shows counts for samples with the given configuration ID and feature name.
@@ -115,30 +125,46 @@ async fn show(
115125
Path((configuration_id, id)): Path<(i32, i32)>,
116126
State(ctx): State<Context>,
117127
) -> server::Result<Json<ShowResponse>> {
118-
let counts = sqlx::query!(
128+
let rows = sqlx::query!(
119129
"
120130
select
121-
samples.name,
131+
features.name,
132+
runs.id,
122133
counts.value
123134
from counts
135+
inner join features
136+
on features.id = counts.feature_id
124137
inner join runs
125138
on runs.id = counts.run_id
126139
inner join samples
127140
on samples.id = runs.sample_id
128-
inner join features
129-
on features.id = counts.feature_id
130-
where runs.configuration_id = $1
131-
and features.id = $2
141+
where counts.feature_id = $1
142+
and runs.configuration_id = $2
132143
",
133-
configuration_id,
134144
id,
145+
configuration_id,
135146
)
136-
.fetch(&ctx.pool)
137-
.map(|result| result.map(|record| (record.name, record.value)))
138-
.try_collect()
147+
.fetch_all(&ctx.pool)
139148
.await?;
140149

141-
Ok(Json(ShowResponse { counts }))
150+
if rows.is_empty() {
151+
return Err(Error::NotFound);
152+
}
153+
154+
// SAFETY: `rows` is non-empty.
155+
let name = rows[0].name.clone();
156+
157+
let runs = rows
158+
.into_iter()
159+
.map(|row| Run {
160+
id: row.id,
161+
count: row.value,
162+
})
163+
.collect();
164+
165+
Ok(Json(ShowResponse {
166+
feature: ShowFeature { id, name, runs },
167+
}))
142168
}
143169

144170
#[cfg(test)]
@@ -213,9 +239,16 @@ mod tests {
213239
assert_eq!(
214240
actual,
215241
json!({
216-
"counts": {
217-
"sample1": 5,
218-
"sample2": 13,
242+
"feature": {
243+
"id": 1,
244+
"name": "39_feature_1",
245+
"runs": [{
246+
"id": 1,
247+
"count": 5,
248+
}, {
249+
"id": 2,
250+
"count": 13,
251+
}],
219252
}
220253
})
221254
);

0 commit comments

Comments
 (0)