/**************************************************************************
 *
 * mgquery.c -- The   M G Q U E R Y   program
 * Copyright (C) 1994  Neil Sharman
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * $Id$
 *
 **************************************************************************/

/*
   $Log$
   Revision 1.2  2004/06/22 04:17:51  kjdon
   fixed a couple of compiler warnings

   Revision 1.1  2003/02/20 21:18:24  mdewsnip
   Addition of MG package for search and retrieval

   Revision 1.1  1999/08/10 21:18:18  sjboddie
   renamed mg-1.3d directory mg

   Revision 1.3  1999/01/08 00:33:46  rjmcnab

   Enabled mg and the library software to read in more than one index
   at a time.

   Revision 1.2  1998/11/25 07:55:49  rjmcnab

   Modified mg to that you can specify the stemmer you want
   to use via a command line option. You specify it to
   mg_passes during the build process. The number of the
   stemmer that you used is stored within the inverted
   dictionary header and the stemmed dictionary header so
   the correct stemmer is used in later stages of building
   and querying.

   Revision 1.1  1998/11/17 09:35:29  rjmcnab
   *** empty log message ***

   * Revision 1.3  1994/10/20  03:57:02  tes
   * I have rewritten the boolean query optimiser and abstracted out the
   * components of the boolean query.
   *
   * Revision 1.2  1994/09/20  04:41:58  tes
   * For version 1.1
   *
 */

static char *RCSID = "$Id$";

#include "sysfuncs.h"

#if defined(HAVE_SYS_PROCFS_H) && defined(HAVE_PR_BRKSIZE) && \
    (__STDC__ == 0)
/* STDC test was included to allow cc -Xc on SunOS 5 to work */
#define USE_PROCESS_MEM
#endif

#ifdef USE_PROCESS_MEM
# include <sys/procfs.h>
#endif

#ifdef HAVE_GETRUSAGE
# ifdef HAVE_SYS_TIME_H
#  include <sys/time.h>
# endif
# include <sys/resource.h>
#endif

#ifndef HAVE_GETPAGESIZE
# include "getpagesize.h"
#endif
 
#if WITH_REGEX
# include <regex.h>
#else
# include <rx.h>
#endif


#include <stdarg.h>
#include <signal.h>

#include "messages.h"
#include "timing.h"
#include "memlib.h"
#include "local_strings.h"  /* [RPAP - Feb 97: Term Frequency] */

#include "filestats.h"
#include "invf.h"
#include "text.h"
#include "mg.h"
#include "lists.h"
#include "backend.h"
#include "environment.h"
#include "globals.h"
#include "read_line.h"
#include "mg_errors.h"
#include "commands.h"
#include "text_get.h"
#include "term_lists.h"
#include "query_term_list.h"


FILE *OutFile = NULL, *InFile = NULL;
int OutPipe = 0, InPipe = 0;
int Quitting = 0;

/* [RPAP - Feb 97: NZDL Additions] */
#if defined(PARADOCNUM) ||  defined(NZDL)
int GetDocNumFromParaNum(query_data *qd, int paranum) {
  int Documents = qd->td->cth.num_of_docs;
  int *Paragraph = qd->paragraph;
  int low = 1, high = Documents;
  int mid = (low+high)/2;

  while ((mid = (low+high)/2) >=1 && mid <= Documents)
    {
      if (paranum > Paragraph[mid])
	low = mid+1;
      else if (paranum <= Paragraph[mid-1])
	high = mid-1;
      else
	return mid;
    }
  FatalError(1, "Bad paragraph number.\n");
}
#endif

#ifdef TREC_MODE
char *trec_ids = NULL;
mg_s_long *trec_paras = NULL;
#endif

static volatile int PagerRunning = 0;
static volatile int Ctrl_C = 0;


/*****************************************************************************/

typedef enum
  {
    S_Time, S_Mem, S_Size, S_File
  }
S_Type;

static struct Stat
  {
    S_Type typ;
    char *name;
    char *text;
  }
 *Stats = NULL;
static int NumStats = 0;

static void 
Clear_Stats (void)
{
  if (Stats)
    {
      int i;
      for (i = 0; i < NumStats; i++)
	{
	  if (Stats[i].name)
	    Xfree (Stats[i].name);
	  if (Stats[i].text)
	    Xfree (Stats[i].text);
	}
      Xfree (Stats);
      Stats = NULL;
      NumStats = 0;
    }
}

static void 
Add_Stats (S_Type typ, char *name, char *fmt,...)
{
  char buf[1024];
  va_list args;
  va_start (args, fmt);
  vsprintf (buf, fmt, args);
  if (Stats)
    Stats = Xrealloc (Stats, (++NumStats) * sizeof (*Stats));
  else
    Stats = Xmalloc ((++NumStats) * sizeof (*Stats));
  Stats[NumStats - 1].typ = typ;
  Stats[NumStats - 1].name = Xstrdup (name);
  Stats[NumStats - 1].text = Xstrdup (buf);
}

static void 
Display_Stats (FILE * f)
{
  static char *sep = "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-="
  "-=-=-=-=-=-=-=-=-=-=-";
  char *names[] =
  {"Time:  ", "Memory:", "Sizes: ", "Disk:  ", "       "};
  int i, last_typ = -1;
  size_t len = 0;
  if (NumStats == 0)
    return;
  fprintf (f, "%s\n", sep);
  for (i = 0; i < NumStats; i++)
    if (strlen (Stats[i].name) > len)
      len = strlen (Stats[i].name);
  for (i = 0; i < NumStats; i++)
    {
      int typ = 4;
      if (Stats[i].typ != last_typ)
	typ = last_typ = Stats[i].typ;
      fprintf (f, "%s %-*s %s\n", names[typ], (int) len, Stats[i].name, Stats[i].text);
    }
  fprintf (f, "%s\n", sep);
}

/*****************************************************************************/


static void 
QueryTimeStats (ProgTime * Start, ProgTime * invf, ProgTime * text)
{
  if (!BooleanEnv (GetEnv ("briefstats"), 0))
    {
      Add_Stats (S_Time, "invf", ElapsedTime (Start, invf));
      Add_Stats (S_Time, "text", ElapsedTime (invf, text));
    }
  Add_Stats (S_Time, "total", ElapsedTime (Start, text));
}

static void 
StartUpTimeStats (InitQueryTimes * iqt)
{
  if (!BooleanEnv (GetEnv ("briefstats"), 0))
    {
      Add_Stats (S_Time, "dict [stem]", ElapsedTime (&iqt->Start,
						     &iqt->StemDict));
      Add_Stats (S_Time, "weights", ElapsedTime (&iqt->StemDict,
						 &iqt->ApproxWeights));
      Add_Stats (S_Time, "dict [text]", ElapsedTime (&iqt->ApproxWeights,
						     &iqt->CompDict));
      Add_Stats (S_Time, "Inverted", ElapsedTime (&iqt->CompDict,
						  &iqt->Invf));
      Add_Stats (S_Time, "Compressed", ElapsedTime (&iqt->Invf,
						    &iqt->Text));
    }
  Add_Stats (S_Time, "total", ElapsedTime (&iqt->Start, &iqt->Text));
}




#ifdef USE_PROCESS_MEM
static mg_u_long 
process_mem (void)
{
  prstatus_t pr;
  static int fd = -1;
  if (fd == -1)
    {
      char buf[128];
      sprintf (buf, "/proc/%d", (mg_s_long) getpid ());
      fd = open (buf, O_RDONLY);
    }
  if (fd == -1 || ioctl (fd, PIOCSTATUS, &pr) == -1)
    return 0;
  return pr.pr_brksize;
}
#endif




static void 
MemStats (query_data * qd)
{
  if (!BooleanEnv (GetEnv ("briefstats"), 0))
    {
#ifdef HAVE_GETRUSAGE
      struct rusage rusage;
      getrusage (RUSAGE_SELF, &rusage);

      Add_Stats (S_Mem, "process mem", "%7.3f Mb",
	    (double) (rusage.ru_maxrss * getpagesize () / 1024.0 / 1024.0));
#endif
#ifdef USE_PROCESS_MEM
      Add_Stats (S_Mem, "process mem", "%7.3f Mb",
		 (double) (process_mem () / 1024.0 / 1024.0));
#endif
      Add_Stats (S_Mem, "dict [stem]", "%7.1f kB",
		 (double) qd->sd->MemForStemDict / 1024);
      Add_Stats (S_Mem, "dict [text]", "%7.1f kB",
		 (double) qd->cd->MemForCompDict / 1024);
      if (qd->awd)
	Add_Stats (S_Mem, "weights", "%7.1f kB",
		   (double) qd->awd->MemForWeights / 1024);
    }
  if (qd->awd)
    Add_Stats (S_Mem, "total [peak]", "%7.1f kB",
	       (double) (qd->max_mem_in_use + qd->sd->MemForStemDict +
		   qd->cd->MemForCompDict + qd->awd->MemForWeights) / 1024);
  else
    Add_Stats (S_Mem, "total [peak]", "%7.1f kB",
	       (double) (qd->max_mem_in_use + qd->sd->MemForStemDict +
			 qd->cd->MemForCompDict) / 1024);

}



static void 
SizeStats (query_data * qd)
{
  Add_Stats (S_Size, "skips", "%7d", qd->hops_taken);
  Add_Stats (S_Size, "pointers", "%7d", qd->num_of_ptrs);
  Add_Stats (S_Size, "accumulators", "%7d", qd->num_of_accum);
  Add_Stats (S_Size, "terms", "%7d", qd->num_of_terms);
  Add_Stats (S_Size, "answers", "%7d", qd->num_of_ans);
  Add_Stats (S_Size, "index lookups", "%7d", qd->text_idx_lookups);
}

static void 
TotalSizeStats (query_data * qd)
{
  Add_Stats (S_Size, "skips", "%7d", qd->tot_hops_taken);
  Add_Stats (S_Size, "pointers", "%7d", qd->tot_num_of_ptrs);
  Add_Stats (S_Size, "accumulators", "%7d", qd->tot_num_of_accum);
  Add_Stats (S_Size, "terms", "%7d", qd->tot_num_of_terms);
  Add_Stats (S_Size, "answers", "%7d", qd->tot_num_of_ans);
  Add_Stats (S_Size, "index lookups", "%7d", qd->tot_text_idx_lookups);
}


static void 
StatFile (File * F)
{
  static mg_u_long NumBytes = 0, NumSeeks = 0, NumReads = 0;
  if (F) 
    {
      if ((intptr_t) F != -1)
	{
	  if (!BooleanEnv (GetEnv ("briefstats"), 0))
	    Add_Stats (S_File, F->name, "%7.1f kB (%3d seeks, %7d reads)",
		       (double) F->Current.NumBytes / 1024, F->Current.NumSeeks,
		       F->Current.NumReads);
	  NumBytes += F->Current.NumBytes;
	  NumSeeks += F->Current.NumSeeks;
	  NumReads += F->Current.NumReads;
	}
      else
	{
	  Add_Stats (S_File, "total", "%7.1f kB (%3d seeks, %7d reads)",
		     (double) NumBytes / 1024, NumSeeks, NumReads);
	  NumSeeks = NumReads = NumBytes = 0;
	}
    }
}


