pkarashchenko commented on a change in pull request #5408:
URL: https://github.com/apache/incubator-nuttx/pull/5408#discussion_r799418467
##########
File path: drivers/syslog/syslog_device.c
##########
@@ -451,38 +451,58 @@ static ssize_t syslog_dev_write(FAR struct
syslog_channel_s *channel,
if (*endptr == '\r' || *endptr == '\n')
{
+ /* Write everything up to the position of the special
+ * character.
+ *
+ * - buffer points to next byte to output.
+ * - endptr points to the special character.
+ */
+
+ writelen = (size_t)((uintptr_t)endptr - (uintptr_t)buffer);
+ if (writelen > 0)
+ {
+ nwritten = file_write(&syslog_dev->sl_file,
+ buffer, writelen);
+ if (nwritten < 0)
+ {
+ ret = (int)nwritten;
+ goto errout_with_sem;
+ }
+ }
+
/* Check for pre-formatted CR-LF sequence */
if (remaining > 1 &&
((endptr[0] == '\r' && endptr[1] == '\n') ||
(endptr[0] == '\n' && endptr[1] == '\r')))
{
- /* Just skip over pre-formatted CR-LF or LF-CR sequence */
+ nwritten = file_write(&syslog_dev->sl_file,
+ g_syscrlf, 2);
- endptr++;
- remaining--;
- }
- else
- {
- /* Write everything up to the position of the special
- * character.
- *
- * - buffer points to next byte to output.
- * - endptr points to the special character.
+ /* Synchronize the file when each CR-LF is encountered
+ * (i.e., implements line buffering always).
*/
- writelen = (size_t)((uintptr_t)endptr - (uintptr_t)buffer);
- if (writelen > 0)
+#ifndef CONFIG_DISABLE_MOUNTPOINT
+ if (nwritten > 0)
{
- nwritten = file_write(&syslog_dev->sl_file,
- buffer, writelen);
- if (nwritten < 0)
- {
- ret = (int)nwritten;
- goto errout_with_sem;
- }
+ syslog_dev_flush(channel);
Review comment:
I can try to do:
```
/* Check for pre-formatted CR-LF sequence */
if (remaining > 1 &&
((endptr[0] == '\r' && endptr[1] == '\n') ||
(endptr[0] == '\n' && endptr[1] == '\r')))
{
writelen = sizeof(g_syscrlf);
/* Skip over pre-formatted CR-LF or LF-CR sequence */
endptr++;
remaining--;
}
else
{
/* Ignore the carriage return, but for the linefeed, output
* both a carriage return and a linefeed.
*/
if (*endptr == '\n')
{
writelen = sizeof(g_syscrlf);
}
else
{
writelen = 0;
}
}
if (writelen > 0)
{
nwritten = file_write(&syslog_dev->sl_file,
g_syscrlf, writelen);
/* Synchronize the file when each CR-LF is encountered
* (i.e., implements line buffering always).
*/
if (nwritten > 0)
{
syslog_dev_flush(channel);
}
if (nwritten < 0)
{
ret = (int)nwritten;
goto errout_with_sem;
}
}
```
@xiaoxiang781216 what do you think?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]