Significato di IODisplayWrangler nelle asserzioni di risparmio energia

5

Quando controllo le mie asserzioni di risparmio energia (MacBook Pro con macOS Sierra), vedo la seguente riga:

$ sudo pmset -g assertions
...
Idle sleep preventers: IODisplayWrangler

Che cos'è IODisplayWrangler e cosa vuol dire che è elencato come "prevenzione del riposo inattivo"?

    
posta augurar 28.11.2017 - 10:26
fonte

1 risposta

3

Si scopre che questa parte del sistema operativo è open source . (Il link è per macOS 10.12.6, ma sono disponibili altre versioni.)

La lettura del codice rivela che IODisplayWrangler è una classe che si interfaccia con il sistema di gestione dell'alimentazione per gestire la luminosità del display. Rileva l'attività dell'utente e lo usa per determinare quando attenuare, accendere o spegnere i display. Quando il display è attivo, la classe imposta un'asserzione del kernel che impedisce il sonno inattivo. Quindi vedere IODisplayWrangler come un sistema di spegnimento automatico inattivo è normale quando lo schermo è acceso.

Nelle parole dello sviluppatore:

/*
    This is the Power Management policy-maker for the displays.  It senses when
    the display is idle and lowers power accordingly.  It raises power back up
    when the display becomes un-idle.

    It senses idleness with a combination of an idle timer and the "activityTickle"
    method call.  "activityTickle" is called by objects which sense keyboard activity,
    mouse activity, or other button activity (display contrast, display brightness,
    PCMCIA eject).  The method sets a "displayInUse" flag.  When the timer expires,
    this flag is checked.  If it is on, the display is judged "in use".  The flag is
    cleared and the timer is restarted.

    If the flag is off when the timer expires, then there has been no user activity
    since the last timer expiration, and the display is judged idle and its power is
    lowered.

    [...]

    This driver calls the drivers for each display and has them move their display
    between various power states. When the display is idle, its power is dropped
    state by state until it is in the lowest state.  When it becomes un-idle it is
    powered back up to the state where it was last being used.

    [...]

    We register with Power Management only so that we can be informed of changes in
    the Power Management aggressiveness factor.  We don't really have a device with
    power states so we implement the absolute minimum. The display drivers themselves
    are part of the Power Management hierarchy under their respective frame buffers.
*/
    
risposta data 03.01.2018 - 07:43
fonte

Leggi altre domande sui tag