static void 
File_Stats (query_data * qd)
{
  StatFile (qd->File_comp_dict);
  StatFile (qd->File_fast_comp_dict);
  StatFile (qd->File_text_idx_wgt);
  StatFile (qd->File_text);
  StatFile (qd->File_stem);

  /* [RPAP - Jan 97: Stem Index Change] */
  if (qd->sd->sdh.indexed)
    {
      StatFile (qd->File_stem1);
      StatFile (qd->File_stem2);
      StatFile (qd->File_stem3);
    }

  StatFile (qd->File_invf);
  StatFile (qd->File_weight_approx);
  StatFile (qd->File_text_idx);
  StatFile ((File *) (-1));
}


char *
get_query (query_data * qd)
{
  char *line, *LinePtr;
  WritePrompt ();
  do
    {
      do
	{
	  line = GetMultiLine ();
	  if (line == NULL)
	    {
	      if (stdin == InFile)
		return (NULL);	/* EOF */
	      if (InPipe)
/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
		_pclose (InFile);
#else
		pclose (InFile);
#endif
	      else
		fclose (InFile);
	      InPipe = 0;
	      InFile = stdin;
	    }
	}
      while (line == NULL);
      LinePtr = ProcessCommands (line, qd);
      if (CommandsErrorStr)
	fprintf (stderr, "%s\n", CommandsErrorStr);
    }
  while (*LinePtr == '\0' && !Quitting);
  return (LinePtr);
}


/* This is executed when a SIGPIPE is detected
   i.e. If some one quits out of the PAGER, this is executed */
#ifdef HAVE_SIGCONTEXT
static RETSIGTYPE 
SIGPIPE_handler (int sig, int code,
		 struct sigcontext *scp, char *addr)
