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

OSI violates several Protobuf Style Guide rules #711

Open
globberwops opened this issue Feb 13, 2023 · 4 comments · May be fixed by #776
Open

OSI violates several Protobuf Style Guide rules #711

globberwops opened this issue Feb 13, 2023 · 4 comments · May be fixed by #776
Assignees
Labels
HelpWanted I have tried my best - please help me!
Milestone

Comments

@globberwops
Copy link
Contributor

globberwops commented Feb 13, 2023

Describe the bug

OSI violates several Protobuf Style Guide rules, see Style Guide

  • File Structure
    imports are listed before package name
    imports are not sorted
    options are listed before package name and imports
  • Enums
    zero values do not use the suffix UNSPECIFIED

Expected

Follow the Style Guide and explicitly list exceptions as it is done here:

"OSI uses singular instead of plural for repeated field names."

Provide a protolint config file, use protolint in CI.

---
lint:
  rules:
    remove:
      - REPEATED_FIELD_NAMES_PLURALIZED
  rules_option:
    enum_field_names_zero_value_end_with:
      suffix: UNKNOWN
    indent:
      style: 4
    max_line_length:
      max_chars: 120
      tab_chars: 4

Regards,
Martin

Martin Stump [email protected] on behalf of MBition GmbH, Provider Information

@jdsika
Copy link
Contributor

jdsika commented Feb 13, 2023

Hi Martin,
at least for the pluralized repeated I think I can add to the discussion. We have talked about this several times in the past and one argument for not using a plural was that we had occasions in which we changed an optional message to a repeated message. The moment we then have to use a "s" at the end we would break compatibility which is why we thought it might be handy to just leave the singular.
Best regards
Carlo

@jdsika
Copy link
Contributor

jdsika commented Feb 13, 2023

zero values do not use the suffix UNSPECIFIED

The enum structure of OSI has been adapted to the need of the application. The first value is UNKNOWN and the second is OTHER

Those two are sematically somehow in combination UNCECIFIED:

  1. UKNOWN means that it is unclear what the value means, it can be false, non existant in the interface and unsupported or anything else
  2. OTHER means on the other hand that the reading was correct and that there is a clear unterstanding of what the value is but it is just not one of the values described in the ENUM. In this case e.g. an application could be missing a color and using other to represent the value and add the value for the next version of OSI.

@globberwops
Copy link
Contributor Author

Hi Martin, at least for the pluralized repeated I think I can add to the discussion. We have talked about this several times in the past and one argument for not using a plural was that we had occasions in which we changed an optional message to a repeated message. The moment we then have to use a "s" at the end we would break compatibility which is why we thought it might be handy to just leave the singular. Best regards Carlo

Hi Carlo,
Thank you for the clarification.
Just to be clear, I am not calling for blindly following every rule in the Style Guide.
This specific exception is well documented, which is totally fine in my opinion.

@globberwops
Copy link
Contributor Author

globberwops commented Feb 13, 2023

zero values do not use the suffix UNSPECIFIED

The enum structure of OSI has been adapted to the need of the application. The first value is UNKNOWN and the second is OTHER

Those two are sematically somehow in combination UNCECIFIED:

  1. UKNOWN means that it is unclear what the value means, it can be false, non existant in the interface and unsupported or anything else
  2. OTHER means on the other hand that the reading was correct and that there is a clear unterstanding of what the value is but it is just not one of the values described in the ENUM. In this case e.g. an application could be missing a color and using other to represent the value and add the value for the next version of OSI.

Again, thank you for the clarification.

The reason for the rule is stated as

The zero value enum should have the suffix UNSPECIFIED, because a server or application that gets an unexpected enum value will mark the field as unset in the proto instance. The field accessor will then return the default value, which for enum fields is the first enum value.

This is basically what UNKNOWN is for in OSI, right?
I'll update the example .protolint.yml above to reflect that exception.

@jdsika jdsika self-assigned this Feb 24, 2023
@jdsika jdsika added the HelpWanted I have tried my best - please help me! label Feb 24, 2023
@jdsika jdsika added this to the V3.6.0 milestone Feb 24, 2023
@jdsika jdsika modified the milestones: V3.6.0, V3.7.0 Apr 25, 2024
@jdsika jdsika linked a pull request Apr 25, 2024 that will close this issue
8 tasks
@jdsika jdsika assigned ClemensLinnhoff and unassigned jdsika Apr 25, 2024
@ClemensLinnhoff ClemensLinnhoff modified the milestones: V3.7.0, V3.8.0 May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
HelpWanted I have tried my best - please help me!
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants