blob: 5c99099de6f02bfbd4f35a76067bbd82031bcb97 [file] [log] [blame]
Jens Geyeraa0c8b32019-01-28 23:27:45 +01001// Licensed to the Apache Software Foundation(ASF) under one
2// or more contributor license agreements.See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership.The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License. You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied. See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18using System;
19using System.Collections.Generic;
Jens Geyeradde44b2019-02-05 01:00:02 +010020using System.Diagnostics;
Jens Geyeraa0c8b32019-01-28 23:27:45 +010021using System.IO;
22using System.Linq;
23using System.Security.Authentication;
24using System.Security.Cryptography.X509Certificates;
25using System.Text;
26using System.Threading;
27using System.Threading.Tasks;
28using Microsoft.Extensions.Logging;
29using Thrift;
30using Thrift.Collections;
31using Thrift.Processor;
32using Thrift.Protocol;
33using Thrift.Server;
34using Thrift.Transport;
35using Thrift.Transport.Server;
36
Jens Geyer828ffa82020-11-21 15:15:32 +010037#pragma warning disable IDE0063 // using can be simplified, we don't
38
Jens Geyeraa0c8b32019-01-28 23:27:45 +010039namespace ThriftTest
40{
Jens Geyeradde44b2019-02-05 01:00:02 +010041 internal enum ProtocolChoice
42 {
43 Binary,
44 Compact,
45 Json
46 }
47
Jens Geyeradde44b2019-02-05 01:00:02 +010048 internal enum TransportChoice
49 {
50 Socket,
51 TlsSocket,
52 NamedPipe
53 }
54
Kyle Smith7b94dd42019-03-23 17:26:56 +010055 internal enum BufferChoice
56 {
57 None,
58 Buffered,
59 Framed
60 }
61
Jens Geyeraa0c8b32019-01-28 23:27:45 +010062 internal class ServerParam
63 {
Kyle Smith7b94dd42019-03-23 17:26:56 +010064 internal BufferChoice buffering = BufferChoice.None;
Jens Geyeradde44b2019-02-05 01:00:02 +010065 internal ProtocolChoice protocol = ProtocolChoice.Binary;
66 internal TransportChoice transport = TransportChoice.Socket;
Jens Geyeraa0c8b32019-01-28 23:27:45 +010067 internal int port = 9090;
68 internal string pipe = null;
69
70 internal void Parse(List<string> args)
71 {
72 for (var i = 0; i < args.Count; i++)
73 {
74 if (args[i].StartsWith("--pipe="))
75 {
76 pipe = args[i].Substring(args[i].IndexOf("=") + 1);
Jens Geyeradde44b2019-02-05 01:00:02 +010077 transport = TransportChoice.NamedPipe;
Jens Geyeraa0c8b32019-01-28 23:27:45 +010078 }
79 else if (args[i].StartsWith("--port="))
80 {
81 port = int.Parse(args[i].Substring(args[i].IndexOf("=") + 1));
Jens Geyeradde44b2019-02-05 01:00:02 +010082 if(transport != TransportChoice.TlsSocket)
83 transport = TransportChoice.Socket;
Jens Geyeraa0c8b32019-01-28 23:27:45 +010084 }
85 else if (args[i] == "-b" || args[i] == "--buffered" || args[i] == "--transport=buffered")
86 {
Kyle Smith7b94dd42019-03-23 17:26:56 +010087 buffering = BufferChoice.Buffered;
Jens Geyeraa0c8b32019-01-28 23:27:45 +010088 }
89 else if (args[i] == "-f" || args[i] == "--framed" || args[i] == "--transport=framed")
90 {
Kyle Smith7b94dd42019-03-23 17:26:56 +010091 buffering = BufferChoice.Framed;
Jens Geyeraa0c8b32019-01-28 23:27:45 +010092 }
93 else if (args[i] == "--binary" || args[i] == "--protocol=binary")
94 {
Jens Geyeradde44b2019-02-05 01:00:02 +010095 protocol = ProtocolChoice.Binary;
Jens Geyeraa0c8b32019-01-28 23:27:45 +010096 }
97 else if (args[i] == "--compact" || args[i] == "--protocol=compact")
98 {
Jens Geyeradde44b2019-02-05 01:00:02 +010099 protocol = ProtocolChoice.Compact;
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100100 }
101 else if (args[i] == "--json" || args[i] == "--protocol=json")
102 {
Jens Geyeradde44b2019-02-05 01:00:02 +0100103 protocol = ProtocolChoice.Json;
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100104 }
105 else if (args[i] == "--threaded" || args[i] == "--server-type=threaded")
106 {
107 throw new NotImplementedException(args[i]);
108 }
109 else if (args[i] == "--threadpool" || args[i] == "--server-type=threadpool")
110 {
111 throw new NotImplementedException(args[i]);
112 }
113 else if (args[i] == "--prototype" || args[i] == "--processor=prototype")
114 {
115 throw new NotImplementedException(args[i]);
116 }
117 else if (args[i] == "--ssl")
118 {
Jens Geyeradde44b2019-02-05 01:00:02 +0100119 transport = TransportChoice.TlsSocket;
120 }
121 else if (args[i] == "--help")
122 {
123 PrintOptionsHelp();
124 return;
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100125 }
126 else
127 {
Jens Geyeradde44b2019-02-05 01:00:02 +0100128 Console.WriteLine("Invalid argument: {0}", args[i]);
129 PrintOptionsHelp();
130 return;
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100131 }
132 }
133
134 }
Jens Geyeradde44b2019-02-05 01:00:02 +0100135
136 internal static void PrintOptionsHelp()
137 {
138 Console.WriteLine("Server options:");
139 Console.WriteLine(" --pipe=<pipe name>");
140 Console.WriteLine(" --port=<port number>");
141 Console.WriteLine(" --transport=<transport name> one of buffered,framed (defaults to none)");
142 Console.WriteLine(" --protocol=<protocol name> one of compact,json (defaults to binary)");
143 Console.WriteLine(" --server-type=<type> one of threaded,threadpool (defaults to simple)");
144 Console.WriteLine(" --processor=<prototype>");
145 Console.WriteLine(" --ssl");
146 Console.WriteLine();
147 }
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100148 }
149
150 public class TestServer
151 {
152 public static int _clientID = -1;
Jens Geyereacd1d42019-11-20 19:03:14 +0100153 private static readonly TConfiguration Configuration = null; // or new TConfiguration() if needed
154
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100155 public delegate void TestLogDelegate(string msg, params object[] values);
156
157 public class MyServerEventHandler : TServerEventHandler
158 {
159 public int callCount = 0;
160
161 public Task PreServeAsync(CancellationToken cancellationToken)
162 {
163 callCount++;
164 return Task.CompletedTask;
165 }
166
167 public Task<object> CreateContextAsync(TProtocol input, TProtocol output, CancellationToken cancellationToken)
168 {
169 callCount++;
170 return Task.FromResult<object>(null);
171 }
172
173 public Task DeleteContextAsync(object serverContext, TProtocol input, TProtocol output, CancellationToken cancellationToken)
174 {
175 callCount++;
176 return Task.CompletedTask;
177 }
178
179 public Task ProcessContextAsync(object serverContext, TTransport transport, CancellationToken cancellationToken)
180 {
181 callCount++;
182 return Task.CompletedTask;
183 }
184 }
185
186 public class TestHandlerAsync : ThriftTest.IAsync
187 {
Jens Geyer261cad32019-11-20 19:03:14 +0100188 public TServer Server { get; set; }
189 private readonly int handlerID;
190 private readonly StringBuilder sb = new StringBuilder();
191 private readonly TestLogDelegate logger;
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100192
193 public TestHandlerAsync()
194 {
195 handlerID = Interlocked.Increment(ref _clientID);
Jens Geyer261cad32019-11-20 19:03:14 +0100196 logger += TestConsoleLogger;
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100197 logger.Invoke("New TestHandler instance created");
198 }
199
Jens Geyer261cad32019-11-20 19:03:14 +0100200 public void TestConsoleLogger(string msg, params object[] values)
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100201 {
202 sb.Clear();
203 sb.AppendFormat("handler{0:D3}:", handlerID);
204 sb.AppendFormat(msg, values);
205 sb.AppendLine();
206 Console.Write(sb.ToString());
207 }
208
209 public Task testVoidAsync(CancellationToken cancellationToken)
210 {
211 logger.Invoke("testVoid()");
212 return Task.CompletedTask;
213 }
214
215 public Task<string> testStringAsync(string thing, CancellationToken cancellationToken)
216 {
217 logger.Invoke("testString({0})", thing);
218 return Task.FromResult(thing);
219 }
220
221 public Task<bool> testBoolAsync(bool thing, CancellationToken cancellationToken)
222 {
223 logger.Invoke("testBool({0})", thing);
224 return Task.FromResult(thing);
225 }
226
227 public Task<sbyte> testByteAsync(sbyte thing, CancellationToken cancellationToken)
228 {
229 logger.Invoke("testByte({0})", thing);
230 return Task.FromResult(thing);
231 }
232
233 public Task<int> testI32Async(int thing, CancellationToken cancellationToken)
234 {
235 logger.Invoke("testI32({0})", thing);
236 return Task.FromResult(thing);
237 }
238
239 public Task<long> testI64Async(long thing, CancellationToken cancellationToken)
240 {
241 logger.Invoke("testI64({0})", thing);
242 return Task.FromResult(thing);
243 }
244
245 public Task<double> testDoubleAsync(double thing, CancellationToken cancellationToken)
246 {
247 logger.Invoke("testDouble({0})", thing);
248 return Task.FromResult(thing);
249 }
250
251 public Task<byte[]> testBinaryAsync(byte[] thing, CancellationToken cancellationToken)
252 {
Jens Geyerbd1a2732019-06-26 22:52:44 +0200253 logger.Invoke("testBinary({0} bytes)", thing.Length);
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100254 return Task.FromResult(thing);
255 }
256
257 public Task<Xtruct> testStructAsync(Xtruct thing, CancellationToken cancellationToken)
258 {
Jens Geyerffb97e12019-12-06 23:43:08 +0100259 logger.Invoke("testStruct({{\"{0}\", {1}, {2}, {3}}})", thing.String_thing, thing.Byte_thing, thing.I32_thing, thing.I64_thing);
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100260 return Task.FromResult(thing);
261 }
262
263 public Task<Xtruct2> testNestAsync(Xtruct2 nest, CancellationToken cancellationToken)
264 {
Jens Geyerffb97e12019-12-06 23:43:08 +0100265 var thing = nest.Struct_thing;
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100266 logger.Invoke("testNest({{{0}, {{\"{1}\", {2}, {3}, {4}, {5}}}}})",
Jens Geyerffb97e12019-12-06 23:43:08 +0100267 nest.Byte_thing,
268 thing.String_thing,
269 thing.Byte_thing,
270 thing.I32_thing,
271 thing.I64_thing,
272 nest.I32_thing);
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100273 return Task.FromResult(nest);
274 }
275
276 public Task<Dictionary<int, int>> testMapAsync(Dictionary<int, int> thing, CancellationToken cancellationToken)
277 {
278 sb.Clear();
279 sb.Append("testMap({{");
280 var first = true;
281 foreach (var key in thing.Keys)
282 {
283 if (first)
284 {
285 first = false;
286 }
287 else
288 {
289 sb.Append(", ");
290 }
291 sb.AppendFormat("{0} => {1}", key, thing[key]);
292 }
293 sb.Append("}})");
294 logger.Invoke(sb.ToString());
295 return Task.FromResult(thing);
296 }
297
298 public Task<Dictionary<string, string>> testStringMapAsync(Dictionary<string, string> thing, CancellationToken cancellationToken)
299 {
300 sb.Clear();
301 sb.Append("testStringMap({{");
302 var first = true;
303 foreach (var key in thing.Keys)
304 {
305 if (first)
306 {
307 first = false;
308 }
309 else
310 {
311 sb.Append(", ");
312 }
313 sb.AppendFormat("{0} => {1}", key, thing[key]);
314 }
315 sb.Append("}})");
316 logger.Invoke(sb.ToString());
317 return Task.FromResult(thing);
318 }
319
320 public Task<THashSet<int>> testSetAsync(THashSet<int> thing, CancellationToken cancellationToken)
321 {
322 sb.Clear();
323 sb.Append("testSet({{");
324 var first = true;
325 foreach (int elem in thing)
326 {
327 if (first)
328 {
329 first = false;
330 }
331 else
332 {
333 sb.Append(", ");
334 }
335 sb.AppendFormat("{0}", elem);
336 }
337 sb.Append("}})");
338 logger.Invoke(sb.ToString());
339 return Task.FromResult(thing);
340 }
341
342 public Task<List<int>> testListAsync(List<int> thing, CancellationToken cancellationToken)
343 {
344 sb.Clear();
345 sb.Append("testList({{");
346 var first = true;
347 foreach (var elem in thing)
348 {
349 if (first)
350 {
351 first = false;
352 }
353 else
354 {
355 sb.Append(", ");
356 }
357 sb.AppendFormat("{0}", elem);
358 }
359 sb.Append("}})");
360 logger.Invoke(sb.ToString());
361 return Task.FromResult(thing);
362 }
363
364 public Task<Numberz> testEnumAsync(Numberz thing, CancellationToken cancellationToken)
365 {
366 logger.Invoke("testEnum({0})", thing);
367 return Task.FromResult(thing);
368 }
369
370 public Task<long> testTypedefAsync(long thing, CancellationToken cancellationToken)
371 {
372 logger.Invoke("testTypedef({0})", thing);
373 return Task.FromResult(thing);
374 }
375
376 public Task<Dictionary<int, Dictionary<int, int>>> testMapMapAsync(int hello, CancellationToken cancellationToken)
377 {
378 logger.Invoke("testMapMap({0})", hello);
379 var mapmap = new Dictionary<int, Dictionary<int, int>>();
380
381 var pos = new Dictionary<int, int>();
382 var neg = new Dictionary<int, int>();
383 for (var i = 1; i < 5; i++)
384 {
385 pos[i] = i;
386 neg[-i] = -i;
387 }
388
389 mapmap[4] = pos;
390 mapmap[-4] = neg;
391
392 return Task.FromResult(mapmap);
393 }
394
395 public Task<Dictionary<long, Dictionary<Numberz, Insanity>>> testInsanityAsync(Insanity argument, CancellationToken cancellationToken)
396 {
397 logger.Invoke("testInsanity()");
398
399 /** from ThriftTest.thrift:
400 * So you think you've got this all worked, out eh?
401 *
402 * Creates a the returned map with these values and prints it out:
403 * { 1 => { 2 => argument,
404 * 3 => argument,
405 * },
406 * 2 => { 6 => <empty Insanity struct>, },
407 * }
408 * @return map<UserId, map<Numberz,Insanity>> - a map with the above values
409 */
410
411 var first_map = new Dictionary<Numberz, Insanity>();
412 var second_map = new Dictionary<Numberz, Insanity>(); ;
413
414 first_map[Numberz.TWO] = argument;
415 first_map[Numberz.THREE] = argument;
416
417 second_map[Numberz.SIX] = new Insanity();
418
419 var insane = new Dictionary<long, Dictionary<Numberz, Insanity>>
420 {
421 [1] = first_map,
422 [2] = second_map
423 };
424
425 return Task.FromResult(insane);
426 }
427
428 public Task<Xtruct> testMultiAsync(sbyte arg0, int arg1, long arg2, Dictionary<short, string> arg3, Numberz arg4, long arg5,
429 CancellationToken cancellationToken)
430 {
431 logger.Invoke("testMulti()");
432
433 var hello = new Xtruct(); ;
Jens Geyerffb97e12019-12-06 23:43:08 +0100434 hello.String_thing = "Hello2";
435 hello.Byte_thing = arg0;
436 hello.I32_thing = arg1;
437 hello.I64_thing = arg2;
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100438 return Task.FromResult(hello);
439 }
440
441 public Task testExceptionAsync(string arg, CancellationToken cancellationToken)
442 {
443 logger.Invoke("testException({0})", arg);
444 if (arg == "Xception")
445 {
446 var x = new Xception
447 {
448 ErrorCode = 1001,
449 Message = arg
450 };
451 throw x;
452 }
453 if (arg == "TException")
454 {
455 throw new TException();
456 }
457 return Task.CompletedTask;
458 }
459
460 public Task<Xtruct> testMultiExceptionAsync(string arg0, string arg1, CancellationToken cancellationToken)
461 {
462 logger.Invoke("testMultiException({0}, {1})", arg0, arg1);
463 if (arg0 == "Xception")
464 {
465 var x = new Xception
466 {
467 ErrorCode = 1001,
468 Message = "This is an Xception"
469 };
470 throw x;
471 }
472
473 if (arg0 == "Xception2")
474 {
475 var x = new Xception2
476 {
477 ErrorCode = 2002,
Jens Geyerffb97e12019-12-06 23:43:08 +0100478 Struct_thing = new Xtruct { String_thing = "This is an Xception2" }
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100479 };
480 throw x;
481 }
482
Jens Geyerffb97e12019-12-06 23:43:08 +0100483 var result = new Xtruct { String_thing = arg1 };
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100484 return Task.FromResult(result);
485 }
486
487 public Task testOnewayAsync(int secondsToSleep, CancellationToken cancellationToken)
488 {
489 logger.Invoke("testOneway({0}), sleeping...", secondsToSleep);
490 Task.Delay(secondsToSleep * 1000, cancellationToken).GetAwaiter().GetResult();
491 logger.Invoke("testOneway finished");
492
493 return Task.CompletedTask;
494 }
495 }
496
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100497
498 private static X509Certificate2 GetServerCert()
499 {
500 var serverCertName = "server.p12";
501 var possiblePaths = new List<string>
502 {
503 "../../../keys/",
504 "../../keys/",
505 "../keys/",
506 "keys/",
507 };
508
509 string existingPath = null;
510 foreach (var possiblePath in possiblePaths)
511 {
512 var path = Path.GetFullPath(possiblePath + serverCertName);
513 if (File.Exists(path))
514 {
515 existingPath = path;
516 break;
517 }
518 }
519
520 if (string.IsNullOrEmpty(existingPath))
521 {
522 throw new FileNotFoundException($"Cannot find file: {serverCertName}");
523 }
524
525 var cert = new X509Certificate2(existingPath, "thrift");
526
527 return cert;
528 }
529
530 public static int Execute(List<string> args)
531 {
Jens Geyer261cad32019-11-20 19:03:14 +0100532 using (var loggerFactory = new LoggerFactory()) //.AddConsole().AddDebug();
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100533 {
Jens Geyer261cad32019-11-20 19:03:14 +0100534 var logger = loggerFactory.CreateLogger("Test");
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100535
536 try
537 {
Jens Geyer261cad32019-11-20 19:03:14 +0100538 var param = new ServerParam();
539
540 try
541 {
542 param.Parse(args);
543 }
544 catch (Exception ex)
545 {
546 Console.WriteLine("*** FAILED ***");
547 Console.WriteLine("Error while parsing arguments");
548 Console.WriteLine(ex.Message + " ST: " + ex.StackTrace);
549 return 1;
550 }
551
552
553 // Endpoint transport (mandatory)
554 TServerTransport trans;
555 switch (param.transport)
556 {
557 case TransportChoice.NamedPipe:
558 Debug.Assert(param.pipe != null);
Jens Geyereacd1d42019-11-20 19:03:14 +0100559 trans = new TNamedPipeServerTransport(param.pipe, Configuration);
Jens Geyer261cad32019-11-20 19:03:14 +0100560 break;
561
562
563 case TransportChoice.TlsSocket:
564 var cert = GetServerCert();
565 if (cert == null || !cert.HasPrivateKey)
566 {
567 cert?.Dispose();
568 throw new InvalidOperationException("Certificate doesn't contain private key");
569 }
570
Jens Geyereacd1d42019-11-20 19:03:14 +0100571 trans = new TTlsServerSocketTransport(param.port, Configuration,
572 cert,
Jens Geyer261cad32019-11-20 19:03:14 +0100573 (sender, certificate, chain, errors) => true,
574 null, SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12);
575 break;
576
577 case TransportChoice.Socket:
578 default:
Jens Geyereacd1d42019-11-20 19:03:14 +0100579 trans = new TServerSocketTransport(param.port, Configuration);
Jens Geyer261cad32019-11-20 19:03:14 +0100580 break;
581 }
582
583 // Layered transport (mandatory)
584 TTransportFactory transFactory = null;
585 switch (param.buffering)
586 {
587 case BufferChoice.Framed:
588 transFactory = new TFramedTransport.Factory();
589 break;
590 case BufferChoice.Buffered:
591 transFactory = new TBufferedTransport.Factory();
592 break;
593 default:
594 Debug.Assert(param.buffering == BufferChoice.None, "unhandled case");
595 transFactory = null; // no layered transprt
596 break;
597 }
598
Jens Geyer828ffa82020-11-21 15:15:32 +0100599 TProtocolFactory proto = param.protocol switch
Jens Geyer261cad32019-11-20 19:03:14 +0100600 {
Jens Geyer828ffa82020-11-21 15:15:32 +0100601 ProtocolChoice.Compact => new TCompactProtocol.Factory(),
602 ProtocolChoice.Json => new TJsonProtocol.Factory(),
603 ProtocolChoice.Binary => new TBinaryProtocol.Factory(),
604 _ => new TBinaryProtocol.Factory(),
605 };
Jens Geyer261cad32019-11-20 19:03:14 +0100606
607 // Processor
608 var testHandler = new TestHandlerAsync();
609 var testProcessor = new ThriftTest.AsyncProcessor(testHandler);
610 var processorFactory = new TSingletonProcessorFactory(testProcessor);
611
612 TServer serverEngine = new TSimpleAsyncServer(processorFactory, trans, transFactory, transFactory, proto, proto, logger);
613
614 //Server event handler
615 var serverEvents = new MyServerEventHandler();
616 serverEngine.SetEventHandler(serverEvents);
617
618 // Run it
619 var where = (!string.IsNullOrEmpty(param.pipe)) ? "on pipe " + param.pipe : "on port " + param.port;
620 Console.WriteLine("Starting the AsyncBaseServer " + where +
621 " with processor TPrototypeProcessorFactory prototype factory " +
622 (param.buffering == BufferChoice.Buffered ? " with buffered transport" : "") +
623 (param.buffering == BufferChoice.Framed ? " with framed transport" : "") +
624 (param.transport == TransportChoice.TlsSocket ? " with encryption" : "") +
625 (param.protocol == ProtocolChoice.Compact ? " with compact protocol" : "") +
626 (param.protocol == ProtocolChoice.Json ? " with json protocol" : "") +
627 "...");
628 serverEngine.ServeAsync(CancellationToken.None).GetAwaiter().GetResult();
629 Console.ReadLine();
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100630 }
Jens Geyer261cad32019-11-20 19:03:14 +0100631 catch (Exception x)
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100632 {
Jens Geyer261cad32019-11-20 19:03:14 +0100633 Console.Error.Write(x);
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100634 return 1;
635 }
636
Jens Geyer261cad32019-11-20 19:03:14 +0100637 Console.WriteLine("done.");
638 return 0;
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100639 }
Jens Geyeraa0c8b32019-01-28 23:27:45 +0100640 }
641 }
642
643}