Context object in custom driver changes properties and methods "randomly" and with handlers is incomplete #63146

Closed
opened 2019-03-31 06:46:05 +02:00 by iszotic · 9 comments

System Information
Operating system: Linux-4.15.0-46-generic-x86_64-with-Ubuntu-18.04-bionic 64 Bits
Graphics card: Radeon RX Vega ATI Technologies Inc. 4.5.13542 Core Profile Context 18.50.1.418

Blender Version
Broken: version: 2.80 (sub 52)

Short description of error
I know you are not supposed to use context in drivers, but this doesn't look fine when doing dir(bpy.context) in a driver it "randomly" changes between these 2. and with handles that it's supposed to be used #43385 , it prints only the first one that is broken

Like this nothing works

 ['__doc__', '__module__', '__slots__', 'area', 'bl_rna', 'blend_data', 'collection', 'copy', 'depsgraph', 'engine', 'gizmo_group', 'layer_collection', 'mode', 'preferences', 'region', 'region_data', 'rna_type', 'scene', 'screen', 'space_data', 'tool_settings', 'view_layer', 'window', 'window_manager', 'workspace']

Like this everything works

['__doc__', '__module__', '__slots__', 'active_base', 'active_bone', 'active_gpencil_frame', 'active_gpencil_layer', 'active_object', 'active_operator', 'active_pose_bone', 'area', 'bl_rna', 'blend_data', 'collection', 'copy', 'depsgraph', 'edit_object', 'editable_bases', 'editable_bones', 'editable_gpencil_layers', 'editable_gpencil_strokes', 'editable_objects', 'engine', 'gizmo_group', 'gpencil_data', 'gpencil_data_owner', 'image_paint_object', 'layer_collection', 'mode', 'object', 'objects_in_mode', 'objects_in_mode_unique_data', 'particle_edit_object', 'pose_object', 'preferences', 'region', 'region_data', 'rna_type', 'scene', 'screen', 'sculpt_object', 'selectable_bases', 'selectable_objects', 'selected_bases', 'selected_bones', 'selected_editable_bases', 'selected_editable_bones', 'selected_editable_fcurves', 'selected_editable_objects', 'selected_editable_sequences', 'selected_objects', 'selected_pose_bones', 'selected_pose_bones_from_active_object', 'selected_sequences', 'sequences', 'space_data', 'tool_settings', 'uv_sculpt_object', 'vertex_paint_object', 'view_layer', 'visible_bases', 'visible_bones', 'visible_gpencil_layers', 'visible_objects', 'visible_pose_bones', 'weight_paint_object', 'window', 'window_manager', 'workspace']

Exact steps for others to reproduce the error

For drivers this code

import bpy

def active_layer(dummy):
    print(dir(bpy.context))
    name = bpy.context.window.view_layer.name
    return bpy.context.scene.view_layers.find(name) 
bpy.app.driver_namespace['active_layer'] = active_layer

For Handlers this code

import bpy
from bpy.app.handlers import persistent

@persistent
def load_handler(random):
    print(dir(bpy.context))
    view_layer = bpy.context.window.view_layer
    bpy.context.scene.node_tree.nodes['Render Layers'].layer = view_layer.name
    
bpy.app.handlers.render_pre.append(load_handler)

context_bug.blend

