aboutsummaryrefslogtreecommitdiff
path: root/src/process.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2013-03-10 22:39:23 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2013-03-10 22:39:23 +0200
commit87602f5492b842f734dffe22f4e2f85dbc6ce713 (patch)
tree3e7e04bca15e8af5c981a78619e2d95f03b45c67 /src/process.c
parent826bb71c57d903f760c89406f93d19fe0c131de0 (diff)
downloadwydawca-87602f5492b842f734dffe22f4e2f85dbc6ce713.tar.gz
wydawca-87602f5492b842f734dffe22f4e2f85dbc6ce713.tar.bz2
Replace mail notification with module event notification framework.
The new framework is to be general-purpose; the mail notification is implemented as a module. Althoug the program is operational, the change is not completed yet. In particular, the docs are out of date and the tests will mostly fail. * .gitignore: Update. * Makefile.am (SUBDIRS): Add modules. * configure.ac: Mailutils is now optional (though highly recommended). (AC_CONFIG_FILES): Build modules/Makefile and modules/mailutils/Makefile. * modules/Makefile.am: New file. * modules/mailutils/Makefile.am: New file. * modules/mailutils/mod_mailutils.c: New file. * src/mail.c: Remove. * src/mail.h: Remove. * src/event.c: New file. * src/Makefile.am (wydawca_SOURCES): Update. (LDADD): Remove MAILUTILS_LIBS. * src/config.c: Remove mail-related configuration statements. Add module-related ones instead. * src/wydawca.h (notification_event) <ev_statistics>: New event. (notification_target): Remove. (notification) <tgt,sign_keys,msg>: Remove. <statmask>: New member. (register_message_template): Remove. (notify_stats,notify_flush): New protos. (notification_target_str): Remove. (format_fn): Remove. (module) <next,modinit,open> <flush,close>: New members. <notify>: Change signature. (modules_close, module_set_init) (module_flush): New protos. (debug_level): Rename to wy_debug_level. All uses changed. (wy_version): New extern. (admin_stat_message,admin_stat_sign_key): Remove. (default_notification): New global. (triplet_expand_param,triplet_expand_dictionary_query): The file_triplet argument is const pointer. (assert_string_arg): Rename to wy_assert_string_arg. * src/wydawca.c (debug_level): Rename to wy_debug_level. (wy_version): New global. (logstats): Call notify_stats. (main): Call modules_close. * src/module.c: Keep modules in a singly-linked list instead of a symtab. Provide new functions. * src/net.c: Update. * src/dictionary.c: Update. * src/directive.c: Update. * src/diskio.c: Update. * src/exec.c: Update. * src/gpg.c: Update. * src/job.c (wydawca_scanner): Call notify_flush. * src/null.c: Update. * src/process.c: Update. * src/sql.c: Update. * src/tcpwrap.c: Update. * src/triplet.c: Update. * src/verify.c: Update. * src/watcher.c: Update.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c
index e111e6b..b907558 100644
--- a/src/process.c
+++ b/src/process.c
@@ -167,7 +167,7 @@ spool_cwd_add_new_file(const struct spool *spool, const char *name,
}
if (!match_uid_p(st.st_uid, uc, uv)) {
- if (debug_level)
+ if (wy_debug_level)
logmsg(LOG_DEBUG, _("ignoring file: %s/%s"),
spool->source_dir, name);
return -1;
@@ -176,7 +176,7 @@ spool_cwd_add_new_file(const struct spool *spool, const char *name,
finfo.sb = st;
parse_file_name(name, &finfo);
- if (debug_level)
+ if (wy_debug_level)
logmsg(LOG_DEBUG, _("found file %s: %s, stem: %.*s"), name,
file_type_str(finfo.type), finfo.root_len, finfo.name);
@@ -188,7 +188,7 @@ int
spool_add_new_file(const struct spool *spool, const char *name,
int uc, uid_t * uv)
{
- if (debug_level)
+ if (wy_debug_level)
logmsg(LOG_DEBUG, "%s -> %s, adding %s", spool->source_dir,
wy_url_printable(spool->dest_url), name);
@@ -208,7 +208,7 @@ scan_spool_unlocked(struct spool *spool, int uc, uid_t *uv)
DIR *dir;
struct dirent *ent;
- if (debug_level)
+ if (wy_debug_level)
logmsg(LOG_DEBUG, "%s -> %s", spool->source_dir,
wy_url_printable(spool->dest_url));

Return to:

Send suggestions and report system problems to the System administrator.