* Europagate, 1995
*
* $Log: urp.c,v $
- * Revision 1.33 1995/05/03 16:34:19 adam
+ * Revision 1.34 1995/05/04 10:40:08 adam
+ * More work on Def-settings.
+ *
+ * Revision 1.33 1995/05/03 16:34:19 adam
* CCL def command, i.e. user definitions - saved as resource files.
*
* Revision 1.32 1995/05/03 07:37:46 adam
#include <strqueue.h>
#include "kernel.h"
+static void present (const char *set, int offset, int number,
+ struct ccl_token *format_token);
+
static char line_buf[LINE_MAX+1];
static void put_esc_str (const char *s)
"Connection established to"),
info.hostname, info.port);
if (*info.databases)
- fprintf (reply_fd, "%s:\n%s\n",
+ fprintf (reply_fd, "%s: %s\n",
gw_res_get (info.kernel_res, "gw.msg.databases",
"Available databases"),
info.databases);
if (*info.database)
- fprintf (reply_fd, "%s:\n%s\n",
+ fprintf (reply_fd, "%s: %s\n",
gw_res_get (info.kernel_res, "gw.msg.database",
"Selected databases"),
info.database);
const struct zass_searchent *p;
struct gw_user_set *us;
char setname[32];
+ int autoshow;
struct ccl_rpn_node *rpn;
int error;
gw_log (GW_LOG_DEBUG, KERNEL_LOG, "Searching in database %s",
info.database );
assert (info.zass);
- fprintf (reply_fd, "Searching in database %s\n", info.database);
p = zass_p_search (info.zass, rpn, setname, info.database, info.sets);
if (!p)
{
- fprintf (reply_fd, "Search fail\n");
+ fprintf (reply_fd, "%s\n",
+ gw_res_get (info.kernel_res, "gw.err.search.fail",
+ "Search fail. Connection closed"));
return -1;
}
if (p->errcode != -1)
display_diag_error (p->errcode, p->errstring);
return -2;
}
- fprintf (reply_fd, "%d %s\n", p->num,
- gw_res_get (info.kernel_res, "gw.msg.hits", "hit(s)"));
+ fprintf (reply_fd, "%d %s %s\n", p->num,
+ gw_res_get (info.kernel_res, "gw.msg.hits", "hit(s) in set "),
+ setname);
us = user_set_add (setname, p->num, info.database, rpn, 1, search_str);
- fprintf (reply_fd, "Result-set %s created\n", setname);
+ autoshow = gw_res_int (info.kernel_res, "gw.auto.show", 0);
+ if (autoshow && p->num > 0)
+ {
+ if (autoshow > p->num)
+ {
+ present (setname, 1, p->num, NULL);
+ info.next_position = 1+p->num;
+ }
+ else
+ {
+ present (setname, 1, autoshow, NULL);
+ info.next_position = 1+autoshow;
+ }
+ }
return 0;
}
static int exec_status (struct ccl_token *list)
{
- fprintf (reply_fd, " Name Hits Database Find\n");
+ fprintf (reply_fd, "%s\n",
+ gw_res_get (info.kernel_res,
+ "gw.msg.statusline",
+ " Name Hits Database Find"));
exec_status_r (info.sets);
return 0;
}
if (rec)
{
#if USE_FML
+ strcpy (format_str,
+ gw_res_get (info.kernel_res,
+ "gw.display.format", ""));
if (format_token)
{
len = format_token->len;
memcpy (format_str, format_token->name, len);
format_str[len] = '\0';
}
- if (info.fml && format_token &&
+ if (info.fml && *format_str &&
(!strcmp (format_str, "0") || !strcmp (format_str, "1")
|| !strcmp(format_str, "2")))
{
return 0;
}
+static void show_def (void)
+{
+ fprintf (reply_fd, "format %s\n", gw_res_get
+ (info.kernel_res, "gw.display.format", ""));
+ fprintf (reply_fd, "autoshow %s\n", gw_res_get
+ (info.kernel_res, "gw.auto.show", ""));
+ fprintf (reply_fd, "defaultshow %s\n", gw_res_get
+ (info.kernel_res, "gw.default.show", ""));
+ fprintf (reply_fd, "language %s\n", gw_res_get
+ (info.kernel_res, "gw.language", ""));
+}
+
static int exec_def (struct ccl_token *list)
{
const char *name = NULL;
char fname[256];
static struct command_word def_tab [] =
{
- { "reset", "reset" },
- { "f", "format"},
- { "maxshow", "maxshow" },
+ { "reset", "reset" },
+ { "show", "show" },
+ { "f", "format"},
+ { "autoshow", "autoshow" },
{ "defaultshow", "defaultshow" },
- { "lang", "language" },
+ { "lang", "language" },
{ NULL, NULL }
};
info.userid);
if (list->kind == CCL_TOK_EOL)
- {
- fprintf (reply_fd, "format %s\n", gw_res_get
- (info.kernel_res, "gw.display.format", ""));
- fprintf (reply_fd, "maxshow %s\n", gw_res_get
- (info.kernel_res, "gw.max.show", ""));
- fprintf (reply_fd, "default-show %s\n", gw_res_get
- (info.kernel_res, "gw.default.show", ""));
- fprintf (reply_fd, "language %s\n", gw_res_get
- (info.kernel_res, "gw.language", ""));
- }
+ show_def ();
else
{
int setting_no = command_search (def_tab, list, "ccl.token.");
read_kernel_res ();
return 0;
}
- list = list->next;
- if (list->kind == CCL_TOK_EOL)
+ else if (setting_no == 2)
{
- fprintf (reply_fd, "Missing value\n");
- return -1;
+ show_def ();
+ return 0;
}
+ list = list->next;
+ if (list->kind == CCL_TOK_EOL)
+ return 0;
strncpy (value, list->name, 127);
value[(size_t) list->len] = '\0';
switch (setting_no)
{
- case 2:
- name = "gw.display.format";
- break;
case 3:
- name = "gw.max.show";
+ name = "gw.display.format";
break;
case 4:
- name = "gw.default.show";
+ name = "gw.auto.show";
break;
case 5:
+ name = "gw.default.show";
+ break;
+ case 6:
name = "gw.language";
break;
default:
gw_res_put (info.kernel_res, "gw.username", info.from_str, fname);
gw_res_put (info.kernel_res, name, value, fname);
gw_res_commit (info.kernel_res, fname);
- if (setting_no == 5)
+ if (setting_no == 6)
read_kernel_res ();
}
return 0;
case 7:
return exec_status (cmd->next);
case 8: /* stop */
- info.zass = NULL;
- *info.target = 0;
*stop_flag = 1;
- read_kernel_res();
return 0;
case 9:
return exec_target (cmd->next);
tty_init (stdout, 40, 70);
if (*info.from_str)
{
- info.reply_fname = tempnam (gw_res_get (info.kernel_res,
- "gw.reply.tmp.dir", NULL),
- gw_res_get (info.kernel_res,
- "gw.reply.tmp.prefix", "gwr"));
-
+ info.reply_fname = (char *)
+ tempnam (gw_res_get (info.kernel_res, "gw.reply.tmp.dir", NULL),
+ gw_res_get (info.kernel_res,
+ "gw.reply.tmp.prefix", "gwr"));
+
reply_fd = fopen (info.reply_fname, "w");
if (!reply_fd)
{