1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
/*
* Copyright © 2017 Red Hat, Inc
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Christian J. Kellner <christian@kellner.me>
*/
#include "config.h"
#include "boltctl-cmds.h"
#include "bolt-str.h"
#include <stdlib.h>
static gboolean
quit_main_loop (gpointer user_data)
{
GMainLoop *loop = user_data;
g_main_loop_quit (loop);
return FALSE;
}
int
power (BoltClient *client, int argc, char **argv)
{
g_autoptr(GOptionContext) optctx = NULL;
g_autoptr(GMainLoop) main_loop = NULL;
g_autoptr(BoltPower) power = NULL;
g_autoptr(GError) error = NULL;
BoltPowerState state;
gboolean do_query = FALSE;
int fd;
double timeout = 0;
GOptionEntry options[] = {
{ "query", 'q', 0, G_OPTION_ARG_NONE, &do_query, "Query the status", NULL },
{ "timeout", 't', 0, G_OPTION_ARG_DOUBLE, &timeout, "Quit after N seconds", NULL },
{ NULL }
};
optctx = g_option_context_new ("- Force power configuration");
g_option_context_add_main_entries (optctx, options, NULL);
if (!g_option_context_parse (optctx, &argc, &argv, &error))
return usage_error (error);
power = bolt_client_new_power_client (client, NULL, &error);
if (power == NULL)
{
g_warning ("Could get proxy for power interface: %s",
error->message);
return EXIT_FAILURE;
}
if (do_query)
{
g_autoptr(GPtrArray) guards = NULL;
const char *tree_branch;
const char *tree_right;
const char *str;
gboolean supported;
supported = bolt_power_is_supported (power);
g_print ("supported: %s\n", bolt_yesno (supported));
if (!supported)
return EXIT_SUCCESS;
state = bolt_power_get_state (power);
str = bolt_power_state_to_string (state);
g_print ("power state: %s\n", str);
guards = bolt_power_list_guards (power, NULL, &error);
if (guards == NULL)
{
g_warning ("Could not list guards: %s", error->message);
return EXIT_FAILURE;
}
tree_branch = bolt_glyph (TREE_BRANCH);
tree_right = bolt_glyph (TREE_RIGHT);
g_print ("%u active power guards%s\n", guards->len,
guards->len > 0 ? ":" : "");
for (guint i = 0; i < guards->len; i++)
{
BoltPowerGuard *g = g_ptr_array_index (guards, 0);
g_print (" guard '%s'\n", g->id);
g_print (" %s who: %s\n", tree_branch, g->who);
g_print (" %s pid: %u\n", tree_right, g->pid);
g_print ("\n");
}
return EXIT_SUCCESS;
}
fd = bolt_power_force_power (power, &error);
if (fd == -1)
{
g_warning ("Could force power controller: %s", error->message);
return EXIT_SUCCESS;
}
g_print ("acquired power guard (%d)\n", fd);
main_loop = g_main_loop_new (NULL, FALSE);
if (timeout > 0.)
{
guint tout = (guint) timeout * 1000;
g_timeout_add (tout, quit_main_loop, main_loop);
}
g_main_loop_run (main_loop);
(void) close (fd);
return EXIT_SUCCESS;
}
|