Skip to content

Commit f1a809c

Browse files
committed
feat(logic-bindings): make Answer match logic module format
1 parent 8495cd4 commit f1a809c

File tree

2 files changed

+10
-16
lines changed

2 files changed

+10
-16
lines changed

packages/okp4-logic-bindings/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ mod query;
33
mod term_parser;
44
pub mod uri;
55

6-
pub use query::{Answer, AskResponse, LogicCustomQuery, Result, Substitution, Term};
6+
pub use query::{Answer, AskResponse, LogicCustomQuery, Result, Substitution};
77
pub use term_parser::TermValue;
88

99
// Exposed for testing only

packages/okp4-logic-bindings/src/query.rs

+9-15
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ pub struct AskResponse {
2424
#[serde(rename_all = "snake_case")]
2525
pub struct Answer {
2626
pub success: bool,
27+
pub error: Option<String>,
2728
pub has_more: bool,
2829
pub variables: Vec<String>,
2930
pub results: Vec<Result>,
@@ -39,19 +40,12 @@ pub struct Result {
3940
#[serde(rename_all = "snake_case")]
4041
pub struct Substitution {
4142
pub variable: String,
42-
pub term: Term,
43+
pub expression: String,
4344
}
4445

45-
#[derive(Serialize, Deserialize, Default, Clone, PartialEq, Eq, JsonSchema, Debug)]
46-
#[serde(rename_all = "snake_case")]
47-
pub struct Term {
48-
pub name: String,
49-
pub arguments: Vec<Term>,
50-
}
51-
52-
impl Term {
53-
pub fn parse(self) -> std::result::Result<TermValue, TermParseError> {
54-
from_str(self.name.as_str())
46+
impl Substitution {
47+
pub fn parse_expression(self) -> std::result::Result<TermValue, TermParseError> {
48+
from_str(self.expression.as_str())
5549
}
5650
}
5751

@@ -62,11 +56,11 @@ mod tests {
6256
#[test]
6357
fn term_parse() {
6458
assert_eq!(
65-
Term {
66-
name: "'hello'".to_string(),
67-
arguments: vec![],
59+
Substitution {
60+
variable: "X".to_string(),
61+
expression: "'hello'".to_string(),
6862
}
69-
.parse(),
63+
.parse_expression(),
7064
Ok(TermValue::Value("hello".to_string()))
7165
);
7266
}

0 commit comments

Comments
 (0)