blob: 00e1cad2d581094336c62b6043c096c863266dd5 [file] [log] [blame]
Mark Salyzyndfa7a072014-02-11 12:29:31 -08001/*
2 * Copyright (C) 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_WHITE_BLACK_LIST_H__
18#define _LOGD_LOG_WHITE_BLACK_LIST_H__
19
20#include <sys/types.h>
21
Mark Salyzyne0ed16c2015-08-19 13:31:31 -070022#include <list>
Mark Salyzyn73160ac2015-08-20 10:01:44 -070023#include <string.h>
Mark Salyzyndfa7a072014-02-11 12:29:31 -080024
25#include <LogBufferElement.h>
26
27// White and Blacklist
28
29class Prune {
30 friend class PruneList;
31
32 const uid_t mUid;
33 const pid_t mPid;
34 int cmp(uid_t uid, pid_t pid) const;
35
36public:
37 static const uid_t uid_all = (uid_t) -1;
38 static const pid_t pid_all = (pid_t) -1;
39
40 Prune(uid_t uid, pid_t pid);
41
42 uid_t getUid() const { return mUid; }
43 pid_t getPid() const { return mPid; }
44
45 int cmp(LogBufferElement *e) const { return cmp(e->getUid(), e->getPid()); }
46
Mark Salyzyn73160ac2015-08-20 10:01:44 -070047 std::string format();
Mark Salyzyndfa7a072014-02-11 12:29:31 -080048};
49
Mark Salyzyne0ed16c2015-08-19 13:31:31 -070050typedef std::list<Prune> PruneCollection;
Mark Salyzyndfa7a072014-02-11 12:29:31 -080051
52class PruneList {
53 PruneCollection mNaughty;
54 PruneCollection mNice;
55 bool mWorstUidEnabled;
56
57public:
58 PruneList();
59 ~PruneList();
60
Mark Salyzyn73160ac2015-08-20 10:01:44 -070061 int init(const char *str);
Mark Salyzyndfa7a072014-02-11 12:29:31 -080062
63 bool naughty(LogBufferElement *element);
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -070064 bool naughty(void) { return !mNaughty.empty(); }
Mark Salyzyndfa7a072014-02-11 12:29:31 -080065 bool nice(LogBufferElement *element);
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -070066 bool nice(void) { return !mNice.empty(); }
Mark Salyzyndfa7a072014-02-11 12:29:31 -080067 bool worstUidEnabled() const { return mWorstUidEnabled; }
68
Mark Salyzyn73160ac2015-08-20 10:01:44 -070069 std::string format();
Mark Salyzyndfa7a072014-02-11 12:29:31 -080070};
71
72#endif // _LOGD_LOG_WHITE_BLACK_LIST_H__