mk_util.cpp 1.58 KB
Newer Older
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
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.
9 10
 */

11 12
#include "mk_util.h"
#include <stdarg.h>
xiongziliang committed
13
#include <assert.h>
14 15 16 17 18 19 20 21
#include "Util/logger.h"
using namespace std;
using namespace toolkit;

API_EXPORT char* API_CALL mk_util_get_exe_path(){
    return strdup(exePath().data());
}

xiongziliang committed
22
API_EXPORT char* API_CALL mk_util_get_exe_dir(const char *relative_path){
23 24 25 26 27 28
    if(relative_path){
        return strdup((exeDir() + relative_path).data());
    }
    return strdup(exeDir().data());
}

xiongziliang committed
29
API_EXPORT uint64_t API_CALL mk_util_get_current_millisecond(){
30 31 32
    return getCurrentMillisecond();
}

xiongziliang committed
33
API_EXPORT char* API_CALL mk_util_get_current_time_string(const char *fmt){
34 35 36 37
    assert(fmt);
    return strdup(getTimeStr(fmt).data());
}

xiongziliang committed
38
API_EXPORT char* API_CALL mk_util_hex_dump(const void *buf, int len){
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
    assert(buf && len > 0);
    return strdup(hexdump(buf,len).data());
}

API_EXPORT void API_CALL mk_log_printf(int level, const char *file, const char *function, int line, const char *fmt, ...) {
    assert(file && function && fmt);
    LogContextCapturer info(Logger::Instance(), (LogLevel) level, file, function, line);
    va_list pArg;
    va_start(pArg, fmt);
    char buf[4096];
    int n = vsprintf(buf, fmt, pArg);
    buf[n] = '\0';
    va_end(pArg);
    info << buf;
}