summaryrefslogtreecommitdiff
path: root/subprojects/guul/guul.c
blob: 420cf1c2ab1b58b1d5820acb0394453e6431c509 (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
/*
 * GUUL - GUUL Unified UUID Library
 * Copyright (C) 2015 Jens Georg.
 *
 * This library 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <stdlib.h>

#include <guul.h>

#if defined(GUUL_PLATFORM_GENERIC) || defined(GUUL_PLATFORM_BSD)
#   include <uuid.h>
#endif

#if defined(GUUL_PLATFORM_OSX)
#   include <uuid/uuid.h>
#endif

#if defined(GUUL_PLATFORM_WINDOWS)
#    include <rpc.h>
#endif

#if defined(GUUL_PLATFORM_GENERIC) || defined(GUUL_PLATFORM_OSX)
char *
guul_get_uuid(void)
{
        uuid_t uuid;
        char *out;

        out = calloc (41, sizeof (char));

        uuid_generate (uuid);
        uuid_unparse (uuid, out);

        return out;
}
#endif

#if defined(GUUL_PLATFORM_BSD)
char *
guul_get_uuid()
{
        uuid_t uuid;
        uint32_t status;
        char *result = NULL;

        uuid_create (&uuid, &status);
        uuid_to_string (&uuid, &result, &status);

        return result;
}
#endif

#if defined(GUUL_PLATFORM_WINDOWS)
char *
guul_get_uuid()
{
    char *ret = NULL;
    UUID uuid;
    RPC_STATUS stat;
    stat = UuidCreate (&uuid);
    if (stat == RPC_S_OK) {
            unsigned char* uuidStr = NULL;
            stat = UuidToString (&uuid, &uuidStr);
            if (stat == RPC_S_OK) {
                    ret = g_strdup (uuidStr);
                    RpcStringFree (&uuidStr);
            }
    }

    return ret;
}
#endif