-
Notifications
You must be signed in to change notification settings - Fork 107
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
Значительные исправления ПрочитатьJSON (fix #1373 и прочее) #1374
Conversation
Глобальный |
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.
Посмотрел в меру разумения
{ | ||
return ReadJSONInStruct(Reader, true); | ||
throw new RuntimeException(); |
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.
Наверное, стоило бы добавить какой-то текст здесь, и если такое не должно случаться никогда - сделать исключение InvalidOperationException или NotSupportedException
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.
Не должно случаться никогда. Это бы при компиляции следовало проверять, но C# не позволяет.
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.
Все равно лучше выкинуть более конкретное исключение, или сделать ассерт
} | ||
return NestedArray; | ||
|
||
throw InvalidJsonException(); |
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.
Потеряли исходное исключение. Вероятно, лучше добавить cause, чтобы не терять стек и описание причины.
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.
Сделано намеренно, в исключении из Newtonsoft.JSON кроме позиции будет более подробное описание причины, но английское. Можно восстановить и вставить в сообщение.
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.
А чем InnerException не подходит?
case JsonToken.StartObject: | ||
var jsonObject = Create(); | ||
|
||
while (ReadJsonToken() == JsonToken.PropertyName) |
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.
Если встретим комментарий, то ReadJsonToken вернет None и цикл чтения прервется. Например,
{
"Свойство1": 1,
// пояснение для свойства 2
"Свойство2": "Значение"
}
После считывания 1 мы найдем комментарий, вернем Nonе и цикл закончится, не дойдя до чтения "Свойство2", нет?
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.
Нет, Nonе
возвращается только когда _reader.Read() вернуло false
. Комментарии не выходят за пределы ReadJsonToken()
Снова возник вопрос, поднятый в #1253 (comment) - про чтение нестандартного литерала |
Тесты на пустые значения в коммите 595c6bd дают примеры ошибочных |
@Mr-Rm давай добьем может? Что тут подвисло у нас? |
Сейчас остановлено на таком:
|
Обзор измененийОбновление включает в себя улучшение работы с JSON в скриптовом движке: введение нового класса для чтения JSON, улучшение обработки структур и карт, а также усиленная обработка ошибок при разборе JSON. Изменения
Возможно связанные проблемы
Recent Review DetailsConfiguration used: CodeRabbit UI Files selected for processing (5)
Files not reviewed due to errors (1)
Additional comments not posted (7)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
Итак, пустые значения - считать ошибкой.
|
Неправильно работает |
@coderabbitai review |
Давай тогда issue на это сформулируем, чтобы не забыть? |
Summary by CodeRabbit