liblog: logd: logcat: deprecate log/log_read.h
Always used in combination with log/logger.h except in log_time.cpp, and not used externally. As a result liblog has to support stl, a small price to pay since goal is to convert liblog to C++ internally. Test: compile Bug: 31456426 Bug: 26552300 Bug: 31289077 Change-Id: I72828ec807d0a2c8e40bbdebd7a69f147a7ca5a9
This commit is contained in:
parent
8eaaac0103
commit
004cd3c55d
17 changed files with 161 additions and 195 deletions
|
|
@ -1,170 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (C) 2013-2014 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _LIBS_LOG_LOG_READ_H
|
|
||||||
#define _LIBS_LOG_LOG_READ_H
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <time.h>
|
|
||||||
|
|
||||||
/* struct log_time is a wire-format variant of struct timespec */
|
|
||||||
#define NS_PER_SEC 1000000000ULL
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
|
|
||||||
// NB: do NOT define a copy constructor. This will result in structure
|
|
||||||
// no longer being compatible with pass-by-value which is desired
|
|
||||||
// efficient behavior. Also, pass-by-reference breaks C/C++ ABI.
|
|
||||||
struct log_time {
|
|
||||||
public:
|
|
||||||
uint32_t tv_sec; // good to Feb 5 2106
|
|
||||||
uint32_t tv_nsec;
|
|
||||||
|
|
||||||
static const uint32_t tv_sec_max = 0xFFFFFFFFUL;
|
|
||||||
static const uint32_t tv_nsec_max = 999999999UL;
|
|
||||||
|
|
||||||
log_time(const timespec &T)
|
|
||||||
{
|
|
||||||
tv_sec = T.tv_sec;
|
|
||||||
tv_nsec = T.tv_nsec;
|
|
||||||
}
|
|
||||||
log_time(uint32_t sec, uint32_t nsec)
|
|
||||||
{
|
|
||||||
tv_sec = sec;
|
|
||||||
tv_nsec = nsec;
|
|
||||||
}
|
|
||||||
static const timespec EPOCH;
|
|
||||||
log_time()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
log_time(clockid_t id)
|
|
||||||
{
|
|
||||||
timespec T;
|
|
||||||
clock_gettime(id, &T);
|
|
||||||
tv_sec = T.tv_sec;
|
|
||||||
tv_nsec = T.tv_nsec;
|
|
||||||
}
|
|
||||||
log_time(const char *T)
|
|
||||||
{
|
|
||||||
const uint8_t *c = (const uint8_t *) T;
|
|
||||||
tv_sec = c[0] | (c[1] << 8) | (c[2] << 16) | (c[3] << 24);
|
|
||||||
tv_nsec = c[4] | (c[5] << 8) | (c[6] << 16) | (c[7] << 24);
|
|
||||||
}
|
|
||||||
|
|
||||||
// timespec
|
|
||||||
bool operator== (const timespec &T) const
|
|
||||||
{
|
|
||||||
return (tv_sec == static_cast<uint32_t>(T.tv_sec))
|
|
||||||
&& (tv_nsec == static_cast<uint32_t>(T.tv_nsec));
|
|
||||||
}
|
|
||||||
bool operator!= (const timespec &T) const
|
|
||||||
{
|
|
||||||
return !(*this == T);
|
|
||||||
}
|
|
||||||
bool operator< (const timespec &T) const
|
|
||||||
{
|
|
||||||
return (tv_sec < static_cast<uint32_t>(T.tv_sec))
|
|
||||||
|| ((tv_sec == static_cast<uint32_t>(T.tv_sec))
|
|
||||||
&& (tv_nsec < static_cast<uint32_t>(T.tv_nsec)));
|
|
||||||
}
|
|
||||||
bool operator>= (const timespec &T) const
|
|
||||||
{
|
|
||||||
return !(*this < T);
|
|
||||||
}
|
|
||||||
bool operator> (const timespec &T) const
|
|
||||||
{
|
|
||||||
return (tv_sec > static_cast<uint32_t>(T.tv_sec))
|
|
||||||
|| ((tv_sec == static_cast<uint32_t>(T.tv_sec))
|
|
||||||
&& (tv_nsec > static_cast<uint32_t>(T.tv_nsec)));
|
|
||||||
}
|
|
||||||
bool operator<= (const timespec &T) const
|
|
||||||
{
|
|
||||||
return !(*this > T);
|
|
||||||
}
|
|
||||||
log_time operator-= (const timespec &T);
|
|
||||||
log_time operator- (const timespec &T) const
|
|
||||||
{
|
|
||||||
log_time local(*this);
|
|
||||||
return local -= T;
|
|
||||||
}
|
|
||||||
log_time operator+= (const timespec &T);
|
|
||||||
log_time operator+ (const timespec &T) const
|
|
||||||
{
|
|
||||||
log_time local(*this);
|
|
||||||
return local += T;
|
|
||||||
}
|
|
||||||
|
|
||||||
// log_time
|
|
||||||
bool operator== (const log_time &T) const
|
|
||||||
{
|
|
||||||
return (tv_sec == T.tv_sec) && (tv_nsec == T.tv_nsec);
|
|
||||||
}
|
|
||||||
bool operator!= (const log_time &T) const
|
|
||||||
{
|
|
||||||
return !(*this == T);
|
|
||||||
}
|
|
||||||
bool operator< (const log_time &T) const
|
|
||||||
{
|
|
||||||
return (tv_sec < T.tv_sec)
|
|
||||||
|| ((tv_sec == T.tv_sec) && (tv_nsec < T.tv_nsec));
|
|
||||||
}
|
|
||||||
bool operator>= (const log_time &T) const
|
|
||||||
{
|
|
||||||
return !(*this < T);
|
|
||||||
}
|
|
||||||
bool operator> (const log_time &T) const
|
|
||||||
{
|
|
||||||
return (tv_sec > T.tv_sec)
|
|
||||||
|| ((tv_sec == T.tv_sec) && (tv_nsec > T.tv_nsec));
|
|
||||||
}
|
|
||||||
bool operator<= (const log_time &T) const
|
|
||||||
{
|
|
||||||
return !(*this > T);
|
|
||||||
}
|
|
||||||
log_time operator-= (const log_time &T);
|
|
||||||
log_time operator- (const log_time &T) const
|
|
||||||
{
|
|
||||||
log_time local(*this);
|
|
||||||
return local -= T;
|
|
||||||
}
|
|
||||||
log_time operator+= (const log_time &T);
|
|
||||||
log_time operator+ (const log_time &T) const
|
|
||||||
{
|
|
||||||
log_time local(*this);
|
|
||||||
return local += T;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint64_t nsec() const
|
|
||||||
{
|
|
||||||
return static_cast<uint64_t>(tv_sec) * NS_PER_SEC + tv_nsec;
|
|
||||||
}
|
|
||||||
|
|
||||||
static const char default_format[];
|
|
||||||
|
|
||||||
// Add %#q for the fraction of a second to the standard library functions
|
|
||||||
char *strptime(const char *s, const char *format = default_format);
|
|
||||||
} __attribute__((__packed__));
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
typedef struct log_time {
|
|
||||||
uint32_t tv_sec;
|
|
||||||
uint32_t tv_nsec;
|
|
||||||
} __attribute__((__packed__)) log_time;
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* define _LIBS_LOG_LOG_READ_H */
|
|
||||||
|
|
@ -11,16 +11,13 @@
|
||||||
#define _LIBS_LOG_LOGGER_H
|
#define _LIBS_LOG_LOGGER_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#ifdef __linux__
|
#include <time.h>
|
||||||
#include <time.h> /* clockid_t definition */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#include <string>
|
#include <string>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <log/log.h>
|
#include <log/log.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
@ -80,6 +77,155 @@ struct logger_entry_v4 {
|
||||||
char msg[0]; /* the entry's payload */
|
char msg[0]; /* the entry's payload */
|
||||||
} __attribute__((__packed__));
|
} __attribute__((__packed__));
|
||||||
|
|
||||||
|
/* struct log_time is a wire-format variant of struct timespec */
|
||||||
|
#define NS_PER_SEC 1000000000ULL
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
|
||||||
|
// NB: do NOT define a copy constructor. This will result in structure
|
||||||
|
// no longer being compatible with pass-by-value which is desired
|
||||||
|
// efficient behavior. Also, pass-by-reference breaks C/C++ ABI.
|
||||||
|
struct log_time {
|
||||||
|
public:
|
||||||
|
uint32_t tv_sec; // good to Feb 5 2106
|
||||||
|
uint32_t tv_nsec;
|
||||||
|
|
||||||
|
static const uint32_t tv_sec_max = 0xFFFFFFFFUL;
|
||||||
|
static const uint32_t tv_nsec_max = 999999999UL;
|
||||||
|
|
||||||
|
log_time(const timespec &T)
|
||||||
|
{
|
||||||
|
tv_sec = T.tv_sec;
|
||||||
|
tv_nsec = T.tv_nsec;
|
||||||
|
}
|
||||||
|
log_time(uint32_t sec, uint32_t nsec)
|
||||||
|
{
|
||||||
|
tv_sec = sec;
|
||||||
|
tv_nsec = nsec;
|
||||||
|
}
|
||||||
|
static const timespec EPOCH;
|
||||||
|
log_time()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
#ifdef __linux__
|
||||||
|
log_time(clockid_t id)
|
||||||
|
{
|
||||||
|
timespec T;
|
||||||
|
clock_gettime(id, &T);
|
||||||
|
tv_sec = T.tv_sec;
|
||||||
|
tv_nsec = T.tv_nsec;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
log_time(const char *T)
|
||||||
|
{
|
||||||
|
const uint8_t *c = (const uint8_t *) T;
|
||||||
|
tv_sec = c[0] | (c[1] << 8) | (c[2] << 16) | (c[3] << 24);
|
||||||
|
tv_nsec = c[4] | (c[5] << 8) | (c[6] << 16) | (c[7] << 24);
|
||||||
|
}
|
||||||
|
|
||||||
|
// timespec
|
||||||
|
bool operator== (const timespec &T) const
|
||||||
|
{
|
||||||
|
return (tv_sec == static_cast<uint32_t>(T.tv_sec))
|
||||||
|
&& (tv_nsec == static_cast<uint32_t>(T.tv_nsec));
|
||||||
|
}
|
||||||
|
bool operator!= (const timespec &T) const
|
||||||
|
{
|
||||||
|
return !(*this == T);
|
||||||
|
}
|
||||||
|
bool operator< (const timespec &T) const
|
||||||
|
{
|
||||||
|
return (tv_sec < static_cast<uint32_t>(T.tv_sec))
|
||||||
|
|| ((tv_sec == static_cast<uint32_t>(T.tv_sec))
|
||||||
|
&& (tv_nsec < static_cast<uint32_t>(T.tv_nsec)));
|
||||||
|
}
|
||||||
|
bool operator>= (const timespec &T) const
|
||||||
|
{
|
||||||
|
return !(*this < T);
|
||||||
|
}
|
||||||
|
bool operator> (const timespec &T) const
|
||||||
|
{
|
||||||
|
return (tv_sec > static_cast<uint32_t>(T.tv_sec))
|
||||||
|
|| ((tv_sec == static_cast<uint32_t>(T.tv_sec))
|
||||||
|
&& (tv_nsec > static_cast<uint32_t>(T.tv_nsec)));
|
||||||
|
}
|
||||||
|
bool operator<= (const timespec &T) const
|
||||||
|
{
|
||||||
|
return !(*this > T);
|
||||||
|
}
|
||||||
|
log_time operator-= (const timespec &T);
|
||||||
|
log_time operator- (const timespec &T) const
|
||||||
|
{
|
||||||
|
log_time local(*this);
|
||||||
|
return local -= T;
|
||||||
|
}
|
||||||
|
log_time operator+= (const timespec &T);
|
||||||
|
log_time operator+ (const timespec &T) const
|
||||||
|
{
|
||||||
|
log_time local(*this);
|
||||||
|
return local += T;
|
||||||
|
}
|
||||||
|
|
||||||
|
// log_time
|
||||||
|
bool operator== (const log_time &T) const
|
||||||
|
{
|
||||||
|
return (tv_sec == T.tv_sec) && (tv_nsec == T.tv_nsec);
|
||||||
|
}
|
||||||
|
bool operator!= (const log_time &T) const
|
||||||
|
{
|
||||||
|
return !(*this == T);
|
||||||
|
}
|
||||||
|
bool operator< (const log_time &T) const
|
||||||
|
{
|
||||||
|
return (tv_sec < T.tv_sec)
|
||||||
|
|| ((tv_sec == T.tv_sec) && (tv_nsec < T.tv_nsec));
|
||||||
|
}
|
||||||
|
bool operator>= (const log_time &T) const
|
||||||
|
{
|
||||||
|
return !(*this < T);
|
||||||
|
}
|
||||||
|
bool operator> (const log_time &T) const
|
||||||
|
{
|
||||||
|
return (tv_sec > T.tv_sec)
|
||||||
|
|| ((tv_sec == T.tv_sec) && (tv_nsec > T.tv_nsec));
|
||||||
|
}
|
||||||
|
bool operator<= (const log_time &T) const
|
||||||
|
{
|
||||||
|
return !(*this > T);
|
||||||
|
}
|
||||||
|
log_time operator-= (const log_time &T);
|
||||||
|
log_time operator- (const log_time &T) const
|
||||||
|
{
|
||||||
|
log_time local(*this);
|
||||||
|
return local -= T;
|
||||||
|
}
|
||||||
|
log_time operator+= (const log_time &T);
|
||||||
|
log_time operator+ (const log_time &T) const
|
||||||
|
{
|
||||||
|
log_time local(*this);
|
||||||
|
return local += T;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint64_t nsec() const
|
||||||
|
{
|
||||||
|
return static_cast<uint64_t>(tv_sec) * NS_PER_SEC + tv_nsec;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const char default_format[];
|
||||||
|
|
||||||
|
// Add %#q for the fraction of a second to the standard library functions
|
||||||
|
char *strptime(const char *s, const char *format = default_format);
|
||||||
|
} __attribute__((__packed__));
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
typedef struct log_time {
|
||||||
|
uint32_t tv_sec;
|
||||||
|
uint32_t tv_nsec;
|
||||||
|
} __attribute__((__packed__)) log_time;
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The maximum size of the log entry payload that can be
|
* The maximum size of the log entry payload that can be
|
||||||
* written to the logger. An attempt to write more than
|
* written to the logger. An attempt to write more than
|
||||||
|
|
@ -94,8 +240,6 @@ struct logger_entry_v4 {
|
||||||
*/
|
*/
|
||||||
#define LOGGER_ENTRY_MAX_LEN (5*1024)
|
#define LOGGER_ENTRY_MAX_LEN (5*1024)
|
||||||
|
|
||||||
#define NS_PER_SEC 1000000000ULL
|
|
||||||
|
|
||||||
struct log_msg {
|
struct log_msg {
|
||||||
union {
|
union {
|
||||||
unsigned char buf[LOGGER_ENTRY_MAX_LEN + 1];
|
unsigned char buf[LOGGER_ENTRY_MAX_LEN + 1];
|
||||||
|
|
|
||||||
|
|
@ -25,10 +25,14 @@
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include <log/log.h>
|
#include <log/log.h>
|
||||||
#include <log/log_read.h>
|
#include <log/logger.h>
|
||||||
|
|
||||||
#define LOGGER_MAGIC 'l'
|
#define LOGGER_MAGIC 'l'
|
||||||
|
|
||||||
|
#if defined(__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Header Structure to pstore */
|
/* Header Structure to pstore */
|
||||||
typedef struct __attribute__((__packed__)) {
|
typedef struct __attribute__((__packed__)) {
|
||||||
uint8_t magic;
|
uint8_t magic;
|
||||||
|
|
@ -84,6 +88,7 @@ typedef struct __attribute__((__packed__)) {
|
||||||
* in C++.
|
* in C++.
|
||||||
* http://stackoverflow.com/questions/4412749/are-flexible-array-members-valid-in-c
|
* http://stackoverflow.com/questions/4412749/are-flexible-array-members-valid-in-c
|
||||||
*/
|
*/
|
||||||
|
|
||||||
typedef struct __attribute__((__packed__)) {
|
typedef struct __attribute__((__packed__)) {
|
||||||
int8_t type; // EVENT_TYPE_STRING;
|
int8_t type; // EVENT_TYPE_STRING;
|
||||||
int32_t length; // Little Endian Order
|
int32_t length; // Little Endian Order
|
||||||
|
|
@ -98,10 +103,6 @@ typedef struct __attribute__((__packed__)) {
|
||||||
char data[];
|
char data[];
|
||||||
} android_log_event_string_t;
|
} android_log_event_string_t;
|
||||||
|
|
||||||
#if defined(__cplusplus)
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define ANDROID_LOG_PMSG_FILE_MAX_SEQUENCE 256 /* 1MB file */
|
#define ANDROID_LOG_PMSG_FILE_MAX_SEQUENCE 256 /* 1MB file */
|
||||||
#define ANDROID_LOG_PMSG_FILE_SEQUENCE 1000
|
#define ANDROID_LOG_PMSG_FILE_SEQUENCE 1000
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,6 @@ cc_library {
|
||||||
],
|
],
|
||||||
logtags: ["event.logtags"],
|
logtags: ["event.logtags"],
|
||||||
compile_multilib: "both",
|
compile_multilib: "both",
|
||||||
stl: "none",
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ndk_library {
|
ndk_library {
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <log/log_read.h>
|
#include <log/logger.h>
|
||||||
|
|
||||||
#include "log_portability.h"
|
#include "log_portability.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,6 @@
|
||||||
#include <cutils/sockets.h>
|
#include <cutils/sockets.h>
|
||||||
#include <log/logd.h>
|
#include <log/logd.h>
|
||||||
#include <log/logger.h>
|
#include <log/logger.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
#include <private/android_filesystem_config.h>
|
#include <private/android_filesystem_config.h>
|
||||||
#include <private/android_logger.h>
|
#include <private/android_logger.h>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,6 @@
|
||||||
#include <cutils/sockets.h>
|
#include <cutils/sockets.h>
|
||||||
#include <log/logd.h>
|
#include <log/logd.h>
|
||||||
#include <log/logger.h>
|
#include <log/logger.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
#include <private/android_filesystem_config.h>
|
#include <private/android_filesystem_config.h>
|
||||||
#include <private/android_logger.h>
|
#include <private/android_logger.h>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@
|
||||||
|
|
||||||
#include <cutils/list.h>
|
#include <cutils/list.h>
|
||||||
#include <log/log.h>
|
#include <log/log.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
#include <log/logger.h>
|
#include <log/logger.h>
|
||||||
|
|
||||||
#include "log_portability.h"
|
#include "log_portability.h"
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@
|
||||||
#include <log/event_tag_map.h>
|
#include <log/event_tag_map.h>
|
||||||
#include <log/logd.h>
|
#include <log/logd.h>
|
||||||
#include <log/logger.h>
|
#include <log/logger.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
#include <private/android_filesystem_config.h>
|
#include <private/android_filesystem_config.h>
|
||||||
#include <private/android_logger.h>
|
#include <private/android_logger.h>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,6 @@
|
||||||
#include <cutils/sockets.h>
|
#include <cutils/sockets.h>
|
||||||
#include <log/log.h>
|
#include <log/log.h>
|
||||||
#include <log/logger.h>
|
#include <log/logger.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
#include <private/android_logger.h>
|
#include <private/android_logger.h>
|
||||||
|
|
||||||
#include "benchmark.h"
|
#include "benchmark.h"
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,6 @@
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <log/log.h>
|
#include <log/log.h>
|
||||||
#include <log/logger.h>
|
#include <log/logger.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
#include <log/logprint.h>
|
#include <log/logprint.h>
|
||||||
#include <private/android_filesystem_config.h>
|
#include <private/android_filesystem_config.h>
|
||||||
#include <private/android_logger.h>
|
#include <private/android_logger.h>
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,6 @@
|
||||||
#include <cutils/sockets.h>
|
#include <cutils/sockets.h>
|
||||||
#include <log/event_tag_map.h>
|
#include <log/event_tag_map.h>
|
||||||
#include <log/log.h>
|
#include <log/log.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
#include <log/logd.h>
|
#include <log/logd.h>
|
||||||
#include <log/logger.h>
|
#include <log/logger.h>
|
||||||
#include <log/logprint.h>
|
#include <log/logprint.h>
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,6 @@
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <log/log.h>
|
#include <log/log.h>
|
||||||
#include <log/logger.h>
|
#include <log/logger.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
|
|
||||||
#define BIG_BUFFER (5 * 1024)
|
#define BIG_BUFFER (5 * 1024)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
#ifndef _FLUSH_COMMAND_H
|
#ifndef _FLUSH_COMMAND_H
|
||||||
#define _FLUSH_COMMAND_H
|
#define _FLUSH_COMMAND_H
|
||||||
|
|
||||||
#include <log/log_read.h>
|
#include <log/logger.h>
|
||||||
#include <sysutils/SocketClientCommand.h>
|
#include <sysutils/SocketClientCommand.h>
|
||||||
|
|
||||||
class LogBufferElement;
|
class LogBufferElement;
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@ public:
|
||||||
unsigned long getSize(log_id_t id);
|
unsigned long getSize(log_id_t id);
|
||||||
int setSize(log_id_t id, unsigned long size);
|
int setSize(log_id_t id, unsigned long size);
|
||||||
unsigned long getSizeUsed(log_id_t id);
|
unsigned long getSizeUsed(log_id_t id);
|
||||||
// *strp uses malloc, use free to release.
|
|
||||||
std::string formatStatistics(uid_t uid, pid_t pid, unsigned int logMask);
|
std::string formatStatistics(uid_t uid, pid_t pid, unsigned int logMask);
|
||||||
|
|
||||||
void enableStatistics() {
|
void enableStatistics() {
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
#include <sysutils/SocketClient.h>
|
#include <sysutils/SocketClient.h>
|
||||||
#include <log/log.h>
|
#include <log/log.h>
|
||||||
#include <log/log_read.h>
|
#include <log/logger.h>
|
||||||
|
|
||||||
class LogBuffer;
|
class LogBuffer;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,8 @@
|
||||||
#ifndef _LOGD_LOG_KLOG_H__
|
#ifndef _LOGD_LOG_KLOG_H__
|
||||||
#define _LOGD_LOG_KLOG_H__
|
#define _LOGD_LOG_KLOG_H__
|
||||||
|
|
||||||
|
#include <log/logger.h>
|
||||||
#include <sysutils/SocketListener.h>
|
#include <sysutils/SocketListener.h>
|
||||||
#include <log/log_read.h>
|
|
||||||
|
|
||||||
char *log_strntok_r(char *s, size_t *len, char **saveptr, size_t *sublen);
|
char *log_strntok_r(char *s, size_t *len, char **saveptr, size_t *sublen);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue