Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add types to represent JSON values #112

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions Sources/GoogleAI/JSONValue.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
// Copyright 2024 Google LLC
//
// Licensed 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 Foundation

/// A collection of name-value pairs representing a JSON object.
///
/// This may be decoded from, or encoded to, a
/// [`google.protobuf.Struct`](https://protobuf.dev/reference/protobuf/google.protobuf/#struct).
public typealias JSONObject = [String: JSONValue]

/// Represents a value in one of JSON's data types.
///
/// This may be decoded from, or encoded to, a
/// [`google.protobuf.Value`](https://protobuf.dev/reference/protobuf/google.protobuf/#value).
public enum JSONValue {
/// A `null` value.
case null

/// A numeric value.
case number(Double)

/// A string value.
case string(String)

/// A boolean value.
case bool(Bool)

/// A JSON object.
case object(JSONObject)

/// An array of `JSONValue`s.
case array([JSONValue])
}

extension JSONValue: Decodable {
public init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
if container.decodeNil() {
self = .null
} else if let numberValue = try? container.decode(Double.self) {
self = .number(numberValue)
} else if let stringValue = try? container.decode(String.self) {
self = .string(stringValue)
} else if let boolValue = try? container.decode(Bool.self) {
self = .bool(boolValue)
} else if let objectValue = try? container.decode(JSONObject.self) {
self = .object(objectValue)
} else if let arrayValue = try? container.decode([JSONValue].self) {
self = .array(arrayValue)
} else {
throw DecodingError.dataCorruptedError(
in: container,
debugDescription: "Failed to decode JSON value."
)
}
}
}

extension JSONValue: Equatable {}
85 changes: 85 additions & 0 deletions Tests/GoogleAITests/JSONValueTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
// Copyright 2024 Google LLC
//
// Licensed 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 XCTest

@testable import GoogleGenerativeAI

final class JSONValueTests: XCTestCase {
func testDecodeNull() throws {
let jsonData = try XCTUnwrap("null".data(using: .utf8))

let jsonObject = try XCTUnwrap(JSONDecoder().decode(JSONValue.self, from: jsonData))

XCTAssertEqual(jsonObject, .null)
}

func testDecodeNumber() throws {
let expectedNumber = 3.14159
let jsonData = try XCTUnwrap("\(expectedNumber)".data(using: .utf8))

let jsonObject = try XCTUnwrap(JSONDecoder().decode(JSONValue.self, from: jsonData))

XCTAssertEqual(jsonObject, .number(expectedNumber))
}

func testDecodeString() throws {
let expectedString = "hello-world"
let jsonData = try XCTUnwrap("\"\(expectedString)\"".data(using: .utf8))

let jsonObject = try XCTUnwrap(JSONDecoder().decode(JSONValue.self, from: jsonData))

XCTAssertEqual(jsonObject, .string(expectedString))
}

func testDecodeBool() throws {
let expectedBool = true
let jsonData = try XCTUnwrap("\(expectedBool)".data(using: .utf8))

let jsonObject = try XCTUnwrap(JSONDecoder().decode(JSONValue.self, from: jsonData))

XCTAssertEqual(jsonObject, .bool(expectedBool))
}

func testDecodeObject() throws {
let numberKey = "pi"
let numberValue = 3.14159
let stringKey = "hello"
let stringValue = "world"
let expectedObject: JSONObject = [
numberKey: .number(numberValue),
stringKey: .string(stringValue),
]
let json = """
{
"\(numberKey)": \(numberValue),
"\(stringKey)": "\(stringValue)"
}
"""
let jsonData = try XCTUnwrap(json.data(using: .utf8))

let jsonObject = try XCTUnwrap(JSONDecoder().decode(JSONValue.self, from: jsonData))

XCTAssertEqual(jsonObject, .object(expectedObject))
}

func testDecodeArray() throws {
let numberValue = 3.14159
let expectedArray: [JSONValue] = [.null, .number(numberValue)]
let jsonData = try XCTUnwrap("[ null, \(numberValue) ]".data(using: .utf8))

let jsonObject = try XCTUnwrap(JSONDecoder().decode(JSONValue.self, from: jsonData))

XCTAssertEqual(jsonObject, .array(expectedArray))
}
}
Loading