Core: expose ID.session_uid in RNA #116888

Merged
Jacques Lucke merged 2 commits from JacquesLucke/blender:expose-session-id into main 2024-01-08 15:34:20 +01:00
Member

This exposes the internal ID.session_uuid in the Python API as ID.session_id. The exposed name is not session_uuid, because from what I gathered people would prefer to rather rename the internal name because it is universally unique.

The reason for exposing this is to allow Python scripts to call operators that take the session id as input. A fair number of operators do this as you can see when searching for WM_operator_properties_id_lookup.

I don't see a strong reason against exposing this as read-only property, but maybe I'm missing something.

This exposes the internal `ID.session_uuid` in the Python API as `ID.session_id`. The exposed name is not `session_uuid`, because from what I gathered people would prefer to rather rename the internal name because it is universally unique. The reason for exposing this is to allow Python scripts to call operators that take the session id as input. A fair number of operators do this as you can see when searching for `WM_operator_properties_id_lookup`. I don't see a strong reason against exposing this as read-only property, but maybe I'm missing something.
Jacques Lucke added 1 commit 2024-01-08 12:56:08 +01:00
Jacques Lucke requested review from Brecht Van Lommel 2024-01-08 12:56:25 +01:00
Jacques Lucke requested review from Bastien Montagne 2024-01-08 12:56:25 +01:00
Bastien Montagne requested changes 2024-01-08 13:28:56 +01:00
Bastien Montagne left a comment
Owner

I could have sworn that this was already exposed to RNA...

Indeed see no reasons to not do it, as long as it remain read-only, it can also help in some debugging cases.

Would rather use the name session_uid though, for two reasons:

  • id is already used in our codebase and API in for something completely different (the data-blocks).
  • This session id is assumed to be unique during that session (at least within 'reasonable' situations), so using uid makes sense to me?

Think it's also time to rename our C++ code to use the matching name too, unless someone strongly object would do that in coming days?

I could have sworn that this was already exposed to RNA... Indeed see no reasons to not do it, as long as it remain read-only, it can also help in some debugging cases. Would rather use the name `session_uid` though, for two reasons: * `id` is already used in our codebase and API in for something completely different (the data-blocks). * This session id is assumed to be unique during that session (at least within 'reasonable' situations), so using `uid` makes sense to me? Think it's also time to rename our C++ code to use the matching name too, unless someone strongly object would do that in coming days?
Jacques Lucke added 1 commit 2024-01-08 13:43:48 +01:00
Author
Member

Using session_uid is fine with me.
Renaming the internal name soon is a good idea too, especially since the term "session_uuid" is already exposed as parameter name of some operators. Now, it's likely still possible to change this without breaking any scripts, because the session uid was not exposed.

Using `session_uid` is fine with me. Renaming the internal name soon is a good idea too, especially since the term "session_uuid" is already exposed as parameter name of some operators. Now, it's likely still possible to change this without breaking any scripts, because the session uid was not exposed.
Bastien Montagne approved these changes 2024-01-08 14:31:02 +01:00
Jacques Lucke changed title from Core: expose ID.session_id in RNA to Core: expose ID.session_uid in RNA 2024-01-08 15:31:04 +01:00
Jacques Lucke merged commit c68b22cfdf into main 2024-01-08 15:34:20 +01:00
Jacques Lucke deleted branch expose-session-id 2024-01-08 15:34:22 +01:00
First-time contributor

Thanks for making this addition! Is there a way to retrieve a datablock Python object if I have its session_uid, other than iterating through all of them?

Thanks for making this addition! Is there a way to retrieve a datablock Python object if I have its `session_uid`, other than iterating through all of them?
Author
Member

@artfunkel no that's currently not possible. Even internally we have to iterate through all of them currently. If you need to look up many data blocks by session uid, you can create temporary dict of course.

@artfunkel no that's currently not possible. Even internally we have to iterate through all of them currently. If you need to look up many data blocks by session uid, you can create *temporary* `dict` of course.
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
3 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#116888
No description provided.