blob: fdca973fed1a2cbe716ad31d606facc70614cf3f [file] [log] [blame]
Mark Salyzyn0175b072014-02-26 09:50:16 -08001/*
2 * Copyright (C) 2012-2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _LOGD_LOG_BUFFER_ELEMENT_H__
18#define _LOGD_LOG_BUFFER_ELEMENT_H__
19
20#include <sys/types.h>
21#include <sysutils/SocketClient.h>
22#include <log/log.h>
23#include <log/log_read.h>
24
25class LogBufferElement {
26 const log_id_t mLogId;
27 const uid_t mUid;
28 const pid_t mPid;
Mark Salyzynb992d0d2014-03-20 16:09:38 -070029 const pid_t mTid;
Mark Salyzyn0175b072014-02-26 09:50:16 -080030 char *mMsg;
31 const unsigned short mMsgLen;
32 const log_time mMonotonicTime;
33 const log_time mRealTime;
34
35public:
Mark Salyzyn7e2f83c2014-03-05 07:41:49 -080036 LogBufferElement(log_id_t log_id, log_time realtime,
Mark Salyzynb992d0d2014-03-20 16:09:38 -070037 uid_t uid, pid_t pid, pid_t tid,
38 const char *msg, unsigned short len);
Mark Salyzyn0175b072014-02-26 09:50:16 -080039 virtual ~LogBufferElement();
40
41 log_id_t getLogId() const { return mLogId; }
42 uid_t getUid(void) const { return mUid; }
43 pid_t getPid(void) const { return mPid; }
Mark Salyzynb992d0d2014-03-20 16:09:38 -070044 pid_t getTid(void) const { return mTid; }
Mark Salyzyn0175b072014-02-26 09:50:16 -080045 unsigned short getMsgLen() const { return mMsgLen; }
46 log_time getMonotonicTime(void) const { return mMonotonicTime; }
47 log_time getRealTime(void) const { return mRealTime; }
48
Mark Salyzyn7e2f83c2014-03-05 07:41:49 -080049 static const log_time FLUSH_ERROR;
50 log_time flushTo(SocketClient *writer);
Mark Salyzyn0175b072014-02-26 09:50:16 -080051};
52
53#endif