123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- /* busUtils.js
- *
- * Copyright (C) 2022 kosmospredanie, efosmark
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- import GLib from 'gi://GLib';
- import Gio from 'gi://Gio';
- export const Methods = Object.freeze({
- 'verify': 0,
- 'temporary': 1,
- 'persistent': 2
- });
- export const Monitor = class Monitor {
- constructor(variant) {
- let unpacked = variant.unpack();
- this.connector = unpacked[0].unpack()[0].unpack();
- let modes = unpacked[1].unpack();
- for (let i = 0; i < modes.length; i++) {
- let mode = modes[i].unpack();
- let id = mode[0].unpack();
- let mode_props = mode[6].unpack();
- if ('is-current' in mode_props) {
- let is_current = mode_props['is-current'].unpack().get_boolean();
- if (is_current) {
- this.current_mode_id = id;
- break;
- }
- }
- }
- let props = unpacked[2].unpack();
- if ('is-underscanning' in props) {
- this.is_underscanning = props['is-underscanning'].unpack().get_boolean();
- } else {
- this.is_underscanning = false;
- }
- if ('is-builtin' in props) {
- this.is_builtin = props['is-builtin'].unpack().get_boolean();
- } else {
- this.is_builtin = false;
- }
- }
- }
- export const LogicalMonitor = class LogicalMonitor {
- constructor(variant) {
- let unpacked = variant.unpack();
- this.x = unpacked[0].unpack();
- this.y = unpacked[1].unpack();
- this.scale = unpacked[2].unpack();
- this.transform = unpacked[3].unpack();
- this.primary = unpacked[4].unpack();
- // [ [connector, vendor, product, serial]* ]
- this.monitors = unpacked[5].deep_unpack();
- this.properties = unpacked[6].unpack();
- for (let key in this.properties) {
- this.properties[key] = this.properties[key].unpack().unpack();
- }
- }
- }
- export const DisplayConfigState = class DisplayConfigState {
- constructor(result) {
- let unpacked = result.unpack();
- this.serial = unpacked[0].unpack();
- this.monitors = [];
- let monitors = unpacked[1].unpack();
- monitors.forEach(monitor_packed => {
- let monitor = new Monitor(monitor_packed);
- this.monitors.push(monitor);
- });
- this.logical_monitors = [];
- let logical_monitors = unpacked[2].unpack();
- logical_monitors.forEach(lmonitor_packed => {
- let lmonitor = new LogicalMonitor(lmonitor_packed);
- this.logical_monitors.push(lmonitor);
- });
- this.properties = unpacked[3].unpack();
- for (let key in this.properties) {
- this.properties[key] = this.properties[key].unpack().unpack();
- }
- }
- get builtin_monitor() {
- for (let i = 0; i < this.monitors.length; i++) {
- let monitor = this.monitors[i];
- if (monitor.is_builtin) {
- return monitor;
- }
- }
- return null;
- }
- get_monitor(connector) {
- for (let i = 0; i < this.monitors.length; i++) {
- let monitor = this.monitors[i];
- if (monitor.connector === connector) {
- return monitor;
- }
- }
- return null;
- }
- get_logical_monitor_for(connector) {
- for (let i = 0; i < this.logical_monitors.length; i++) {
- let lmonitor = this.logical_monitors[i];
- for (let j = 0; j < lmonitor.monitors.length; j++) {
- let lm_connector = lmonitor.monitors[j][0];
- if (connector === lm_connector) {
- return lmonitor;
- }
- }
- }
- return null;
- }
- pack_to_apply(method) {
- let packing = [this.serial, method, [], {}];
- let logical_monitors = packing[2];
- let properties = packing[3];
- this.logical_monitors.forEach(lmonitor => {
- let lmonitor_pack = [
- lmonitor.x,
- lmonitor.y,
- lmonitor.scale,
- lmonitor.transform,
- lmonitor.primary,
- []
- ];
- let monitors = lmonitor_pack[5];
- for (let i = 0; i < lmonitor.monitors.length; i++) {
- let connector = lmonitor.monitors[i][0];
- let monitor = this.get_monitor(connector);
- monitors.push([
- connector,
- monitor.current_mode_id,
- {
- 'enable_underscanning': new GLib.Variant('b', monitor.is_underscanning)
- }
- ]);
- }
- logical_monitors.push(lmonitor_pack);
- });
- if ('layout-mode' in this.properties) {
- properties['layout-mode'] = new GLib.Variant('b', this.properties['layout-mode']);
- }
- return new GLib.Variant('(uua(iiduba(ssa{sv}))a{sv})', packing);
- }
- }
|