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

Generating enums from IDL #56

Merged
merged 1 commit into from
Mar 3, 2025
Merged

Generating enums from IDL #56

merged 1 commit into from
Mar 3, 2025

Conversation

tigrannajaryan
Copy link
Collaborator

Resolves #51

We now have separate "storage" and "exported" types defined for STEF data types. For most types they are equivalent except for Enums where the "storage" type is uint64, while "exported" type is user defined.

The generated code now uses either "storage" or "exported" type, depending on the context and converts between the types as needed.

The Metric.Type field now uses enum code generation. Previously manually created enums.go is deleted. enums.go also contains MetricFlags which is not an enum that we want to generate so it was moved to internal/metricflags.go.

I will need to refactor internal/metricflags.go, but will do it in a future PR to keep the size of this PR manageable.

The generator needs more tests to verify how it works with enums in other data types (oneof,array,multimap). We need to add a better test suite for generator in the future.

Resolves #51

We now have separate "storage" and "exported" types
defined for STEF data types. For most types they are
equivalent except for Enums where the "storage" type
is uint64, while "exported" type is user defined.

The generated code now uses either "storage" or "exported"
type, depending on the context and converts between the
types as needed.

The Metric.Type field now uses enum code generation. Previously
manually created enums.go is deleted. enums.go also contains
MetricFlags which is not an enum that we want to generate so
it was moved to internal/metricflags.go.

I will need to refactor internal/metricflags.go, but will do it
in a future PR to keep the size of this PR manageable.

The generator needs more tests to verify how it works with enums
in other data types (oneof,array,multimap). We need to add a better
test suite for generator in the future.
@tigrannajaryan tigrannajaryan merged commit e8a6f46 into main Mar 3, 2025
2 checks passed
@tigrannajaryan tigrannajaryan deleted the tigran/genenum branch March 3, 2025 01:33
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.

Add enum support to STEF IDL
2 participants