File: parsei.h

package info (click to toggle)
dadadodo 1.04-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 160 kB
  • ctags: 191
  • sloc: ansic: 2,443; makefile: 150; sh: 118
file content (71 lines) | stat: -rw-r--r-- 1,767 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* parsei.h --- generating a markov chain.
 * DadaDodo, Copyright (c) 1997, 2003 Jamie Zawinski <jwz@jwz.org>
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation.  No representations are made about the suitability of this
 * software for any purpose.  It is provided "as is" without express or 
 * implied warranty.
 */

#ifndef __DADADODO_PARSEI_H__
#define __DADADODO_PARSEI_H__

typedef struct pword_link pword_link;

/* A larger version of `struct word' that contains data needed at parse-time
   but not at generate-time. */
struct pword {
  int id;
  const unsigned char *string;
  int count;
  int start;
  int cap;
  int comma;
  int period;
  int quem;
  int bang;
  pword_link *succ, *pred;
  int succ_length, pred_length;
  int succ_size, pred_size;
};

struct pword_link {
  int count;
  pword *word;
};


/* allocation pools. */

typedef struct pword_pool pword_pool;
typedef struct string_pool string_pool;


#define PWORD_POOL_SIZE  (500*1024)
#define STRING_POOL_SIZE (500*1024)
#define PWORD_POOL_COUNT ((PWORD_POOL_SIZE - (sizeof(void *)*4))/sizeof(pword))
#define STRING_POOL_COUNT (STRING_POOL_SIZE - (sizeof (void *) * 4))

struct pword_pool {
  pword pwords [PWORD_POOL_COUNT];
  int fp;
  pword_pool *next;
};

struct string_pool {
  unsigned char chars[STRING_POOL_COUNT];
  int fp;
  string_pool *next;
};

extern pword_pool *wpool;
extern string_pool *spool;

extern word *all_words;
extern unsigned char **all_strings;
extern int *starters;

#endif /* __DADADODO_PARSEI_H__ */