**System Information** Operating system: Linux-4.15.0-46-generic-x86_64-with-Ubuntu-18.04-bionic 64 Bits Graphics card: Radeon RX Vega ATI Technologies Inc. 4.5.13542 Core Profile Context 18.50.1.418 **Blender Version** Broken: version: 2.80 (sub 52) **Short description of error** I know you are not supposed to use context in drivers, but this doesn't look fine when doing dir(bpy.context) in a driver it "randomly" changes between these 2. and with handles that it's supposed to be used #43385 , it prints only the first one that is broken Like this nothing works ``` ['__doc__', '__module__', '__slots__', 'area', 'bl_rna', 'blend_data', 'collection', 'copy', 'depsgraph', 'engine', 'gizmo_group', 'layer_collection', 'mode', 'preferences', 'region', 'region_data', 'rna_type', 'scene', 'screen', 'space_data', 'tool_settings', 'view_layer', 'window', 'window_manager', 'workspace'] ``` Like this everything works ``` ['__doc__', '__module__', '__slots__', 'active_base', 'active_bone', 'active_gpencil_frame', 'active_gpencil_layer', 'active_object', 'active_operator', 'active_pose_bone', 'area', 'bl_rna', 'blend_data', 'collection', 'copy', 'depsgraph', 'edit_object', 'editable_bases', 'editable_bones', 'editable_gpencil_layers', 'editable_gpencil_strokes', 'editable_objects', 'engine', 'gizmo_group', 'gpencil_data', 'gpencil_data_owner', 'image_paint_object', 'layer_collection', 'mode', 'object', 'objects_in_mode', 'objects_in_mode_unique_data', 'particle_edit_object', 'pose_object', 'preferences', 'region', 'region_data', 'rna_type', 'scene', 'screen', 'sculpt_object', 'selectable_bases', 'selectable_objects', 'selected_bases', 'selected_bones', 'selected_editable_bases', 'selected_editable_bones', 'selected_editable_fcurves', 'selected_editable_objects', 'selected_editable_sequences', 'selected_objects', 'selected_pose_bones', 'selected_pose_bones_from_active_object', 'selected_sequences', 'sequences', 'space_data', 'tool_settings', 'uv_sculpt_object', 'vertex_paint_object', 'view_layer', 'visible_bases', 'visible_bones', 'visible_gpencil_layers', 'visible_objects', 'visible_pose_bones', 'weight_paint_object', 'window', 'window_manager', 'workspace'] ``` **Exact steps for others to reproduce the error** For drivers this code ``` import bpy def active_layer(dummy): print(dir(bpy.context)) name = bpy.context.window.view_layer.name return bpy.context.scene.view_layers.find(name) bpy.app.driver_namespace['active_layer'] = active_layer ``` For Handlers this code ``` import bpy from bpy.app.handlers import persistent @persistent def load_handler(random): print(dir(bpy.context)) view_layer = bpy.context.window.view_layer bpy.context.scene.node_tree.nodes['Render Layers'].layer = view_layer.name bpy.app.handlers.render_pre.append(load_handler) ``` [context_bug.blend](https://archive.blender.org/developer/F6902838/context_bug.blend)
Author

Added subscriber: @iszotic

Added subscriber: @iszotic

Added subscribers: @mont29, @ZedDB

Added subscribers: @mont29, @ZedDB

@mont29 any input on this?

@mont29 any input on this?

Added subscriber: @ideasman42

Added subscriber: @ideasman42

First context is not invalid, it’s just the default minimal context, while the other one is the 'screen' context. Anyway, relying of a specific type of context is not expected to work in a driver evaluation code…

As for handlers am not sure what exactly is the issue, nor what is expected to work in that context, @ideasman42 should know more here?

First context is not invalid, it’s just the default minimal context, while the other one is the 'screen' context. Anyway, relying of a specific type of context is not expected to work in a driver evaluation code… As for handlers am not sure what exactly is the issue, nor what is expected to work in that context, @ideasman42 should know more here?

@ideasman42 any input?

@ideasman42 any input?
Member

Added subscriber: @JacquesLucke

Added subscriber: @JacquesLucke
Member

Changed status from 'Open' to: 'Archived'

Changed status from 'Open' to: 'Archived'
Jacques Lucke self-assigned this 2019-08-07 16:10:52 +02:00
Member

I also do not see a bug here. Drivers and handlers just do not run within specific contexts, nor should they.

I also do not see a bug here. Drivers and handlers just do not run within specific contexts, nor should they.
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#63146
No description provided.