This file is indexed.

/usr/share/mozart/doc/op/OpenProgramming.oz is in mozart-doc 1.4.0-8ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
%%%
%%% Chapter: Data Structures
%%%

%%
%% Strings
%%

declare
S="C@l!3E4aN#61!"

{Browse {String.toAtom {Filter S Char.isAlpha}}}

{Browse {Filter S Char.isAlpha}}


%%
%% Virtual Strings
%%

{Browse 12#(2#fast#4#"U")#~3.1415}

{Browse {VirtualString.changeSign 12#(2#fast#4#"U")#~3.1415 '~'}}



%%%
%%% Chapter: Files
%%%

%%
%% Reading a file
%%

%% The following five lines produce the file, you will need to
%% try the subsequent examples. Feed them on the OPI:
%% Afterwards it becomes clear what they do.
local
   F={New Open.file init(name:  'a.txt'
                         flags: [write create truncate])}
in
   {F write(vs:"HelloHelloOz is beautiful")}
   {F close}
end
%% Stop feeding here!

declare
F={New Open.file init(name:'a.txt' flags:[read])}

{F read(list:{Browse} size:5)}

{F read(list:{Browse} size:all)}

{F seek(whence:set offset:7)}
{F read(list:{Browse} size:5)}

{F tell(offset:{Browse})}

{F close}


%%
%% Writing a file
%%

declare
F={New Open.file 
       init(name:  'ours.txt'
            flags: [write create]
            mode:  mode(owner: [read write] 
                        group: [read write]))}

{F write(vs:'Go ahead!')}

{F write(vs:"Go ahead!")}

{F write(vs:"This is "#1#' And '#
            ("now a float: "#2.0)#"\n")}

{F close}


%%
%% Exceptions
%%

try
   _={New Open.file init(name:'not-existing')}
catch system(os(A W I S) ...) then
   {Browse os(category:    A
              what:        W
              number:      I
              description: S)}
end


%%
%% Example: Expanding TAB Characters
%%

declare
local
   fun {Insert N Is}
      if N>0 then {Insert N-1 & |Is} else Is end
   end
   fun {Scan Is Tab N}
      case Is of nil then nil
      [] I|Ir then
         case I 
         of &\t then M=Tab-(N mod Tab) in {Insert M {Scan Ir Tab M+N}}
         [] &\n then I|{Scan Ir Tab 0}
         [] &\b then I|{Scan Ir Tab {Max 0 N-1}}
         else I|{Scan Ir Tab N+1}
         end
      end
   end
in
   proc {Expand Tab IN ON}
      IF={New Open.file init(name:IN)} 
      OF={New Open.file init(name:ON flags:[write create truncate])}
      Is
   in
      {IF read(list:Is size:all)}    {IF close}
      {OF write(vs:{Scan Is Tab 0})} {OF close}
   end
end




%%%
%%% Chapter: Input and Output of Text
%%%

%%
%% Expanding TAB Characters Revisited
%%

declare
local 
   fun {Insert N Is}
      if N>0 then {Insert N-1 & |Is} else Is end
   end
   fun {ScanLine Is Tab N}
      case Is of nil then nil
      [] I|Ir then
         case I 
         of &\t then M=Tab-(N mod Tab) in {Insert M {ScanLine Ir Tab M+N}}
         [] &\b then I|{ScanLine Ir Tab {Max 0 N-1}}
         else I|{ScanLine Ir Tab N+1}
         end
      end
   end
   proc {Scan Tab IF OF}
      Is={IF getS($)} 
   in
      if Is==false then 
         {IF close} {OF close}
      else
         {OF putS({ScanLine Is Tab 0})}
         {Scan Tab IF OF}
      end
   end
   class TextFile 
      from Open.file Open.text 
   end
in
   proc {Expand Tab IN ON}
      {Scan Tab 
       {New TextFile init(name:IN)}
       {New TextFile init(name:  ON 
                          flags: [write create truncate])}}
   end
end





%%%
%%% Chapter: Sockets
%%%

%%
%% Stream Sockets
%%


%% Initiating a Connection
declare
Server = {New Open.socket init}

{Server bind(port:{Browse})}

{Server listen}

declare H P in
{Browse H#": "#P}
{Server accept(host:H port:P)}

declare
Client = {New Open.socket init}

%% 
%% YOU HAVE TO ENTER THE PORT NUMBER: OurPort
%%
declare
OurPort = ????
{Client connect(host:localhost port:OurPort)}


%% Exchanging Data
{Server read(list:{Browse})}

{Client write(vs:'Hello, good'#" old Server!")}


%% Disconnecting
{Server close}
{Client close}



%%
%% Accepting Multiple Connections
%%

declare
S={New Open.socket init}
P={S bind(port:$)}
{S listen}

declare
class Accepted from Open.socket
   meth report(H P)
      {Browse read(host:H port:P read:{self read(list:$)})}
      {self report(H P)}
   end
end

proc {Accept}
   H P A
in
   {S accept(acceptClass:Accepted
             host:?H port:?P accepted:?A)}
   thread 
      {A report(H P)} 
   end
   {Accept}
end

{Accept}

declare
C1={New Open.socket client(port:P)} 
C2={New Open.socket client(port:P)}

declare
{C1 write(vs:'hello from C1')}



%%
%% Datagram Sockets
%%

declare
S={New Open.socket init(type:datagram)}
T={New Open.socket init(type:datagram)}

declare
SPN={S bind(port:$)}
TPN={T bind(port:$)}

{S send(vs:'really '#"great" port:TPN)}

declare Is P
{T receive(list:?Is port:?P)}
{Browse Is#' from: '#P}



%%
%% Example: Are We Working Right Now?
%%

declare
FingerPort={OS.getServByName finger tcp}

declare
class FingerClient from Open.socket
   meth getInfo($)
      Is Ir 
   in
      if {self read(list:Is tail:Ir len:$)}==0 then nil
      else {self getInfo(Ir)} Is
      end
   end
end
FC = {New FingerClient client(host:'wallaby.ps.uni-sb.de' 
                              port:FingerPort)}

{FC write(vs:'schulte\n')}
{Browse {FC getInfo($)}}



%%%
%%% Chapter: Running Processes
%%%


declare
class Shell from Open.pipe Open.text
   meth init
      Open.pipe,init(cmd:"sh" args:["-s"]) 
   end
   meth cmd(Cmd) 
      Open.text,putS(Cmd) 
   end
   meth show
      case Open.text,getS($) of false then
         {Browse 'Shell has died.'} {self close}
      elseof S then {Browse S}
      end
   end
end

declare
S={New Shell init}

{S cmd(cd)}
{S cmd(ls)}

{S show}

{S close}