blob: 1117088e5f9efd10b107818c1022f81905d23559 [file] [log] [blame]
Mark Salyzyn0175b072014-02-26 09:50:16 -08001/*
2 * Copyright (C) 2012-2013 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_TIMES_H__
18#define _LOGD_LOG_TIMES_H__
19
20#include <pthread.h>
21#include <time.h>
22#include <sys/types.h>
Mark Salyzyn98dca2d2015-08-19 13:10:14 -070023
24#include <list>
25
Mark Salyzyn0175b072014-02-26 09:50:16 -080026#include <sysutils/SocketClient.h>
TraianX Schiauda6495d2014-12-17 10:53:41 +020027#include <log/log.h>
Mark Salyzyn0175b072014-02-26 09:50:16 -080028
29class LogReader;
30
31class LogTimeEntry {
32 static pthread_mutex_t timesLock;
33 unsigned int mRefCount;
34 bool mRelease;
35 bool mError;
36 bool threadRunning;
Mark Salyzyn047cc072015-06-04 13:35:30 -070037 bool leadingDropped;
Mark Salyzyna16f7612014-08-07 08:16:52 -070038 pthread_cond_t threadTriggeredCondition;
Mark Salyzyn0175b072014-02-26 09:50:16 -080039 pthread_t mThread;
40 LogReader &mReader;
41 static void *threadStart(void *me);
42 static void threadStop(void *me);
43 const unsigned int mLogMask;
44 const pid_t mPid;
TraianX Schiauda6495d2014-12-17 10:53:41 +020045 unsigned int skipAhead[LOG_ID_MAX];
Mark Salyzyn0175b072014-02-26 09:50:16 -080046 unsigned long mCount;
47 unsigned long mTail;
48 unsigned long mIndex;
49
50public:
51 LogTimeEntry(LogReader &reader, SocketClient *client, bool nonBlock,
Mark Salyzynfa3716b2014-02-14 16:05:05 -080052 unsigned long tail, unsigned int logMask, pid_t pid,
Mark Salyzynb75cce02015-11-30 11:35:56 -080053 uint64_t start, uint64_t timeout);
Mark Salyzyn0175b072014-02-26 09:50:16 -080054
55 SocketClient *mClient;
Mark Salyzynf7c0f752015-03-03 13:39:37 -080056 uint64_t mStart;
Mark Salyzynb75cce02015-11-30 11:35:56 -080057 struct timespec mTimeout;
Mark Salyzyn0175b072014-02-26 09:50:16 -080058 const bool mNonBlock;
Mark Salyzynf7c0f752015-03-03 13:39:37 -080059 const uint64_t mEnd; // only relevant if mNonBlock
Mark Salyzyn0175b072014-02-26 09:50:16 -080060
61 // Protect List manipulations
62 static void lock(void) { pthread_mutex_lock(&timesLock); }
63 static void unlock(void) { pthread_mutex_unlock(&timesLock); }
64
65 void startReader_Locked(void);
66
Mark Salyzync03e72c2014-02-18 11:23:53 -080067 bool runningReader_Locked(void) const {
Mark Salyzyn0175b072014-02-26 09:50:16 -080068 return threadRunning || mRelease || mError || mNonBlock;
69 }
Mark Salyzyna16f7612014-08-07 08:16:52 -070070 void triggerReader_Locked(void) {
71 pthread_cond_signal(&threadTriggeredCondition);
72 }
73
TraianX Schiauda6495d2014-12-17 10:53:41 +020074 void triggerSkip_Locked(log_id_t id, unsigned int skip) { skipAhead[id] = skip; }
75 void cleanSkip_Locked(void);
Mark Salyzyn0175b072014-02-26 09:50:16 -080076
77 // Called after LogTimeEntry removed from list, lock implicitly held
Mark Salyzync03e72c2014-02-18 11:23:53 -080078 void release_Locked(void) {
Mark Salyzyn0175b072014-02-26 09:50:16 -080079 mRelease = true;
Mark Salyzyna16f7612014-08-07 08:16:52 -070080 pthread_cond_signal(&threadTriggeredCondition);
Mark Salyzyn0175b072014-02-26 09:50:16 -080081 if (mRefCount || threadRunning) {
82 return;
83 }
84 // No one else is holding a reference to this
85 delete this;
86 }
87
88 // Called to mark socket in jeopardy
89 void error_Locked(void) { mError = true; }
Mark Salyzyna16f7612014-08-07 08:16:52 -070090 void error(void) { lock(); error_Locked(); unlock(); }
Mark Salyzyn0175b072014-02-26 09:50:16 -080091
92 bool isError_Locked(void) const { return mRelease || mError; }
93
94 // Mark Used
95 // Locking implied, grabbed when protection around loop iteration
96 void incRef_Locked(void) { ++mRefCount; }
97
98 bool owned_Locked(void) const { return mRefCount != 0; }
99
Mark Salyzync03e72c2014-02-18 11:23:53 -0800100 void decRef_Locked(void) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800101 if ((mRefCount && --mRefCount) || !mRelease || threadRunning) {
102 return;
103 }
104 // No one else is holding a reference to this
105 delete this;
106 }
TraianX Schiauda6495d2014-12-17 10:53:41 +0200107 bool isWatching(log_id_t id) { return (mLogMask & (1<<id)) != 0; }
Mark Salyzyn0175b072014-02-26 09:50:16 -0800108 // flushTo filter callbacks
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800109 static int FilterFirstPass(const LogBufferElement *element, void *me);
110 static int FilterSecondPass(const LogBufferElement *element, void *me);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800111};
112
Mark Salyzyn98dca2d2015-08-19 13:10:14 -0700113typedef std::list<LogTimeEntry *> LastLogTimes;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800114
Mark Salyzyn98dca2d2015-08-19 13:10:14 -0700115#endif // _LOGD_LOG_TIMES_H__