2 * Copyright 2012 Samsung Electronics Co., Ltd
4 * Licensed under the Flora License, Version 1.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
8 * http://www.tizenopensource.org/license
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.
24 #include <sys/types.h>
32 #include "critical_log.h"
48 int critical_log(const char *func, int line, const char *fmt, ...)
57 gettimeofday(&tv, NULL);
58 fprintf(s_info.fp, "%d %lu.%lu [%s:%d] ", getpid(), tv.tv_sec, tv.tv_usec, util_basename((char *)func), line);
61 ret = vfprintf(s_info.fp, fmt, ap);
65 if (s_info.nr_of_lines == MAX_LOG_LINE) {
69 s_info.file_id = (s_info.file_id + 1) % MAX_LOG_FILE;
71 namelen = strlen(s_info.filename) + strlen(SLAVE_LOG_PATH) + 20;
72 filename = malloc(namelen);
74 snprintf(filename, namelen, "%s/%d_%s", SLAVE_LOG_PATH, s_info.file_id, s_info.filename);
79 s_info.fp = fopen(filename, "w+");
81 ErrPrint("Failed to open a file: %s\n", filename);
86 s_info.nr_of_lines = 0;
93 int critical_log_init(const char *name)
101 s_info.filename = strdup(name);
102 if (!s_info.filename) {
103 ErrPrint("Failed to create a log file\n");
107 namelen = strlen(name) + strlen(SLAVE_LOG_PATH) + 20;
109 filename = malloc(namelen);
111 ErrPrint("Failed to create a log file\n");
112 free(s_info.filename);
113 s_info.filename = NULL;
117 snprintf(filename, namelen, "%s/%d_%s", SLAVE_LOG_PATH, s_info.file_id, name);
119 s_info.fp = fopen(filename, "w+");
121 ErrPrint("Failed to open log: %s\n", strerror(errno));
122 free(s_info.filename);
123 s_info.filename = NULL;
134 int critical_log_fini(void)
136 if (s_info.filename) {
137 free(s_info.filename);
138 s_info.filename = NULL;