-
Notifications
You must be signed in to change notification settings - Fork 276
[AI Task] [Tizen.Pims.Contacts] Remove Convert.ChangeType boxing from ContactsRecord Get/Set #7762
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
Open
JoonghyunCho
wants to merge
2
commits into
main
Choose a base branch
from
ai-task/issue-7667
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -201,7 +201,6 @@ public ContactsRecord Clone() | |
| /// <since_tizen> 4 </since_tizen> | ||
| public T Get<T>(uint propertyId) | ||
| { | ||
| object parsedValue = null; | ||
| if (typeof(T) == typeof(string)) | ||
| { | ||
| string val; | ||
|
|
@@ -211,7 +210,7 @@ public T Get<T>(uint propertyId) | |
| Log.Error(Globals.LogTag, $"Get String Failed with error {error}"); | ||
| throw ContactsErrorFactory.CheckAndCreateException(error); | ||
| } | ||
| parsedValue = Convert.ChangeType(val, typeof(T)); | ||
| return (T)(object)val; | ||
| } | ||
| else if (typeof(T) == typeof(int)) | ||
| { | ||
|
|
@@ -222,7 +221,7 @@ public T Get<T>(uint propertyId) | |
| Log.Error(Globals.LogTag, $"Get Int Failed with error {error}"); | ||
| throw ContactsErrorFactory.CheckAndCreateException(error); | ||
| } | ||
| parsedValue = Convert.ChangeType(val, typeof(T)); | ||
| return (T)(object)val; | ||
| } | ||
| else if (typeof(T) == typeof(bool)) | ||
| { | ||
|
|
@@ -233,7 +232,7 @@ public T Get<T>(uint propertyId) | |
| Log.Error(Globals.LogTag, $"Get Bool Failed with error {error}"); | ||
| throw ContactsErrorFactory.CheckAndCreateException(error); | ||
| } | ||
| parsedValue = Convert.ChangeType(val, typeof(T)); | ||
| return (T)(object)val; | ||
| } | ||
| else if (typeof(T) == typeof(long)) | ||
| { | ||
|
|
@@ -244,7 +243,7 @@ public T Get<T>(uint propertyId) | |
| Log.Error(Globals.LogTag, $"Get Long Failed with error {error}"); | ||
| throw ContactsErrorFactory.CheckAndCreateException(error); | ||
| } | ||
| parsedValue = Convert.ChangeType(val, typeof(T)); | ||
| return (T)(object)val; | ||
| } | ||
| else if (typeof(T) == typeof(double)) | ||
| { | ||
|
|
@@ -255,14 +254,13 @@ public T Get<T>(uint propertyId) | |
| Log.Error(Globals.LogTag, $"Get Long Failed with error {error}"); | ||
| throw ContactsErrorFactory.CheckAndCreateException(error); | ||
| } | ||
| parsedValue = Convert.ChangeType(val, typeof(T)); | ||
| return (T)(object)val; | ||
| } | ||
| else | ||
| { | ||
| Log.Error(Globals.LogTag, "Not Supported Data Type"); | ||
| throw ContactsErrorFactory.CheckAndCreateException((int)ContactsError.NotSupported); | ||
| } | ||
| return (T)parsedValue; | ||
| } | ||
|
|
||
| /// <summary> | ||
|
|
@@ -278,7 +276,7 @@ public void Set<T>(uint propertyId, T value) | |
| { | ||
| if (typeof(T) == typeof(string)) | ||
| { | ||
| string val = Convert.ToString(value); | ||
| string val = (string)(object)value ?? string.Empty; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| int error = Interop.Record.SetStr(_recordHandle, propertyId, val); | ||
| if ((int)ContactsError.None != error) | ||
| { | ||
|
|
@@ -288,7 +286,7 @@ public void Set<T>(uint propertyId, T value) | |
| } | ||
| else if (typeof(T) == typeof(int)) | ||
| { | ||
| int val = Convert.ToInt32(value); | ||
| int val = (int)(object)value; | ||
| int error = Interop.Record.SetInt(_recordHandle, propertyId, val); | ||
| if ((int)ContactsError.None != error) | ||
| { | ||
|
|
@@ -298,7 +296,7 @@ public void Set<T>(uint propertyId, T value) | |
| } | ||
| else if (typeof(T) == typeof(bool)) | ||
| { | ||
| bool val = Convert.ToBoolean(value); | ||
| bool val = (bool)(object)value; | ||
| int error = Interop.Record.SetBool(_recordHandle, propertyId, val); | ||
| if ((int)ContactsError.None != error) | ||
| { | ||
|
|
@@ -308,7 +306,7 @@ public void Set<T>(uint propertyId, T value) | |
| } | ||
| else if (typeof(T) == typeof(long)) | ||
| { | ||
| long val = Convert.ToInt64(value); | ||
| long val = (long)(object)value; | ||
| int error = Interop.Record.SetLli(_recordHandle, propertyId, val); | ||
| if ((int)ContactsError.None != error) | ||
| { | ||
|
|
@@ -318,7 +316,7 @@ public void Set<T>(uint propertyId, T value) | |
| } | ||
| else if (typeof(T) == typeof(double)) | ||
| { | ||
| double val = Convert.ToDouble(value); | ||
| double val = (double)(object)value; | ||
| int error = Interop.Record.SetDouble(_recordHandle, propertyId, val); | ||
| if ((int)ContactsError.None != error) | ||
| { | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤖 [AI Review]
🟡 Suggestion: Pre-existing copy-paste in this double branch logs "Get Long Failed"; since this PR already rewrites these branches, it is worth fixing here (the Set double branch at line 323 has the same "Get Long" text).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤖 [AI Review]
Addressed in 3aa053e — the Get double branch now logs "Get Double Failed" and the Set double branch logs "Set Double Failed".