1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 2013. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* %CopyrightEnd%
*/
/*
* Functions that are common to both OSE and unix implementations of run_erl
*/
#ifndef ERL_RUN_ERL_LOG_H
#define ERL_RUN_ERL_LOG_H
#include <stdio.h>
#include <time.h>
#include <unistd.h>
#include "run_erl_vsn.h"
/* Log handling */
int erts_run_erl_log_init(int run_daemon, char* logdir);
int erts_run_erl_log_open(void);
int erts_run_erl_log_close(void);
int erts_run_erl_log_write(char *buff, size_t len);
int erts_run_erl_log_activity(int timeout, time_t now, time_t last_activity);
void erts_run_erl_log_status(const char *format,...);
void erts_run_erl_log_error(int priority, int line, const char *format,...);
int erts_run_erl_open_fifo(char *pipename,char *w_pipename,char *r_pipename);
int erts_run_erl_log_alive_minutes(void);
int erts_run_erl_extract_ctrl_seq(char* buf, int len, int mfd);
/* File operations */
ssize_t sf_read(int fd, void *buffer, size_t len);
ssize_t sf_write(int fd, const void *buffer, size_t len);
int sf_open(const char *path, int type, mode_t mode);
int sf_close(int fd);
int erts_run_erl_write_all(int fd, const char* buf, int len);
char *simple_basename(char *path);
#ifndef LOG_ERR
#ifdef __OSE__
#define LOG_ERR 0
#else
#define LOG_ERR NULL
#endif
#endif
#define ERROR0(Prio,Format) erts_run_erl_log_error(Prio,__LINE__,Format"\n")
#define ERROR1(Prio,Format,A1) erts_run_erl_log_error(Prio,__LINE__,Format"\n",A1)
#define ERROR2(Prio,Format,A1,A2) erts_run_erl_log_error(Prio,__LINE__,Format"\n",A1,A2)
#ifdef HAVE_STRERROR
# define ADD_ERRNO(Format) "errno=%d '%s'\n"Format"\n",errno,strerror(errno)
#else
# define ADD_ERRNO(Format) "errno=%d\n"Format"\n",errno
#endif
#define ERRNO_ERR0(Prio,Format) erts_run_erl_log_error(Prio,__LINE__,ADD_ERRNO(Format))
#define ERRNO_ERR1(Prio,Format,A1) erts_run_erl_log_error(Prio,__LINE__,ADD_ERRNO(Format),A1)
#define ERRNO_ERR2(Prio,Format,A1,A2) erts_run_erl_log_error(Prio,__LINE__,ADD_ERRNO(Format),A1,A2)
#define RUN_ERL_USAGE \
"%s (pipe_name|pipe_dir/) log_dir \"command [parameters ...]\"" \
"\n\nDESCRIPTION:\n" \
"You may also set the environment variables RUN_ERL_LOG_GENERATIONS\n" \
"and RUN_ERL_LOG_MAXSIZE to the number of log files to use and the\n" \
"size of the log file when to switch to the next log file\n"
#ifndef FILENAME_MAX
#define FILENAME_MAX 250
#endif
#define FILENAME_BUFSIZ FILENAME_MAX
#ifdef O_NONBLOCK
# define DONT_BLOCK_PLEASE O_NONBLOCK
#else
# define DONT_BLOCK_PLEASE O_NDELAY
# ifndef EAGAIN
# define EAGAIN -3898734
# endif
#endif
#endif
|