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

Homogenize printf formatting #825

Merged
merged 1 commit into from
Jan 16, 2025
Merged

Homogenize printf formatting #825

merged 1 commit into from
Jan 16, 2025

Conversation

saghul
Copy link
Contributor

@saghul saghul commented Jan 14, 2025

The __attribute__(format(printf(a, b))) syntax is supported in MSVC since version 2015 (we require 2019).

Add some helper macros while we're at it.

@saghul saghul force-pushed the unify-format-printf branch from 69d102c to 6e09490 Compare January 14, 2025 14:49
@saghul saghul marked this pull request as draft January 14, 2025 14:59
@saghul
Copy link
Contributor Author

saghul commented Jan 14, 2025

The __attribute__(format(printf(a, b))) syntax is supported in MSVC since version 2015 (we require 2019).

Hum, maybe not quite :-/

@saghul
Copy link
Contributor Author

saghul commented Jan 14, 2025

@saghul saghul force-pushed the unify-format-printf branch from 737ac4d to 2470553 Compare January 14, 2025 15:53
#define JS_EXTERN /* nothing */
#endif

/* Borrowed from Folly */
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Not a huge fan of having this duplicated, but I'm not sure how to avoid it...

@saghul saghul requested a review from bnoordhuis January 14, 2025 16:00
@saghul saghul marked this pull request as ready for review January 14, 2025 16:00
@saghul saghul force-pushed the unify-format-printf branch 3 times, most recently from 8063bc9 to c18ca3b Compare January 16, 2025 09:07
@saghul saghul force-pushed the unify-format-printf branch from c18ca3b to e450007 Compare January 16, 2025 09:53
@saghul
Copy link
Contributor Author

saghul commented Jan 16, 2025

@bnoordhuis This is now ready, PTAL when you get a chance.

Comment on lines +103 to +120
/* Borrowed from Folly */
#ifndef JS_PRINTF_FORMAT
#ifdef _MSC_VER
#include <sal.h>
#define JS_PRINTF_FORMAT _Printf_format_string_
#define JS_PRINTF_FORMAT_ATTR(format_param, dots_param)
#else
#define JS_PRINTF_FORMAT
#if !defined(__clang__) && defined(__GNUC__)
#define JS_PRINTF_FORMAT_ATTR(format_param, dots_param) \
__attribute__((format(gnu_printf, format_param, dots_param)))
#else
#define JS_PRINTF_FORMAT_ATTR(format_param, dots_param) \
__attribute__((format(printf, format_param, dots_param)))
#endif
#endif
#endif

Copy link
Collaborator

Choose a reason for hiding this comment

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

What about compilers that define neither __clang__ nor __GNUC__ ? Do you rely on the fact that __attribute__() expands to nothing?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This code assumes __attribute__((format(printf aka the "standard". will work. If when we find a compiler where that's not true, we can add an extra check.

Comment on lines +49 to +65
#ifndef JS_PRINTF_FORMAT
#ifdef _MSC_VER
#include <sal.h>
#define JS_PRINTF_FORMAT _Printf_format_string_
#define JS_PRINTF_FORMAT_ATTR(format_param, dots_param)
#else
#define JS_PRINTF_FORMAT
#if !defined(__clang__) && defined(__GNUC__)
#define JS_PRINTF_FORMAT_ATTR(format_param, dots_param) \
__attribute__((format(gnu_printf, format_param, dots_param)))
#else
#define JS_PRINTF_FORMAT_ATTR(format_param, dots_param) \
__attribute__((format(printf, format_param, dots_param)))
#endif
#endif
#endif

Copy link
Collaborator

Choose a reason for hiding this comment

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

Duplicating these definitions should definitely be avoided, but this would require either 2 separate public header files or including quickjs.h in places where we aim to avoid it. Neither approach is satisfying.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yeah, I agree. Since it's a small piece I went with duplication. I'm open to other ideas!

Copy link
Contributor

Choose a reason for hiding this comment

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

Quick testing suggests including quickjs.h in cutils.h Just Works™ but I don't have a strong opinion on what approach is better. If you think duplication is best, go for it.

Comment on lines +49 to +65
#ifndef JS_PRINTF_FORMAT
#ifdef _MSC_VER
#include <sal.h>
#define JS_PRINTF_FORMAT _Printf_format_string_
#define JS_PRINTF_FORMAT_ATTR(format_param, dots_param)
#else
#define JS_PRINTF_FORMAT
#if !defined(__clang__) && defined(__GNUC__)
#define JS_PRINTF_FORMAT_ATTR(format_param, dots_param) \
__attribute__((format(gnu_printf, format_param, dots_param)))
#else
#define JS_PRINTF_FORMAT_ATTR(format_param, dots_param) \
__attribute__((format(printf, format_param, dots_param)))
#endif
#endif
#endif

Copy link
Contributor

Choose a reason for hiding this comment

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

Quick testing suggests including quickjs.h in cutils.h Just Works™ but I don't have a strong opinion on what approach is better. If you think duplication is best, go for it.

@saghul saghul merged commit b9dbcf4 into master Jan 16, 2025
59 checks passed
@saghul saghul deleted the unify-format-printf branch January 16, 2025 15:34
@saghul
Copy link
Contributor Author

saghul commented Jan 16, 2025

We use cutils.h in a number of places, just in case, I'll go with duplication for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants