summaryrefslogtreecommitdiff
path: root/cpufreq/src/cpufreq-selector/main.c
blob: 749653db913244fb70033c1c05aef87dcc0999c1 (plain)
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/*
 * MATE CPUFreq Applet
 * Copyright (C) 2004 Carlos Garcia Campos <carlosgc@gnome.org>
 *
 *  This library 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 2 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
 *  General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public
 *  License along with this library; if not, write to the Free
 *  Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * Authors : Carlos Garc�a Campos <carlosgc@gnome.org>
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <glib.h>
#include <glib-object.h>

#ifdef HAVE_POLKIT
#include "cpufreq-selector-service.h"
#else
#include <unistd.h>
#endif
#include "cpufreq-selector-factory.h"


static gint    cpu = 0;
static gchar  *governor = NULL;
static gulong  frequency = 0;

static const GOptionEntry options[] = {
    { "cpu",       'c', 0, G_OPTION_ARG_INT,    &cpu,       "CPU Number",       NULL },
    { "governor",  'g', 0, G_OPTION_ARG_STRING, &governor,  "Governor",         NULL },
    { "frequency", 'f', 0, G_OPTION_ARG_INT,    &frequency, "Frequency in KHz", NULL },
    { NULL }
};

#ifdef HAVE_POLKIT
static void
do_exit (GMainLoop *loop,
         GObject   *object)
{
    if (g_main_loop_is_running (loop))
        g_main_loop_quit (loop);
}

static void
cpufreq_selector_set_values_dbus (void)
{
    DBusGConnection *connection;
    DBusGProxy      *proxy;
    gboolean         res;
    GError          *error = NULL;

    connection = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error);
    if (!connection) {
        g_printerr ("Couldn't connect to system bus: %s\n",
                    error->message);
        g_error_free (error);

        return;
    }

    proxy = dbus_g_proxy_new_for_name (connection,
                                       "org.mate.CPUFreqSelector",
                                       "/org/mate/cpufreq_selector/selector",
                                       "org.mate.CPUFreqSelector");
    if (!proxy) {
        g_printerr ("Could not construct proxy object\n");

        return;
    }

    if (governor) {
        res = dbus_g_proxy_call (proxy, "SetGovernor", &error,
                                 G_TYPE_UINT, cpu,
                                 G_TYPE_STRING, governor,
                                 G_TYPE_INVALID,
                                 G_TYPE_INVALID);
        if (!res) {
            if (error) {
                g_printerr ("Error calling SetGovernor: %s\n", error->message);
                g_error_free (error);
            } else {
                g_printerr ("Error calling SetGovernor\n");
            }

            g_object_unref (proxy);

            return;
        }
    }

    if (frequency != 0) {
        res = dbus_g_proxy_call (proxy, "SetFrequency", &error,
                                 G_TYPE_UINT, cpu,
                                 G_TYPE_UINT, frequency,
                                 G_TYPE_INVALID,
                                 G_TYPE_INVALID);
        if (!res) {
            if (error) {
                g_printerr ("Error calling SetFrequency: %s\n", error->message);
                g_error_free (error);
            } else {
                g_printerr ("Error calling SetFrequency\n");
            }

            g_object_unref (proxy);

            return;
        }
    }

    g_object_unref (proxy);
}
#endif /* HAVE_POLKIT */

static void
cpufreq_selector_set_values (void)
{
    CPUFreqSelector *selector;
    GError          *error = NULL;

    selector = cpufreq_selector_factory_create_selector (cpu);
    if (!selector) {
        g_printerr ("No cpufreq support\n");

        return;
    }

    if (governor) {
        cpufreq_selector_set_governor (selector, governor, &error);

        if (error) {
            g_printerr ("%s\n", error->message);
            g_error_free (error);
            error = NULL;
        }
    }

    if (frequency != 0) {
        cpufreq_selector_set_frequency (selector, frequency, &error);

        if (error) {
            g_printerr ("%s\n", error->message);
            g_error_free (error);
            error = NULL;
        }
    }

    g_object_unref (selector);
}

gint
main (gint argc, gchar **argv)
{
#ifdef HAVE_POLKIT
    GMainLoop      *loop;
#endif
    GOptionContext *context;
    GError         *error = NULL;

#ifndef HAVE_POLKIT
    if (geteuid () != 0) {
        g_printerr ("You must be root\n");

        return 1;
    }

    if (argc < 2) {
        g_printerr ("Missing operand after `cpufreq-selector'\n");
        g_printerr ("Try `cpufreq-selector --help' for more information.\n");

        return 1;
    }
#endif

    context = g_option_context_new ("- CPUFreq Selector");
    g_option_context_add_main_entries (context, options, NULL);

    if (!g_option_context_parse (context, &argc, &argv, &error)) {
        if (error) {
            g_printerr ("%s\n", error->message);
            g_error_free (error);
        }

        g_option_context_free (context);

        return 1;
    }

    g_option_context_free (context);

#ifdef HAVE_POLKIT
    if (!cpufreq_selector_service_register (SELECTOR_SERVICE, &error)) {
        if (governor || frequency != 0) {
            cpufreq_selector_set_values_dbus ();

            return 0;
        }

        g_printerr ("%s\n", error->message);
        g_error_free (error);

        return 1;
    }

    cpufreq_selector_set_values ();

    loop = g_main_loop_new (NULL, FALSE);
    g_object_weak_ref (G_OBJECT (SELECTOR_SERVICE),
                       (GWeakNotify) do_exit,
                       loop);

    g_main_loop_run (loop);

    g_main_loop_unref (loop);
#else /* !HAVE_POLKIT */
    cpufreq_selector_set_values ();
#endif /* HAVE_POLKIT */

        return 0;
}