Remove sj3kkcd
Signed-off-by: Masanori Ogino <mogino@acm.org>
This commit is contained in:
parent
9eced34900
commit
76878dfa43
4 changed files with 0 additions and 340 deletions
|
|
@ -124,17 +124,6 @@ target_link_libraries(sj3serv
|
||||||
sj3lib kanakan
|
sj3lib kanakan
|
||||||
)
|
)
|
||||||
|
|
||||||
add_executable(sj3kkcd
|
|
||||||
sj3kkcd/log.c
|
|
||||||
sj3kkcd/sj3kkcd.c
|
|
||||||
)
|
|
||||||
target_include_directories(sj3kkcd
|
|
||||||
PRIVATE include lib/sj3lib
|
|
||||||
)
|
|
||||||
target_link_libraries(sj3kkcd
|
|
||||||
sj3lib kanakan
|
|
||||||
)
|
|
||||||
|
|
||||||
add_executable(sj3dic
|
add_executable(sj3dic
|
||||||
sj3dic/codecnv.c
|
sj3dic/codecnv.c
|
||||||
sj3dic/dictdisp.c
|
sj3dic/dictdisp.c
|
||||||
|
|
|
||||||
199
sj3kkcd/log.c
199
sj3kkcd/log.c
|
|
@ -1,199 +0,0 @@
|
||||||
/*-
|
|
||||||
* SPDX-License-Identifier: ISC
|
|
||||||
*
|
|
||||||
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, and distribute this software for any
|
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
|
||||||
* copyright notice and this permission notice appear in all copies.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
||||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
||||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
||||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
||||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
||||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdarg.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <syslog.h>
|
|
||||||
#include <errno.h>
|
|
||||||
#include <time.h>
|
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
|
|
||||||
static int debug;
|
|
||||||
static int verbose;
|
|
||||||
static const char *log_procname;
|
|
||||||
|
|
||||||
void
|
|
||||||
log_init(int n_debug, int facility)
|
|
||||||
{
|
|
||||||
extern char *__progname;
|
|
||||||
|
|
||||||
debug = n_debug;
|
|
||||||
verbose = n_debug;
|
|
||||||
log_procinit(__progname);
|
|
||||||
|
|
||||||
if (!debug)
|
|
||||||
openlog(__progname, LOG_PID | LOG_NDELAY, facility);
|
|
||||||
|
|
||||||
tzset();
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
log_procinit(const char *procname)
|
|
||||||
{
|
|
||||||
if (procname != NULL)
|
|
||||||
log_procname = procname;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
log_setverbose(int v)
|
|
||||||
{
|
|
||||||
verbose = v;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
log_getverbose(void)
|
|
||||||
{
|
|
||||||
return (verbose);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
logit(int pri, const char *fmt, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
|
|
||||||
va_start(ap, fmt);
|
|
||||||
vlog(pri, fmt, ap);
|
|
||||||
va_end(ap);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
vlog(int pri, const char *fmt, va_list ap)
|
|
||||||
{
|
|
||||||
char *nfmt;
|
|
||||||
int saved_errno = errno;
|
|
||||||
|
|
||||||
if (debug) {
|
|
||||||
/* best effort in out of mem situations */
|
|
||||||
if (asprintf(&nfmt, "%s\n", fmt) == -1) {
|
|
||||||
vfprintf(stderr, fmt, ap);
|
|
||||||
fprintf(stderr, "\n");
|
|
||||||
} else {
|
|
||||||
vfprintf(stderr, nfmt, ap);
|
|
||||||
free(nfmt);
|
|
||||||
}
|
|
||||||
fflush(stderr);
|
|
||||||
} else
|
|
||||||
vsyslog(pri, fmt, ap);
|
|
||||||
|
|
||||||
errno = saved_errno;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
log_warn(const char *emsg, ...)
|
|
||||||
{
|
|
||||||
char *nfmt;
|
|
||||||
va_list ap;
|
|
||||||
int saved_errno = errno;
|
|
||||||
|
|
||||||
/* best effort to even work in out of memory situations */
|
|
||||||
if (emsg == NULL)
|
|
||||||
logit(LOG_ERR, "%s", strerror(saved_errno));
|
|
||||||
else {
|
|
||||||
va_start(ap, emsg);
|
|
||||||
|
|
||||||
if (asprintf(&nfmt, "%s: %s", emsg,
|
|
||||||
strerror(saved_errno)) == -1) {
|
|
||||||
/* we tried it... */
|
|
||||||
vlog(LOG_ERR, emsg, ap);
|
|
||||||
logit(LOG_ERR, "%s", strerror(saved_errno));
|
|
||||||
} else {
|
|
||||||
vlog(LOG_ERR, nfmt, ap);
|
|
||||||
free(nfmt);
|
|
||||||
}
|
|
||||||
va_end(ap);
|
|
||||||
}
|
|
||||||
|
|
||||||
errno = saved_errno;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
log_warnx(const char *emsg, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
|
|
||||||
va_start(ap, emsg);
|
|
||||||
vlog(LOG_ERR, emsg, ap);
|
|
||||||
va_end(ap);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
log_info(const char *emsg, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
|
|
||||||
va_start(ap, emsg);
|
|
||||||
vlog(LOG_INFO, emsg, ap);
|
|
||||||
va_end(ap);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
log_debug(const char *emsg, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
|
|
||||||
if (verbose) {
|
|
||||||
va_start(ap, emsg);
|
|
||||||
vlog(LOG_DEBUG, emsg, ap);
|
|
||||||
va_end(ap);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
vfatalc(int code, const char *emsg, va_list ap)
|
|
||||||
{
|
|
||||||
static char s[BUFSIZ];
|
|
||||||
const char *sep;
|
|
||||||
|
|
||||||
if (emsg != NULL) {
|
|
||||||
(void)vsnprintf(s, sizeof(s), emsg, ap);
|
|
||||||
sep = ": ";
|
|
||||||
} else {
|
|
||||||
s[0] = '\0';
|
|
||||||
sep = "";
|
|
||||||
}
|
|
||||||
if (code)
|
|
||||||
logit(LOG_CRIT, "fatal in %s: %s%s%s",
|
|
||||||
log_procname, s, sep, strerror(code));
|
|
||||||
else
|
|
||||||
logit(LOG_CRIT, "fatal in %s%s%s", log_procname, sep, s);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
fatal(const char *emsg, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
|
|
||||||
va_start(ap, emsg);
|
|
||||||
vfatalc(errno, emsg, ap);
|
|
||||||
va_end(ap);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
fatalx(const char *emsg, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
|
|
||||||
va_start(ap, emsg);
|
|
||||||
vfatalc(0, emsg, ap);
|
|
||||||
va_end(ap);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
@ -1,61 +0,0 @@
|
||||||
/*-
|
|
||||||
* SPDX-License-Identifier: ISC
|
|
||||||
*
|
|
||||||
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, and distribute this software for any
|
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
|
||||||
* copyright notice and this permission notice appear in all copies.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
||||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
||||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
||||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
||||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
||||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef LOG_H
|
|
||||||
#define LOG_H
|
|
||||||
|
|
||||||
#include <stdarg.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
#ifndef NO_LOG
|
|
||||||
void log_init(int, int);
|
|
||||||
void log_procinit(const char *);
|
|
||||||
void log_setverbose(int);
|
|
||||||
int log_getverbose(void);
|
|
||||||
void log_warn(const char *, ...)
|
|
||||||
__attribute__((__format__ (printf, 1, 2)));
|
|
||||||
void log_warnx(const char *, ...)
|
|
||||||
__attribute__((__format__ (printf, 1, 2)));
|
|
||||||
void log_info(const char *, ...)
|
|
||||||
__attribute__((__format__ (printf, 1, 2)));
|
|
||||||
void log_debug(const char *, ...)
|
|
||||||
__attribute__((__format__ (printf, 1, 2)));
|
|
||||||
void logit(int, const char *, ...)
|
|
||||||
__attribute__((__format__ (printf, 2, 3)));
|
|
||||||
void vlog(int, const char *, va_list)
|
|
||||||
__attribute__((__format__ (printf, 2, 0)));
|
|
||||||
__dead void fatal(const char *, ...)
|
|
||||||
__attribute__((__format__ (printf, 1, 2)));
|
|
||||||
__dead void fatalx(const char *, ...)
|
|
||||||
__attribute__((__format__ (printf, 1, 2)));
|
|
||||||
#else
|
|
||||||
#define log_init(x...) do {} while(0)
|
|
||||||
#define log_procinit(x...) do {} while(0)
|
|
||||||
#define log_setverbose(x...) do {} while(0)
|
|
||||||
#define log_getverbose(x...) (0)
|
|
||||||
#define log_warn(x...) do {} while(0)
|
|
||||||
#define log_warnx(x...) do {} while(0)
|
|
||||||
#define log_info(x...) do {} while(0)
|
|
||||||
#define log_debug(x...) do {} while(0)
|
|
||||||
#define logit(x...) do {} while(0)
|
|
||||||
#define vlog(x...) do {} while(0)
|
|
||||||
#define fatal(x...) exit(1)
|
|
||||||
#define fatalx(x...) exit(1)
|
|
||||||
#endif /* NO_LOG */
|
|
||||||
|
|
||||||
#endif /* LOG_H */
|
|
||||||
|
|
@ -1,69 +0,0 @@
|
||||||
/*-
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*
|
|
||||||
* Copyright (c) 2023 Masanori Ogino
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in all
|
|
||||||
* copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @file sj3kkcd.c
|
|
||||||
* @brief かな漢字変換サーバーのメインプロセス。
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#include "pathnames.h"
|
|
||||||
|
|
||||||
const char default_conffile[] = _PATH_SJ3_CONF_FILE;
|
|
||||||
const char *conffile = default_conffile;
|
|
||||||
|
|
||||||
__dead void
|
|
||||||
usage(void)
|
|
||||||
{
|
|
||||||
extern char *__progname;
|
|
||||||
|
|
||||||
fprintf(stderr, "usage: %s [-v] [-f file]\n", __progname);
|
|
||||||
exit(EXIT_FAILURE);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
main(int argc, char *argv[])
|
|
||||||
{
|
|
||||||
int verbose = 0;
|
|
||||||
int c;
|
|
||||||
|
|
||||||
while ((c = getopt(argc, argv, "f:v")) != -1) {
|
|
||||||
switch (c) {
|
|
||||||
case 'f':
|
|
||||||
conffile = optarg;
|
|
||||||
break;
|
|
||||||
case 'v':
|
|
||||||
verbose++;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
usage();
|
|
||||||
/* NOTREACHED */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue