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

Create Types for untyped nodes #286

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- Added support for untyped nodes. [#285](https://github.com/microsoft/kiota-abstractions-python/issues/285)

### Changed

## [1.3.3] - 2024-05-21

Expand Down
24 changes: 24 additions & 0 deletions kiota_abstractions/serialization/untyped_boolean.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from .untyped_node import UntypedNode

class UntypedBoolean(UntypedNode):
"""
Represents an untyped node with boolean value.
"""

def __init__(self, value: bool) -> None:
"""
Creates a new instance of UntypedBoolean.

Args:
value (bool): The boolean value associated with the node.
"""
self.__value = value

def get_value(self) -> bool:
"""
Gets the value associated with untyped boolean node.

Returns:
The value associated with untyped boolean node.
"""
return self.__value
24 changes: 24 additions & 0 deletions kiota_abstractions/serialization/untyped_dict.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from .untyped_node import UntypedNode

class UntypedDictionary(UntypedNode):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
class UntypedDictionary(UntypedNode):
class UntypedObject(UntypedNode):

Is there any reason to not call it UntypedObject?

Copy link
Author

@rohitkrsoni rohitkrsoni Jun 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Initially, I though of adding it as UntypedObject but in python we call it dictionary which stores key-value pairs similar to HashMap in Java. https://docs.python.org/3/tutorial/datastructures.html#dictionaries

I can change it back to Object if you like.

Thanks

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't have strong opinion on this one. It's better to align with what the language thinks is best.
Maybe @shemogumbe can weigh in on the naming here..

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My view is - arrays and objects instead of list and dict might create confusion as the codebase of the project using python client will have lists and dictionaries.

open for suggestions.

Copy link
Member

@andrueastman andrueastman Aug 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rohitkrsoni Lets keep this as is for now since the it makes sense for the language to have the naming as so and then start working on the serialization bits. In the event of any feedback before we merge, we can do a renaming.

Are you able to work on the serialization bits with this branch as a source?

"""
Represents an untyped node with dictionary value.
"""

def __init__(self, value: dict) -> None:
"""
Creates a new instance of UntypedDictionary.

Args:
value (dict): The key-value pair associated with the node.
"""
self.__value = value

def get_value(self) -> dict:
andrueastman marked this conversation as resolved.
Show resolved Hide resolved
"""
Gets the value associated with untyped dictionary node.

Returns:
The value associated with untyped dictionary node.
"""
return self.__value
24 changes: 24 additions & 0 deletions kiota_abstractions/serialization/untyped_float.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from .untyped_node import UntypedNode

class UntypedFloat(UntypedNode):
"""
Represents an untyped node with float value.
"""

def __init__(self, value: float) -> None:
"""
Creates a new instance of UntypedFloat.

Args:
value (bool): The float value associated with the node.
"""
self.__value = value

def get_value(self) -> float:
"""
Gets the value associated with untyped float node.

Returns:
The value associated with untyped float node.
"""
return self.__value
24 changes: 24 additions & 0 deletions kiota_abstractions/serialization/untyped_integer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from .untyped_node import UntypedNode

class UntypedInteger(UntypedNode):
"""
Represents an untyped node with integer value.
"""

def __init__(self, value: int) -> None:
"""
Creates a new instance of UntypedInteger.

Args:
value (bool): The integer value associated with the node.
"""
self.__value = value

def get_value(self) -> int:
"""
Gets the value associated with untyped integer node.

Returns:
The value associated with untyped integer node.
"""
return self.__value
24 changes: 24 additions & 0 deletions kiota_abstractions/serialization/untyped_list.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from .untyped_node import UntypedNode

class UntypedList(UntypedNode):
andrueastman marked this conversation as resolved.
Show resolved Hide resolved
"""
Represents an untyped node with list value.
"""

def __init__(self, value: list) -> None:
"""
Creates a new instance of UntypedList.

Args:
value (bool): The list value associated with the node.
"""
self.__value = value

def get_value(self) -> list:
andrueastman marked this conversation as resolved.
Show resolved Hide resolved
"""
Gets the value associated with untyped list node.

Returns:
The value associated with untyped list node.
"""
return self.__value
51 changes: 51 additions & 0 deletions kiota_abstractions/serialization/untyped_node.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
from collections import defaultdict
from parsable import Parsable
from typing import TYPE_CHECKING, Callable, Dict

if TYPE_CHECKING:
from .parse_node import ParseNode
from .serialization_writer import SerializationWriter

class UntypedNode(Parsable):
"""
Base class for untyped node.
"""

__field_deserializers: Dict[str, Callable[['ParseNode'], None]] = {}

def get_field_deserializers(self) -> Dict[str, Callable[['ParseNode'], None]]:
"""
The deserialization information for the current model
"""
return UntypedNode.__field_deserializers

def serialize(self, writer: 'SerializationWriter'):
"""
Serializes information about the current object.

Args:
writer (SerializationWriter): Serialization writer to use to serialize this model.
"""
if not writer:
raise ValueError("writer cannot be None")

@staticmethod
def create_from_discriminator_value(parse_node: 'Parsable'):
"""
Creates a new instance of the appropriate class based on discriminator value

Args:
parse_node (ParseNode): The parse node to use to read the discriminator value and create the object
"""
if not parse_node:
raise ValueError("parse_node cannot be None")
return UntypedNode()

def get_value(self):
"""
Gets the value of the current node.

Returns:
The value assigned to untyped node.
"""
raise NotImplementedError("This method is not implemented")
15 changes: 15 additions & 0 deletions kiota_abstractions/serialization/untyped_none.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from .untyped_node import UntypedNode

class UntypedNone(UntypedNode):
"""
Represents an untyped node with none value.
"""

def get_value(self) -> None:
"""
Gets the value associated with untyped none node.

Returns:
The value associated with untyped none node.
"""
return None
24 changes: 24 additions & 0 deletions kiota_abstractions/serialization/untyped_string.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from .untyped_node import UntypedNode

class UntypedString(UntypedNode):
"""
Represents an untyped node with string value.
"""

def __init__(self, value: str) -> None:
"""
Creates a new instance of UntypedStr.

Args:
value (bool): The string value associated with the node.
"""
self.__value = value

def get_value(self) -> str:
"""
Gets the value associated with untyped string node.

Returns:
The value associated with untyped string node.
"""
return self.__value
Loading