summaryrefslogtreecommitdiff
path: root/system/std.zusatz/1.7.3/src/printer-M
blob: 45b138145bf254337e004598a0ec7ce5fa692bd3 (plain)
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
PACKET multi user printer :

INT VAR printer channel ;

  put ("Druckerkanal:") ;
  get (printer channel) ;
  server channel (printer channel); 
 
  command dialogue (FALSE) ;
  spool manager (PROC printer) ;


LET ack = 0 ,
    fetch code = 11 ,
    file type = 1003 ;

INT VAR reply , old heap size ;

DATASPACE VAR ds ;

FILE VAR file ;

PROC printer :

  disable stop ;
  continue (server channel) ;
  IF is error
    THEN clear error ;
         end
  FI ;

  old heap size := heap size ;
  REP
    forget (ds) ;
    execute print ;
    IF is error AND online
      THEN put error
    FI ;
    clear error ;
    IF heap size > old heap size + 4
      THEN collect heap garbage ;
           old heap size := heap size
    FI
  PER 

ENDPROC printer ;

PROC execute print :

  enable stop ;
  REP
    ds := nilspace ;
    call (father, fetch code, ds, reply) ;
    IF reply = ack CAND type (ds) = file type
      THEN print file
    FI ;
    forget (ds)
  PER .

print file :
  file := sequential file (input, ds) ;
  IF is elan source (file)
    THEN elan list (file)
    ELSE print (file)
  FI .

ENDPROC execute print ;

ENDPACKET multi user printer ;