void Classify::ReadNewCutoffs(FILE *CutoffFile, inT64 end_offset,
                              CLASS_CUTOFF_ARRAY Cutoffs) {
/*
 **	Parameters:
 **		Filename	name of file containing cutoff definitions
 **		Cutoffs		array to put cutoffs into
 **	Globals: none
 **	Operation: Open Filename, read in all of the class-id/cutoff pairs
 **		and insert them into the Cutoffs array.  Cutoffs are
 **		indexed in the array by class id.  Unused entries in the
 **		array are set to an arbitrarily high cutoff value.
 **	Return: none
 **	Exceptions: none
 **	History: Wed Feb 20 09:38:26 1991, DSJ, Created.
 */
  char Class[UNICHAR_LEN + 1];
  CLASS_ID ClassId;
  int Cutoff;
  int i;

  for (i = 0; i < MAX_NUM_CLASSES; i++)
    Cutoffs[i] = MAX_CUTOFF;

  while ((end_offset < 0 || ftell(CutoffFile) < end_offset) &&
         fscanf(CutoffFile, "%" REALLY_QUOTE_IT(UNICHAR_LEN) "s %d",
                 Class, &Cutoff) == 2) {
    if (strcmp(Class, "NULL") == 0) {
      ClassId = unicharset.unichar_to_id(" ");
    } else {
      ClassId = unicharset.unichar_to_id(Class);
    }
    Cutoffs[ClassId] = Cutoff;
    SkipNewline(CutoffFile);
  }
}                                /* ReadNewCutoffs */
Ejemplo n.º 2
0
/**
 * Open Filename, read in all of the class-id/cutoff pairs
 * and insert them into the Cutoffs array.  Cutoffs are
 * indexed in the array by class id.  Unused entries in the
 * array are set to an arbitrarily high cutoff value.
 * @param CutoffFile name of file containing cutoff definitions
 * @param Cutoffs array to put cutoffs into
 * @param swap
 * @param end_offset
 * @return none
 * @note Globals: none
 * @note Exceptions: none
 * @note History: Wed Feb 20 09:38:26 1991, DSJ, Created.
 */
    void Classify::ReadNewCutoffs(FILE *CutoffFile, bool swap, inT64 end_offset,
                                  CLASS_CUTOFF_ARRAY Cutoffs) {
        char Class[UNICHAR_LEN + 1];
        CLASS_ID ClassId;
        int Cutoff;
        int i;

        if (shape_table_ != NULL) {
            if (!shapetable_cutoffs_.DeSerialize(swap, CutoffFile)) {
                tprintf("Error during read of shapetable pffmtable!\n");
            }
        }
        for (i = 0; i < MAX_NUM_CLASSES; i++)
            Cutoffs[i] = MAX_CUTOFF;

        while ((end_offset < 0 || ftell(CutoffFile) < end_offset) &&
               tfscanf(CutoffFile, "%"
            REALLY_QUOTE_IT(UNICHAR_LEN)
        "s %d",
                Class, &Cutoff) == 2) {
            if (strcmp(Class, "NULL") == 0) {
                ClassId = unicharset.unichar_to_id(" ");
            } else {
                ClassId = unicharset.unichar_to_id(Class);
            }
            Cutoffs[ClassId] = Cutoff;
            SkipNewline(CutoffFile);
        }
    }
Ejemplo n.º 3
0
/*---------------------------------------------------------------------------*/
void ReadNewCutoffs(const char *Filename,
                    CLASS_TO_INDEX ClassMapper,
                    CLASS_CUTOFF_ARRAY Cutoffs) {
/*
 **	Parameters:
 **		Filename	name of file containing cutoff definitions
 **             ClassMapper     array which maps class id's to class indexes
 **		Cutoffs		array to put cutoffs into
 **	Globals: none
 **	Operation: Open Filename, read in all of the class-id/cutoff pairs
 **		and insert them into the Cutoffs array.  Cutoffs are
 **		inserted in the array so that the array is indexed by
 **		class index rather than class id.  Unused entries in the
 **		array are set to an arbitrarily high cutoff value.
 **	Return: none
 **	Exceptions: none
 **	History: Wed Feb 20 09:38:26 1991, DSJ, Created.
 */
  FILE *CutoffFile;
  char Class[UNICHAR_LEN + 1];
  CLASS_ID ClassId;
  int Cutoff;
  int i;

  CutoffFile = Efopen (Filename, "r");

  for (i = 0; i < MAX_NUM_CLASSES; i++)
    Cutoffs[i] = MAX_CUTOFF;

  while (fscanf (CutoffFile, "%" REALLY_QUOTE_IT(UNICHAR_LEN) "s %d",
                 Class, &Cutoff) == 2) {
    ClassId = unicharset.unichar_to_id(Class);
    Cutoffs[ClassMapper[ClassId]] = Cutoff;
  }
  fclose(CutoffFile);

}                                /* ReadNewCutoffs */