~elementary-os/elementaryos/os-patch-gnome-bluetooth-bionic

« back to all changes in this revision

Viewing changes to lib/test-class.c

  • Committer: RabbitBot
  • Date: 2018-02-05 12:57:34 UTC
  • Revision ID: rabbitbot@elementary.io-20180205125734-a49s78k7asb5pokc
Initial import, version 3.26.1-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  BlueZ - Bluetooth protocol stack for Linux
 
4
 *
 
5
 *  Copyright (C) 2009  Bastien Nocera <hadess@hadess.net>
 
6
 *
 
7
 *
 
8
 *  This program is free software; you can redistribute it and/or modify
 
9
 *  it under the terms of the GNU General Public License as published by
 
10
 *  the Free Software Foundation; either version 2 of the License, or
 
11
 *  (at your option) any later version.
 
12
 *
 
13
 *  This program is distributed in the hope that it will be useful,
 
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 *  GNU General Public License for more details.
 
17
 *
 
18
 *  You should have received a copy of the GNU General Public License
 
19
 *  along with this program; if not, write to the Free Software
 
20
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
21
 *
 
22
 */
 
23
 
 
24
#ifdef HAVE_CONFIG_H
 
25
#include <config.h>
 
26
#endif
 
27
 
 
28
#include <string.h>
 
29
#include <gtk/gtk.h>
 
30
 
 
31
#include "bluetooth-client.h"
 
32
#include "bluetooth-client-private.h"
 
33
#include "bluetooth-utils.h"
 
34
 
 
35
static const char *
 
36
byte_to_binary (int x)
 
37
{
 
38
        static char b[9] = {0};
 
39
 
 
40
        int z;
 
41
        for (z = 256; z > 0; z >>= 1) {
 
42
                strcat(b, ((x & z) == z) ? "1" : "0");
 
43
        }
 
44
 
 
45
        return b;
 
46
}
 
47
 
 
48
int main(int argc, char *argv[])
 
49
{
 
50
        GLogLevelFlags fatal_mask;
 
51
        guint class;
 
52
 
 
53
        gtk_init(&argc, &argv);
 
54
 
 
55
        fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
 
56
        fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
 
57
        g_log_set_always_fatal (fatal_mask);
 
58
 
 
59
        class = g_ascii_strtoull (argv[1], NULL, 0);
 
60
 
 
61
        g_message ("device class: 0x%X", class);
 
62
        g_message ("major class: 0x%X %s", (class & 0x1f00) >> 8, byte_to_binary ((class & 0x1f00) >> 8));
 
63
 
 
64
        g_message ("%d %s", bluetooth_class_to_type (class), bluetooth_type_to_string (bluetooth_class_to_type (class)));
 
65
 
 
66
        return 0;
 
67
}