blob: d65b7de477b488b8831b632add8502cc3784027a [file] [log] [blame]
Tianjie Xue113e4d2016-10-21 17:46:13 -07001/*
2 * Copyright (C) 2016 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 _ROTATE_LOGS_H
18#define _ROTATE_LOGS_H
19
Tao Bao245c5222017-10-18 11:06:36 -070020#include <stddef.h>
21#include <sys/types.h>
Tianjie Xue113e4d2016-10-21 17:46:13 -070022
Ethan Yonker58f21322018-08-24 11:17:36 -050023//#include <log/log_id.h>
Tianjie Xue113e4d2016-10-21 17:46:13 -070024#include <private/android_logger.h> /* private pmsg functions */
25
Tao Bao245c5222017-10-18 11:06:36 -070026static constexpr int KEEP_LOG_COUNT = 10;
Tianjie Xue113e4d2016-10-21 17:46:13 -070027
Tao Bao245c5222017-10-18 11:06:36 -070028ssize_t logbasename(log_id_t id, char prio, const char* filename, const char* buf, size_t len,
29 void* arg);
Tianjie Xue113e4d2016-10-21 17:46:13 -070030
Tao Bao245c5222017-10-18 11:06:36 -070031ssize_t logrotate(log_id_t id, char prio, const char* filename, const char* buf, size_t len,
32 void* arg);
Tianjie Xue113e4d2016-10-21 17:46:13 -070033
34// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
35// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
36// Overwrite any existing last_log.$max and last_kmsg.$max.
37void rotate_logs(const char* last_log_file, const char* last_kmsg_file);
38
39#endif //_ROTATE_LOG_H