utils.cpp 1.71 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3
 *
4
 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
xiongziliang committed
5
 *
xiongziliang committed
6 7 8
 * Use of this source code is governed by MIT license that can be found in the
 * LICENSE file in the root of the source tree. All contributing project authors
 * may be found in the AUTHORS file in the root of the source tree.
xiongziliang committed
9
 */
xiongziliang committed
10

xzl committed
11 12 13 14 15
#include "utils.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
16
#include "Util/util.h"
17
#include "Network/sockutil.h"
xiongziliang committed
18
using namespace toolkit;
xzl committed
19 20 21 22 23 24 25

/*
 * Used to do unaligned loads on archs that don't support them. GCC can mostly
 * optimize these away.
 */
uint32_t load_be32(const void *p)
{
26 27 28
    uint32_t val;
    memcpy(&val, p, sizeof val);
    return ntohl(val);
xzl committed
29 30 31 32
}

uint16_t load_be16(const void *p)
{
33 34 35
    uint16_t val;
    memcpy(&val, p, sizeof val);
    return ntohs(val);
xzl committed
36 37 38 39
}

uint32_t load_le32(const void *p)
{
40 41 42
    const uint8_t *data = (const uint8_t *) p;
    return data[0] | ((uint32_t) data[1] << 8) |
        ((uint32_t) data[2] << 16) | ((uint32_t) data[3] << 24);
xzl committed
43 44 45 46
}

uint32_t load_be24(const void *p)
{
47 48
    const uint8_t *data = (const uint8_t *) p;
    return data[2] | ((uint32_t) data[1] << 8) | ((uint32_t) data[0] << 16);
xzl committed
49 50 51 52
}

void set_be24(void *p, uint32_t val)
{
53 54 55 56
    uint8_t *data = (uint8_t *) p;
    data[0] = val >> 16;
    data[1] = val >> 8;
    data[2] = val;
xzl committed
57 58 59 60
}

void set_le32(void *p, uint32_t val)
{
61 62 63 64 65
    uint8_t *data = (uint8_t *) p;
    data[0] = val;
    data[1] = val >> 8;
    data[2] = val >> 16;
    data[3] = val >> 24;
xzl committed
66 67 68 69
}

void set_be32(void *p, uint32_t val)
{
70 71 72 73 74
    uint8_t *data = (uint8_t *) p;
    data[3] = val;
    data[2] = val >> 8;
    data[1] = val >> 16;
    data[0] = val >> 24;
xzl committed
75 76
}