#else
static RETSIGTYPE 
SIGPIPE_handler (int sig)
#endif
{
  /* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
  signal (sig, SIG_IGN);
#else
  signal (SIGPIPE, SIG_IGN);
#endif
  PagerRunning = 0;
}

/* This is executed when a SIGINT (i.e. CTRL-C) is detected */
#ifdef  HAVE_SIGCONTEXT
static RETSIGTYPE 
SIGINT_handler (int sig, int code,
		struct sigcontext *scp, char *addr)
#else
static RETSIGTYPE 
SIGINT_handler (int sig)
#endif
{
  Ctrl_C = 1;
}



static char *post_proc = NULL;



void 
GetPostProc (char *line)
{
  char *start, *finish;
  if (post_proc)
    {
      Xfree (post_proc);
      post_proc = NULL;
    }
  start = strchr (line, '\"');
  finish = strrchr (line, '\"');
  if (start != finish)
    {
      /* found a pattern */
      *finish = '\0';
      post_proc = Xstrdup (start + 1);
      strcpy (start, finish + 1);
      if (BooleanEnv (GetEnv ("verbatim"), 1) == 0)
	{
	  char *s;
	  s = re_comp (post_proc);
	  if (!s)
	    {
	      Xfree (post_proc);
	      post_proc = NULL;
	    }
	}
    }
  else if (start != NULL)
    {
      /* found a single speech mark. Delete It. */
      strcpy (start, start + 1);
    }
}

int 
PostProc (char *UDoc, int verbatim)
{
  if (!post_proc)
    return 1;

  if (verbatim) {
    return (strstr (UDoc, post_proc) != NULL);
  }
  return re_exec ((char *) UDoc);
}



static DocEntry *
in_chain (int para, int ip, DocEntry * dc)
{
  while (dc)
    {
      if (dc->DocNum - ip == para)
	return dc;
      dc = dc->Next;
    }
  return NULL;
}

/* num should be greater than or equal to 1 */
int 
RawDocOutput (query_data * qd, mg_u_long num, FILE * Output)
{
  static mg_u_long last_pos = 0;
  static u_char *c_buffer = 0;
  static int buf_len = -1;
  static u_char *uc_buffer = 0;
  mg_u_long pos, len;
  int ULen;

  FetchDocStart (qd, num, &pos, &len);

  if ((int) len > buf_len)
    {
      if (c_buffer)
	{
	  Xfree (c_buffer);
	  Xfree (uc_buffer);
	}
      if (!(c_buffer = Xmalloc (len)))
	return -1;
      if (!(uc_buffer = Xmalloc ((int) (qd->td->cth.ratio * 1.01 *
					len) + 100)))
	return -1;
      buf_len = len;
    }
  if (last_pos != pos)
    Fseek (qd->td->TextFile, pos, 0);
  Fread (c_buffer, 1, len, qd->td->TextFile);
  last_pos = pos + len;
  DecodeText (qd->cd, c_buffer, len, uc_buffer, &ULen);
  fwrite (uc_buffer, ULen, sizeof (u_char), Output);
  return 0;
}


void 
StringOut (FILE * Output, char *string,
	   int intvalid, mg_u_long intval,
	   int floatvalid, double floatval)
{
  char *s;
  for (s = string; *s; s++)
    if (*s == '%' &&
	(*(s + 1) == 'n' || *(s + 1) == 'w' || *(s + 1) == '%'))
      {
	s++;
	switch (*s)
	  {
	  case 'n':
	    if (intvalid)
	      fprintf (Output, "%d", intval);
	    else
	      fprintf (Output, "%%n");
	    break;
	  case 'w':
	    if (floatvalid)
	      fprintf (Output, "%f", floatval);
	    else
	      fprintf (Output, "%%w");
	    break;
	  case '%':
	    fputc ('%', Output);
	  }
      }
    else
      fputc (*s, Output);
}


void 
HeaderOut (FILE * Output, u_char * UDoc, mg_u_long ULen, int heads_length)
{
  int i, space = 1, num = 0;
  for (i = 0; i < ULen && num < heads_length; i++)
    {
      char c = UDoc[i];
      if (c == '\02')
	break;

      if (isspace (c) || c == '\01' || c == '\03')
	{
	  if (!space)
	    {
	      fputc (' ', Output);
	      num++;
	    }
	  space = 1;
	}
      else
	{
	  space = 0;
	  fputc (c, Output);
	  num++;
	}
    }
}

/* [RPAP - Feb 97: NZDL Additions] */
#if defined(PARADOCNUM) || defined(NZDL)
void PrintDocNum(FILE *output, char query_type,
		 int docnum, int indexnum, float weight)
{
  if (query_type == 'R' || query_type == 'A')
    fprintf(output, "%7d.%-7d  %6.4f\n", docnum, indexnum, weight);
  else
    fprintf(output, "%7d.%-7d\n", docnum, indexnum);
}
#endif

static int 
ProcessDocs (query_data * qd, int num, int verbatim,
	     char OutputType, FILE * Output)
{
  int max_buf = 0;
  int DocCount = 0;
  char *doc_sepstr = NULL;
  char *para_sepstr = NULL;
  char *para_start = NULL;
  int heads_length = atoi (GetDefEnv ("heads_length", "50"));
  char QueryType = get_query_type ();
  int need_text = (OutputType == OUTPUT_TEXT || OutputType == OUTPUT_HILITE ||
		   OutputType == OUTPUT_HEADERS || OutputType == OUTPUT_SILENT || 
		   post_proc); /* [RJM June 1997 -- fixing post retrieval scan] */

  if (OutputType == OUTPUT_TEXT || OutputType == OUTPUT_HILITE)
    {
      if (QueryType == QUERY_APPROX || QueryType == QUERY_RANKED)
	{
	  doc_sepstr = de_escape_string (
				    Xstrdup (GetDefEnv ("ranked_doc_sepstr",
			   "---------------------------------- %n %w\\n")));
	}
      else
	{
	  doc_sepstr = de_escape_string (
					  Xstrdup (GetDefEnv ("doc_sepstr",
			      "---------------------------------- %n\\n")));
	}
      para_sepstr = de_escape_string (
				       Xstrdup (GetDefEnv ("para_sepstr",
				  "\\n######## PARAGRAPH %n ########\\n")));

      para_start = de_escape_string (
				      Xstrdup (GetDefEnv ("para_start",
					    "***** Weight = %w *****\\n")));
    }

  if (need_text)
    {
      max_buf = atoi (GetDefEnv ("buffer", "1048576"));
    }

  do
    {
      u_char *UDoc = NULL;
      mg_u_long ULen;

      if (need_text)
	{
	  /* load the compressed text */
	  if (LoadCompressedText (qd, max_buf))
	    {
	      Message ("Unable to load compressed text.");
	      FatalError (1, "This is probably due to lack of memory.");
	    }

	  /* uncompress the loaded text */
	  UDoc = GetDocText (qd, &ULen);
	  if (UDoc == NULL)
	    FatalError (1, "UDoc is unexpectedly NULL");
	}

      if (!UDoc || PostProc ((char *) UDoc, verbatim))
	{
	  switch (OutputType)
	    {
	    case OUTPUT_COUNT:
	    case OUTPUT_SILENT:
	      break;
	    case OUTPUT_DOCNUMS:	/* This prints out the docnums string */
	      if (PagerRunning)
		{

/* [RPAP - Feb 97: NZDL Additions] */
#if defined(PARADOCNUM) || defined(NZDL)
		  int doc_num = GetDocNum(qd);

		  if (qd->paragraph)
		    {
		      if (qd->id->ifh.InvfLevel == 3 &&
			  (QueryType == 'R' || QueryType == 'A'))
			{
			  /* Print weights for each paragraph in document */
			  

			  int true_doc_num = GetDocNumFromParaNum(qd, doc_num);

			  /* Get number of paragraphs in this document */

			  int num_paragraphs = 
			    qd->paragraph[true_doc_num]-qd->paragraph[true_doc_num-1];

			  int init_para = FetchInitialParagraph(qd->td,
								doc_num);
			  DocEntry *de, *doc_chain = GetDocChain(qd);
			  int i;

			  for (i = 0; i < num_paragraphs; i++)
			    {
			      if ((de = in_chain(i, init_para, doc_chain)))
				PrintDocNum(Output, QueryType,
					    true_doc_num, init_para+i,
					    de->Weight);
			    }
			}
		      else
			PrintDocNum(Output, QueryType,
				    GetDocNumFromParaNum(qd, GetDocNum(qd)),
				    GetDocNum(qd),
				    GetDocWeight(qd));
		    }
		  else
		    {
		      PrintDocNum(Output, QueryType,
				  doc_num, doc_num, GetDocWeight(qd));
		    }
#else
		fprintf (Output, "%7d   %6.4f   %7u\n", GetDocNum (qd),
			 GetDocWeight (qd), GetDocCompLength (qd));
#endif
		}
	      break;
	    case OUTPUT_HEADERS:	/* This prints out the headers of the documents */
	      if (PagerRunning)
		fprintf (Output, "%d ", GetDocNum (qd));
	      HeaderOut (Output, UDoc, ULen, heads_length);
	      if (PagerRunning)
		fputc ('\n', Output);
	      break;
#if TREC_MODE
	    case OUTPUT_EXTRAS:	/* This prints out the docnums string */
	      if (PagerRunning && trec_ids)
		{
		  mg_s_long DN, PN = GetDocNum (qd) - 1;
		  if (trec_paras)
		    DN = trec_paras[PN];
		  else
		    DN = PN;
		  fprintf (Output, "%-14.14s  %8d  %10.5f\n",
			   &trec_ids[DN * 14], PN + 1, GetDocWeight (qd));
		}
	      break;
#endif
	    case OUTPUT_TEXT:
	    case OUTPUT_HILITE:
	      {
		int j, para = -1, curr_para = 0;
		int init_para = -1;
		DocEntry *de, *doc_chain = NULL;
		register char ch = ' ';
		register char lch = '\n';

/* [RPAP - Feb 97: NZDL Additions] */
#if defined(PARADOCNUM) || defined(NZDL)
		if (qd->id->ifh.InvfLevel == 3)
		  {
		    init_para = FetchInitialParagraph(qd->td, GetDocNum(qd));
		    
		    StringOut(Output, para_sepstr, 
			      1, init_para+curr_para,
			      0, 0);

		  }
		else
		  StringOut(Output, doc_sepstr, 
			    1, GetDocNum(qd),
			    QueryType == 'A' || QueryType == 'R',
			    GetDocWeight(qd));

#else
		int p_on = 0;

		if (PagerRunning)
		  {
		    StringOut (Output, doc_sepstr,
			       1, GetDocNum (qd),
			       QueryType == 'A' || QueryType == 'R',
			       GetDocWeight (qd));
		  }
		if (qd->id->ifh.InvfLevel == 3)
		  {
		    init_para = FetchInitialParagraph (qd->td, GetDocNum (qd));
		    doc_chain = GetDocChain (qd);
		    para = GetDocNum (qd) - init_para;

		    StringOut (Output, para_sepstr,
			       1, curr_para + 1,
			       0, 0);

		    if ((de = in_chain (0, init_para, doc_chain)))
		      StringOut (Output, para_start,
				 0, 0,
				 1, de->Weight);

		    if (doc_chain->DocNum - init_para == 0)
		      p_on = 1;
		  }
#endif
		for (j = 0; j < ULen; j++)
		  {
		    ch = UDoc[j];
		    switch (ch)
		      {
		      case '\02':
			break;
		      case '\01':
			ch = '\n';
		      case '\03':
/* [RPAP - Feb 97: NZDL Additions] */
#if defined(PARADOCNUM) || defined(NZDL)
			/* print paragraph numbers only if this is
			   a level 3 index */
			if (qd->id->ifh.InvfLevel == 3)
			  {
			    curr_para++;
			    StringOut(Output, para_sepstr, 
				      1, init_para+curr_para,
				      0, 0);
			  }
#else
			p_on = 0;
			curr_para++;
			StringOut (Output, para_sepstr,
				   1, curr_para + 1,
				   0, 0);
			lch = *(strchr (para_sepstr, '\0') - 1);
			if ((de = in_chain (curr_para, init_para, doc_chain)))
			  StringOut (Output, para_start,
				     0, 0,
				     1, de->Weight);
			if (doc_chain &&
			    doc_chain->DocNum - init_para == curr_para)
			  p_on = 1;
#endif
			break;
		      default:
			{
			  if (PagerRunning)
			    {
			      fputc (ch, Output);
/* [RPAP - Feb 97: NZDL Additions] */
#if !defined(PARADOCNUM) && !defined(NZDL)
			      if (p_on && isprint (ch))
				{
				  fputc ('\b', Output);
				  fputc ('_', Output);
				}
#endif
			    }

			  lch = ch;
			}
		      }
		  }
		if (PagerRunning && lch != '\n')
		  fputc ('\n', Output);
/* [RPAP - Feb 97: NZDL Additions] */
#if !defined(PARADOCNUM) && !defined(NZDL)
		p_on = 0;
#endif
	      }
	    }
	  if (PagerRunning)
	    fflush (Output);

	  DocCount++; /* moved within if statement [RJM June 1997 -- fixing post retrieval scan] */
	}
    }
  while (NextDoc (qd) && PagerRunning && (!Ctrl_C));

  if (need_text)
    {
      FreeTextBuffer (qd);
    }

  if (OutputType == OUTPUT_TEXT || OutputType == OUTPUT_HILITE)
    {
      Xfree (doc_sepstr);
      Xfree (para_sepstr);
      Xfree (para_start);
    }

  return (DocCount);
}


void 
output_terminator (FILE * out)
{
  char *terminator = Xstrdup (GetDefEnv ("terminator", ""));
  de_escape_string (terminator);
  fputs (terminator, out);
  Xfree (terminator);
}




/* MoreDocs () */
/* Displays all documents in list  DocList. */
/* Documents are fetched, then decompressed and displayed according to the */
/* format implied in  FormString(). */

/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
# define HILITE_PAGER "mg_hilite_words.exe"
#else
# define HILITE_PAGER "mg_hilite_words"
#endif

#define MAX_HILITE_PAGER_STR 80	/* for command & its options */

static void 
MoreDocs (query_data * qd, char *Query, char OutputType)
{
  static char terms_str[MAXTERMSTRLEN + 1];
  int DocCount = 0;		/* number of actual matches */
  FILE *Output = NULL;
  int using_pipe = 0;
  char *pager = NULL;

  Ctrl_C = 0;

  qd->num_of_ans = qd->DL->num;

  /* [RPAP - Feb 97: WIN32 Port] */
#ifndef __WIN32__
  signal (SIGPIPE, SIGPIPE_handler);
#endif
  signal (SIGINT, SIGINT_handler);

  PagerRunning = 1;
  if (isatty (fileno (OutFile)) && GetEnv ("pager") &&
      OutputType != OUTPUT_HILITE &&
      OutputType != OUTPUT_SILENT && OutputType != OUTPUT_COUNT)
    {
      pager = GetEnv ("pager");
    }
  else if (isatty (fileno (OutFile)) && OutputType == OUTPUT_HILITE)
    {
      /* concat the pager and its word argument strings */
      ConvertTermsToString (qd->TL, terms_str);
      pager = Xmalloc (MAX_HILITE_PAGER_STR + strlen (terms_str) + 1);
      if (!pager)
	{
	  fprintf (stderr, "Unable to allocate memory for highlighting\n");
	  return;
	}
      sprintf (pager, "%s --style=%s --pager=%s --stem_method=%d --stemmer=%d %s",
	       HILITE_PAGER,
	       GetEnv ("hilite_style"),
	       GetEnv ("pager"),
	       qd->sd->sdh.stem_method,
	       qd->sd->sdh.stemmer_num,
	       terms_str);

    }
  else
    {
      Output = OutFile;
    }

/* [RPAP - Feb 97: NZDL Additions] */
#if defined(OUTPUTSTEMMEDWORDS) || defined(NZDL)
  if (!isatty(fileno(OutFile)) && get_query_type() != QUERY_DOCNUMS)
    {
      ConvertTermsToString(qd->TL, terms_str);
      fprintf(Output, "%s\n", terms_str);
    }
#endif
  if (pager)
    {
/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
      Output = _popen (pager, "w");
#else
      Output = popen (pager, "w");
#endif
      using_pipe = (Output != NULL);
      if (!using_pipe)
	{
	  fprintf (stderr, "Unable to run \"%s\"\n", pager);
	  return;
	}
    }


  if (qd->DL->num > 0)
    {
      if (OutputType == OUTPUT_COUNT && !post_proc)
	DocCount = qd->DL->num;
      else {
	DocCount = ProcessDocs (qd, qd->DL->num,
				BooleanEnv (GetEnv ("verbatim"), 1),
				OutputType, Output);
      }
    }

  if (PagerRunning)
    {
      output_terminator (Output);
      fflush (Output);
    }

  if (OutputType == OUTPUT_HILITE && pager)
    free (pager);		/* as needed to malloc to create the pager string */

  if (using_pipe)
/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
    _pclose (Output);
#else
    pclose (Output);
#endif

  if (qd->DL->num == 0)
    fprintf (stderr, "No entries correspond to that query.\n");
  else
    {
      if (OutputType == OUTPUT_COUNT)
	fprintf (stderr, "%d documents match.\n", DocCount);
      else
	fprintf (stderr, "%d documents retrieved.\n", DocCount);
    }

  signal (SIGINT, SIG_DFL);
}


void 
start_up_stats (query_data * qd, InitQueryTimes iqt)
{
  Clear_Stats ();
  if (BooleanEnv (GetEnv ("timestats"), 0) ||
      BooleanEnv (GetEnv ("briefstats"), 0))
    StartUpTimeStats (&iqt);

  if (BooleanEnv (GetEnv ("diskstats"), 0) ||
      BooleanEnv (GetEnv ("briefstats"), 0))
    File_Stats (qd);

  if (BooleanEnv (GetEnv ("memstats"), 0) ||
      BooleanEnv (GetEnv ("briefstats"), 0))
    MemStats (qd);

}


void 
shut_down_stats (query_data * qd, ProgTime * start,
		 ProgTime * invf, ProgTime * text)
{
  Clear_Stats ();
  if (BooleanEnv (GetEnv ("timestats"), 0) ||
      BooleanEnv (GetEnv ("briefstats"), 0))
    QueryTimeStats (start, invf, text);

  if (BooleanEnv (GetEnv ("diskstats"), 0) ||
      BooleanEnv (GetEnv ("briefstats"), 0))
    {
      TransFileStats (qd);
      File_Stats (qd);
    }

  if (BooleanEnv (GetEnv ("sizestats"), 0))
    TotalSizeStats (qd);
}



char *wordfreqword2str (u_char * s)
{
  static char buf[1024];
  int i, len = (int) *s++;

  for (i = 0; i < len; i++)
    {
      buf[i] = (char)s[i];
    }
  buf[len] = '\0';

  return buf;
}


/* [RPAP - Feb 97: Term Frequency] */
/*********************************
 * PrintQueryTermFreq
 *
 * Prints the query terms and their respective frequencies within the collection
 *********************************/
void
PrintQueryTermFreqs (QueryTermList *qtl)
{
  int i;

  /* Print the number of terms */
  fprintf (OutFile, "%d\n", qtl->num);

  /* Print the terms and their respective frequency within the collection */
  for (i = 0; i < qtl->num; i++)
    if (qtl->QTE[i].stem_method == -1)
      /* Using default stem method - don't print stem method beside term */
      fprintf (OutFile, "%s %d\n", wordfreqword2str (qtl->QTE[i].Term), qtl->QTE[i].Count);
    else
      /* Term was forced with a stem, print stem method with term */
      fprintf (OutFile, "%s#%d %d\n", wordfreqword2str (qtl->QTE[i].Term), qtl->QTE[i].stem_method, qtl->QTE[i].Count);
}


void 
query (void)
{
  ProgTime TotalStartTime, TotalInvfTime, TotalTextTime;
  InitQueryTimes iqt;
  query_data *qd;

  TotalStartTime.RealTime = TotalStartTime.CPUTime = 0;
  TotalInvfTime.RealTime = TotalInvfTime.CPUTime = 0;
  TotalTextTime.RealTime = TotalTextTime.CPUTime = 0;

/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
  qd = InitQuerySystem (GetDefEnv ("mgdir", ".\\"),
                        GetDefEnv ("mgname", ""),
			GetDefEnv ("textname", NULL), /* [RJM 06/97: text filename] */
			&iqt);
#else
  qd = InitQuerySystem (GetDefEnv ("mgdir", "./"),
                        GetDefEnv ("mgname", ""),
			GetDefEnv ("textname", NULL), /* [RJM 06/97: text filename] */
                        &iqt);
#endif

  if (!qd)
    FatalError (1, mg_errorstrs[mg_errno], mg_error_data);
  start_up_stats (qd, iqt);


  while (1)
    {
      ProgTime StartTime, InvfTime, TextTime;
      char QueryType;
      char OutputType;
      char *line;
      ResetFileStats (qd);
      qd->max_mem_in_use = qd->mem_in_use = 0;

      qd->tot_hops_taken += qd->hops_taken;
      qd->tot_num_of_ptrs += qd->num_of_ptrs;
      qd->tot_num_of_accum += qd->num_of_accum;
      qd->tot_num_of_terms += qd->num_of_terms;
      qd->tot_num_of_ans += qd->num_of_ans;
      qd->tot_text_idx_lookups += qd->text_idx_lookups;
      qd->hops_taken = qd->num_of_ptrs = 0;
      qd->num_of_accum = qd->num_of_ans = qd->num_of_terms = 0;
      qd->text_idx_lookups = 0;

      Display_Stats (stderr);
      Clear_Stats ();
      line = get_query (qd);
      if (!line || Quitting)
	break;

      GetPostProc (line);

      GetTime (&StartTime);

      FreeQueryDocs (qd);

      QueryType = get_query_type ();
      OutputType = get_output_type ();
      /* No point in hiliting words on a docnum query */
      if (OutputType == OUTPUT_HILITE && QueryType == QUERY_DOCNUMS)
	OutputType = OUTPUT_TEXT;

      switch (QueryType)
	{
	case QUERY_BOOLEAN:
	  {
	    char *maxdocs;
	    BooleanQueryInfo bqi;
	    maxdocs = GetDefEnv ("maxdocs", "all");
	    bqi.MaxDocsToRetrieve = strcmp (maxdocs, "all") ? atoi (maxdocs) : -1;
	    /* [RPAP - Jan 97: Stem Index Change] */
	    if (qd->sd->sdh.indexed)
	      BooleanQuery (qd, line, &bqi, (BooleanEnv (GetEnv ("casefold"), 0) |
					     (BooleanEnv (GetEnv ("stem"), 0) << 1)));
	    else
	      BooleanQuery (qd, line, &bqi, qd->sd->sdh.stem_method);

	    break;
	  }
	case QUERY_APPROX:
	case QUERY_RANKED:
	  {
	    char *maxdocs;
	    char *maxterms;
	    char *maxaccum;
	    RankedQueryInfo rqi;
	    maxdocs = GetDefEnv ("maxdocs", "all");
	    maxterms = GetDefEnv ("max_terms", "all");
	    maxaccum = GetDefEnv ("max_accumulators", "all");
	    rqi.Sort = BooleanEnv (GetEnv ("sorted_terms"), 0);
	    rqi.QueryFreqs = BooleanEnv (GetEnv ("qfreq"), 1);
	    rqi.Exact = QueryType == QUERY_RANKED;
	    rqi.MaxDocsToRetrieve = strcmp (maxdocs, "all") ? atoi (maxdocs) : -1;
	    rqi.MaxTerms = strcmp (maxterms, "all") ? atoi (maxterms) : -1;
	    rqi.MaxParasToRetrieve = rqi.MaxDocsToRetrieve;
	    if (qd->id->ifh.InvfLevel == 3 && GetEnv ("maxparas"))
	      rqi.MaxParasToRetrieve = atoi (GetEnv ("maxparas"));
	    rqi.AccumMethod = toupper (*GetDefEnv ("accumulator_method", "A"));
	    rqi.MaxAccums = strcmp (maxaccum, "all") ? atoi (maxaccum) : -1;
	    rqi.HashTblSize = IntEnv (GetEnv ("hash_tbl_size"), 1000);
	    rqi.StopAtMaxAccum = BooleanEnv (GetEnv ("stop_at_max_accum"), 0);
	    rqi.skip_dump = GetEnv ("skip_dump");
	    RankedQuery (qd, line, &rqi);
	    break;
	  }
	case QUERY_DOCNUMS:
	  {
	    DocnumsQuery (qd, line);
	    break;
	  }
	}

      GetTime (&InvfTime);

      /* [RPAP - Feb 97: Term Frequency] */
      if (qd->QTL && BooleanEnv (GetEnv ("term_freq"), 0))
	PrintQueryTermFreqs (qd->QTL);

      if (qd->DL)
	MoreDocs (qd, line, OutputType);

      GetTime (&TextTime);

      if (BooleanEnv (GetEnv ("timestats"), 0) ||
	  BooleanEnv (GetEnv ("briefstats"), 0))
	QueryTimeStats (&StartTime, &InvfTime, &TextTime);

      if (BooleanEnv (GetEnv ("diskstats"), 0) ||
	  BooleanEnv (GetEnv ("briefstats"), 0))
	File_Stats (qd);

      if (BooleanEnv (GetEnv ("memstats"), 0) ||
	  BooleanEnv (GetEnv ("briefstats"), 0))
	MemStats (qd);

      if (BooleanEnv (GetEnv ("sizestats"), 0))
	SizeStats (qd);

      TotalInvfTime.RealTime += InvfTime.RealTime - StartTime.RealTime;
      TotalInvfTime.CPUTime += InvfTime.CPUTime - StartTime.CPUTime;
      TotalTextTime.RealTime += TextTime.RealTime - StartTime.RealTime;
      TotalTextTime.CPUTime += TextTime.CPUTime - StartTime.CPUTime;
    }

  if (isatty (fileno (InFile)) && !Quitting)
    fprintf (stderr, "\n");

  shut_down_stats (qd, &TotalStartTime, &TotalInvfTime, &TotalTextTime);

  Display_Stats (stderr);

}


void 
search_for_collection (char *name)
{
/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
  char *dir = GetDefEnv ("mgdir", ".\\");
#else
  char *dir = GetDefEnv ("mgdir", "./");
#endif
  char buffer[512];
  struct stat stat_buf;
  if (strrchr (dir, '/') && *(strrchr (dir, '/') + 1) != '\0')
    {
/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
      sprintf (buffer, "%s", dir);
#else
      sprintf (buffer, "%s/", dir);
#endif
      SetEnv ("mgdir", buffer, NULL);
      dir = GetEnv ("mgdir");
    }

  sprintf (buffer, "%s.text", name);
  if (stat (buffer, &stat_buf) != -1)
    {
      if ((stat_buf.st_mode & S_IFREG) != 0)
	{
	  /* The name is a directory */
	  SetEnv ("mgname", name, NULL);
/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
          SetEnv ("mgdir", ".\\", NULL);
#else
	  SetEnv ("mgdir", "./", NULL);
#endif
	  return;
	}
    }

  sprintf (buffer, "%s%s", dir, name);
  if (stat (buffer, &stat_buf) != -1)
    {
      if ((stat_buf.st_mode & S_IFDIR) != 0)
	{
	  /* The name is a directory */
/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
          sprintf (buffer, "%s%s", name, name);
#else
	  sprintf (buffer, "%s/%s", name, name);
#endif
	  SetEnv ("mgname", buffer, NULL);
	  return;
	}
    }

  /* Look in the current directory last */
  if (stat (name, &stat_buf) != -1)
    {
      if ((stat_buf.st_mode & S_IFDIR) != 0)
	{
	  /* The name is a directory */
/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
          sprintf (buffer, "%s%s", name, name);
          SetEnv ("mgdir", ".\\", NULL);
#else
	  sprintf (buffer, "%s/%s", name, name);
          SetEnv ("mgdir", "./", NULL);
#endif
	  SetEnv ("mgname", buffer, NULL);
	  return;
	}
    }

  SetEnv ("mgname", name, NULL);
}

/* main () */
/* Initialises global variables based on command line switches, and opens */
/* files.  Then calls  query ()  to perform the querying. */
int main (int argc, char **argv)
{
  ProgTime StartTime;
  int decomp = 0;
  int ch;

  msg_prefix = argv[0];
  GetTime (&StartTime);

  /* Initialise the environment with default values */

  InitEnv ();

  read_mgrc_file ();

  OutFile = stdout;
  InFile = stdin;

  opterr = 0;
  /* [RJM 06/97: text filename] */
  while ((ch = getopt (argc, argv, "Df:d:t:h")) != -1) {
    switch (ch) {
      case 'f':
	SetEnv ("mgname", optarg, NULL);
	break;
      case 'd':
	SetEnv ("mgdir", optarg, NULL);
	break;
      case 't': /* [RJM 06/97: text filename] */
	SetEnv ("textname", optarg, NULL);
	break;
      case 'D':
	decomp = 1;
	break;
      case 'h':
      case '?':
	fprintf (stderr, "usage: %s [-D] [-f base name of collection] "
		 "[-t base name of files for text] " /* [RJM 06/97: text filename] */
		 "[-d data directory] [collection]\n", argv[0]);
	exit (1);
    }      
  }

  PushEnv ();

  if (decomp == 0)
    {

      Init_ReadLine ();

      /* write a first prompt, let the user start thinking */
      if (!BooleanEnv (GetEnv ("expert"), 0) && isatty (fileno (InFile)))
	{
	  fprintf (stderr, "\n\n\t     FULL TEXT RETRIEVAL QUERY PROGRAM\n");
	  fprintf (stderr, "%24s%s\n\n", "", *"21 Mar 1994" == '%' ? __DATE__ : "21 Mar 1994");
	  fprintf (stderr, "\n");
	  fprintf (stderr, "  mgquery version " VERSION ", Copyright (C) 1994 Neil Sharman\n");
	  fprintf (stderr, "  mgquery comes with ABSOLUTELY NO WARRANTY; for details type `.warranty'\n");
	  fprintf (stderr, "  This is free software, and you are welcome to redistribute it\n");
	  fprintf (stderr, "  under certain conditions; type `.conditions' for details.\n");
	  fprintf (stderr, "\n");
	}
    }
  if (optind < argc)
    search_for_collection (argv[optind]);

  if (decomp == 0)
    {
      query ();
    }
  else
    {
      int i;
      InitQueryTimes iqt;
      query_data *qd;

/* [RPAP - Feb 97: WIN32 Port] */
#ifdef __WIN32__
      qd = InitQuerySystem (GetDefEnv ("mgdir", ".\\"),
                            GetDefEnv ("mgname", ""),
                            GetDefEnv ("textname", NULL), /* [RJM 06/97: text filename] */
                            &iqt);
#else
      qd = InitQuerySystem (GetDefEnv ("mgdir", "./"),
			    GetDefEnv ("mgname", ""),
                            GetDefEnv ("textname", NULL), /* [RJM 06/97: text filename] */
			    &iqt);
#endif
      if (!qd)
	FatalError (1, mg_errorstrs[mg_errno], mg_error_data);


      start_up_stats (qd, iqt);

      Display_Stats (stderr);
      for (i = 0; i < qd->td->cth.num_of_docs; i++)
	{
	  RawDocOutput (qd, i + 1, stdout);
	  putc ('\2', stdout);
	}
      Message ("%s", ElapsedTime (&StartTime, NULL));

      FinishQuerySystem (qd);
    }

  UninitEnv ();
  return 0;
}
