Policy for style guide: conventions for naming size/number variables #85728

Open
opened 2021-02-17 08:22:16 +01:00 by Campbell Barton · 8 comments

Currently there are multiple conventions for naming variables that represent numbers, e.g. (amt, len, ct, cnt, count, sz, tot, num, ...).

Although some are used much more widely than others.

This proposal is to standardize on a fewer terms to be used consistently across the code-base.

NOTE: this is the result of a bf-admins meeting, posting for reference.


Proposal for naming size/number variables

  • num to specify the number of items in an array or for data-structures that store the number of items.
  • len for strings (the length of the string without it's null byte, as used in strlen).
  • size to specify size in bytes.
  • count for accumulated values (such as the number of items in a linked-list).

These should be used as a suffix, with the name of the values for the prefix, e.g.

/* Struct members. */
struct {
  int *lut;
  int  lut_num;
}

/* Function arguments. */
void function(int *lut, int lut_num);

/* Or functions themselves. */
int BLI_listbase_count(const ListBase *list);
int BLI_ghash_num(ghash);
int BLI_dynstr_len(ds);

Currently there are multiple conventions for naming variables that represent numbers, e.g. (`amt`, `len`, `ct`, `cnt`, `count`, `sz`, `tot`, `num`, ...). Although some are used much more widely than others. This proposal is to standardize on a fewer terms to be used consistently across the code-base. NOTE: this is the result of a bf-admins meeting, posting for reference. ----- **Proposal for naming size/number variables** - `num` to specify the number of items in an array or for data-structures that store the number of items. - `len` for strings *(the length of the string without it's null byte, as used in `strlen`)*. - `size` to specify size in bytes. - `count` for accumulated values *(such as the number of items in a linked-list)*. These should be used as a suffix, with the name of the values for the prefix, e.g. ``` /* Struct members. */ struct { int *lut; int lut_num; } /* Function arguments. */ void function(int *lut, int lut_num); /* Or functions themselves. */ int BLI_listbase_count(const ListBase *list); int BLI_ghash_num(ghash); int BLI_dynstr_len(ds); ```
Campbell Barton self-assigned this 2021-02-17 08:22:16 +01:00
Author
Owner

Changed status from 'Needs Triage' to: 'Confirmed'

Changed status from 'Needs Triage' to: 'Confirmed'
Author
Owner

Added subscribers: @ideasman42, @iss, @rjg, @brecht, @mont29, @Sergey, @dfelinto

Added subscribers: @ideasman42, @iss, @rjg, @brecht, @mont29, @Sergey, @dfelinto
Author
Owner

These changes where agreed in the bf-admin meeting, flagging the change from _len to _num as causing a fairly huge number edits to existing source code.

I'm not really keen on this change, on the other hand - as part of standardizing on terms, it's OK, I'm not pushing to reverse the decision.

These changes where agreed in the bf-admin meeting, flagging the change from `_len` to `_num` as causing a fairly huge number edits to existing source code. I'm not really keen on this change, on the other hand - as part of standardizing on terms, it's OK, I'm not pushing to reverse the decision.

Agreed.

Agreed.
StephanieBogan commented 2021-02-17 20:26:45 +01:00 (Migrated from localhost:3001)

Added subscriber: @StephanieBogan

Added subscriber: @StephanieBogan
StephanieBogan commented 2021-02-17 20:26:45 +01:00 (Migrated from localhost:3001)

This comment was removed by @StephanieBogan

*This comment was removed by @StephanieBogan*
Member

Added subscribers: @JacquesLucke, @HooglyBoogly

Added subscribers: @JacquesLucke, @HooglyBoogly
Member

I'd like to propose one small adjustment to the proposal that I talked about with @JacquesLucke.

Generic C++ containers have a standardized size() method that returns how many elements the object contains. This is standard in the STL and other libraries, as well as in our own containers.
I'd like to propose keeping those size() methods for consistency, but only for "generic containers", where "size" couldn't be confused with anything else.

Other than that, it would be good to move this to the style guide so it's easier to find.

I'd like to propose one small adjustment to the proposal that I talked about with @JacquesLucke. Generic C++ containers have a standardized `size()` method that returns how many elements the object contains. This is standard in the STL and other libraries, as well as in our own containers. I'd like to propose keeping those `size()` methods for consistency, but only for "generic containers", where "size" couldn't be confused with anything else. Other than that, it would be good to move this to the style guide so it's easier to find.
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#85728
No description provided.