-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from SasinduDilshara/read
Add read functionality with Jsonpath expressions for Ballerina json datatypes
- Loading branch information
Showing
21 changed files
with
2,259 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). | ||
// | ||
// WSO2 LLC. licenses this file to you under the Apache License, | ||
// Version 2.0 (the "License"); you may not use this file except | ||
// in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
# Represents the error type of the ballerina/data.jsondata module. This error type represents any error that can occur | ||
# during the execution of jsondata APIs. | ||
public type Error distinct error; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). | ||
// | ||
// WSO2 LLC. licenses this file to you under the Apache License, | ||
// Version 2.0 (the "License"); you may not use this file except | ||
// in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
import ballerina/jballerina.java; | ||
import ballerina/lang.'object as obj; | ||
|
||
public type JsonPathValue json; | ||
|
||
public type JsonPathRawTemplate object { | ||
*obj:RawTemplate; | ||
public string[] & readonly strings; | ||
public JsonPathValue[] insertions; | ||
}; | ||
|
||
# Extract details from the given JSON value using the provided query template expression. | ||
# | ||
# ```ballerina | ||
# read({id: 1, "name": "John Doe"}, `$.name`) => "John Doe" | ||
# ``` | ||
# | ||
# + 'json - JSON value | ||
# + query - JSON path expression | ||
# + return - extracted details as JSON value, a jsonpath:Error otherwise | ||
public isolated function read(json 'json, JsonPathRawTemplate query) returns json|Error { | ||
return readJson('json, new JsonPathRawTemplateImpl(query)); | ||
} | ||
|
||
class JsonPathRawTemplateImpl { | ||
*JsonPathRawTemplate; | ||
|
||
isolated function init(JsonPathRawTemplate jsonPathRawTemplate) { | ||
self.strings = jsonPathRawTemplate.strings; | ||
self.insertions = jsonPathRawTemplate.insertions; | ||
} | ||
} | ||
|
||
# Extract details from the given JSON value using the provided query expression. | ||
# + 'json - JSON value | ||
# + query - JSON path expression | ||
# + return - extracted details as JSON value, a jsonpath:Error otherwise | ||
isolated function readJson(json 'json, JsonPathRawTemplateImpl query) returns json|Error = @java:Method { | ||
'class: "io.ballerina.lib.data.jsonpath.BJsonPath" | ||
} external; |
Oops, something went wrong.