-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement mvi count items command (#525)
Adds MVI count items, which returns the number of items in a vector index. In the event an index does not exist, the response is a NOT_FOUND error. That way we distinguish between an empty index that does exist vs an index that does not exist. This PR adds the response type, method, documentation, and integration tests.
- Loading branch information
Showing
7 changed files
with
193 additions
and
1 deletion.
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
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,80 @@ | ||
using Momento.Sdk.Exceptions; | ||
|
||
namespace Momento.Sdk.Responses.Vector; | ||
|
||
/// <summary> | ||
/// Parent response type for a count items request. The | ||
/// response object is resolved to a type-safe object of one of | ||
/// the following subtypes: | ||
/// <list type="bullet"> | ||
/// <item><description>CountItemsResponse.Success</description></item> | ||
/// <item><description>CountItemsResponse.Error</description></item> | ||
/// </list> | ||
/// Pattern matching can be used to operate on the appropriate subtype. | ||
/// For example: | ||
/// <code> | ||
/// if (response is CountItemsResponse.Success successResponse) | ||
/// { | ||
/// return successResponse.ItemCount; | ||
/// } | ||
/// else if (response is CountItemsResponse.Error errorResponse) | ||
/// { | ||
/// // handle error as appropriate | ||
/// } | ||
/// else | ||
/// { | ||
/// // handle unexpected response | ||
/// } | ||
/// </code> | ||
/// </summary> | ||
public abstract class CountItemsResponse | ||
{ | ||
/// <include file="../../docs.xml" path='docs/class[@name="Success"]/description/*' /> | ||
public class Success : CountItemsResponse | ||
{ | ||
/// <summary> | ||
/// The number of items in the vector index. | ||
/// </summary> | ||
public long ItemCount { get; } | ||
|
||
/// <include file="../../docs.xml" path='docs/class[@name="Success"]/description/*' /> | ||
/// <param name="itemCount">The number of items in the vector index.</param> | ||
public Success(long itemCount) | ||
{ | ||
ItemCount = itemCount; | ||
} | ||
|
||
/// <inheritdoc /> | ||
public override string ToString() | ||
{ | ||
return $"{base.ToString()}: {ItemCount}"; | ||
} | ||
|
||
} | ||
|
||
/// <include file="../../docs.xml" path='docs/class[@name="Error"]/description/*' /> | ||
public class Error : CountItemsResponse, IError | ||
{ | ||
/// <include file="../../docs.xml" path='docs/class[@name="Error"]/constructor/*' /> | ||
public Error(SdkException error) | ||
{ | ||
InnerException = error; | ||
} | ||
|
||
/// <inheritdoc /> | ||
public SdkException InnerException { get; } | ||
|
||
/// <inheritdoc /> | ||
public MomentoErrorCode ErrorCode => InnerException.ErrorCode; | ||
|
||
/// <inheritdoc /> | ||
public string Message => $"{InnerException.MessageWrapper}: {InnerException.Message}"; | ||
|
||
/// <inheritdoc /> | ||
public override string ToString() | ||
{ | ||
return $"{base.ToString()}: {Message}"; | ||
} | ||
|
||
} | ||
} |
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