summaryrefslogtreecommitdiff
path: root/test/persistence_client_library_benchmark.c
blob: 579a073381eb003c75111ccd2305f22c0a699a1b (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
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
/******************************************************************************
 * Project         Persistency
 * (c) copyright   2014
 * Company         XS Embedded GmbH
 *****************************************************************************/
/******************************************************************************
 * This Source Code Form is subject to the terms of the
 * Mozilla Public License, v. 2.0. If a  copy of the MPL was not distributed
 * with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
******************************************************************************/
 /**
 * @file           persistence_client_library_benchmark.c
 * @ingroup        Persistence client library benchmark
 * @author         Ingo Huerner
 * @brief          Benchmark of persistence client library
 * @see
 */

#include "../include/persistence_client_library_key.h"
#include "../include/persistence_client_library_file.h"
#include "../include/persistence_client_library_error_def.h"

#include <stdio.h>
#include <string.h>
#include <stdlib.h>     /* atoi */

#include <dlt.h>
#include <dlt_common.h>

#include <sys/time.h>
#include <sys/resource.h>
#include <pthread.h>


#define SECONDS2NANO 1000000000L
#define NANO2MIL        1000000L
#define MIL2SEC            1000L

#define BUFFER_SIZE  2048

// define for the used clock: "CLOCK_MONOTONIC" or "CLOCK_REALTIME"
#define CLOCK_ID  CLOCK_MONOTONIC

const char* gAppName = "lt-persistence_client_library_test";

extern const char* gWriteBuffer;
extern const char* gWriteBuffer2;


double gDurationMsWrite = 0, gSizeMbWrite = 0;
double gAverageBytesWrite = 0, gAverageTimeWrite = 0;
double gAverageBytesWriteSecond = 0, gAverageTimeWriteSecond = 0;
double gDurationRead = 0, gSizeRead = 0;
double gDurationReadSecond = 0, gSizeReadSecond = 0;
double gDurationInit = 0, gDurationDeinit = 0;


inline long long getNsDuration(struct timespec* start, struct timespec* end)
{
   return ((end->tv_sec * SECONDS2NANO) + end->tv_nsec) - ((start->tv_sec * SECONDS2NANO) + start->tv_nsec);
}


inline long getMsDuration(struct timespec* start, struct timespec* end)
{
   return (((end->tv_sec * SECONDS2NANO) + end->tv_nsec) - ((start->tv_sec * SECONDS2NANO) + start->tv_nsec))/NANO2MIL;
}



void init_benchmark(int numLoops)
{
   int i = 0;
   long long durationInit = 0;
   long long durationDeInit = 0;
   struct timespec initStart, initEnd;
   struct timespec deInitStart, deInitEnd;
   int shutdownReg = PCL_SHUTDOWN_TYPE_FAST | PCL_SHUTDOWN_TYPE_NORMAL;

   for(i=0; i<numLoops; i++)
   {
      // init
      clock_gettime(CLOCK_ID, &initStart);
      (void)pclInitLibrary(gAppName , shutdownReg);
      clock_gettime(CLOCK_ID, &initEnd);
      durationInit += getNsDuration(&initStart, &initEnd);

      // deinit
      clock_gettime(CLOCK_ID, &deInitStart);
      (void)pclDeinitLibrary();
      clock_gettime(CLOCK_ID, &deInitEnd);
      durationDeInit += getNsDuration(&deInitStart, &deInitEnd);
   }

   gDurationInit = (double)durationInit/(double)numLoops/(double)NANO2MIL;
   gDurationDeinit = (double)durationDeInit/(double)numLoops/(double)NANO2MIL;
}



void read_benchmark(int numLoops)
{
   int ret = 0, i = 0;
   long long duration = 0;
   long  size = 0;
   struct timespec readStart, readEnd;
   char key[128] = { 0 };
   unsigned char buffer[7168] = {0};   // 7kB
   int shutdownReg = PCL_SHUTDOWN_TYPE_NONE;

   (void)pclInitLibrary(gAppName , shutdownReg);

   //
   // populate data
   //
   for(i=0; i<numLoops; i++)
   {
      memset(key, 0, 128);
      snprintf(key, 128, "pos/last_position_w_bench%d",i);

      if(i%2)
      {
         ret = pclKeyWriteData(PCL_LDBID_LOCAL, key, 10, 10, (unsigned char*)gWriteBuffer, (int)strlen(gWriteBuffer) );
      }
      else
      {
         ret = pclKeyWriteData(PCL_LDBID_LOCAL, key, 10, 10, (unsigned char*)gWriteBuffer2, (int)strlen(gWriteBuffer2) );
      }
   }
   pclLifecycleSet(PCL_SHUTDOWN);
   (void)pclDeinitLibrary();


   //
   // read data
   //
   (void)pclInitLibrary(gAppName , shutdownReg);

   duration = 0;
   memset(buffer, 0, 7168);
   size = 0;

   for(i=0; i<numLoops; i++)
   {
      memset(key, 0, 128);

      snprintf(key, 128, "pos/last_position_w_bench%d",i);

      clock_gettime(CLOCK_ID, &readStart);
      ret = pclKeyReadData(PCL_LDBID_LOCAL, key, 10, 10, buffer, 7168);
      clock_gettime(CLOCK_ID, &readEnd);

      size += ret;
      duration += getNsDuration(&readStart, &readEnd);

      memset(buffer, 0, 7168);
   }

   pclLifecycleSet(PCL_SHUTDOWN);
   (void)pclDeinitLibrary();

   gDurationRead = (double)duration/(double)numLoops;
   gSizeRead     = (double)size/(double)numLoops/(double)1024;
}


void write_benchmark(int numLoops)
{
   int ret = 0, i = 0;
   long long duration = 0,  size = 0;
   struct timespec readStart, readEnd;
   char key[128] = { 0 };
   unsigned char buffer[7168] = {0};   // 7kB

   int shutdownReg = PCL_SHUTDOWN_TYPE_NONE;

   (void)pclInitLibrary(gAppName , shutdownReg);

   duration = 0;
   memset(buffer, 0, 7168);
   size = 0;

   // write the first time to the data
   for(i=0; i <numLoops; i++)
   {
      memset(key, 0, 128);
      snprintf(key, 128, "pos/last_position_w_bench%d",i);

      if(i%2)
      {
         clock_gettime(CLOCK_ID, &readStart);
         ret = pclKeyWriteData(PCL_LDBID_LOCAL, key, 20, 20, (unsigned char*)gWriteBuffer, (int)strlen(gWriteBuffer) );
         clock_gettime(CLOCK_ID, &readEnd);
      }
      else
      {
         clock_gettime(CLOCK_ID, &readStart);
         ret = pclKeyWriteData(PCL_LDBID_LOCAL, key, 20, 20, (unsigned char*)gWriteBuffer2, (int)strlen(gWriteBuffer2));
         clock_gettime(CLOCK_ID, &readEnd);
      }

      size += ret;
      duration += getNsDuration(&readStart, &readEnd);

      memset(buffer, 0, 7168);
   }
   gAverageBytesWrite = (double)size/(double)numLoops/(double)1024;
   gAverageTimeWrite = (double)duration/(double)numLoops;


   // write the second time to the data
   duration = 0;
   size = 0;
   for(i=0; i <numLoops; i++)
   {
      memset(key, 0, 128);
      snprintf(key, 128, "pos/last_position_w_bench%d",i);

      if(i%2)
      {
         clock_gettime(CLOCK_ID, &readStart);
         ret = pclKeyWriteData(PCL_LDBID_LOCAL, key, 20, 20, (unsigned char*)gWriteBuffer2, (int)strlen(gWriteBuffer2) );
         clock_gettime(CLOCK_ID, &readEnd);
      }
      else
      {
         clock_gettime(CLOCK_ID, &readStart);
         ret = pclKeyWriteData(PCL_LDBID_LOCAL, key, 20, 20, (unsigned char*)gWriteBuffer, (int)strlen(gWriteBuffer));
         clock_gettime(CLOCK_ID, &readEnd);
      }

      size += ret;
      duration += getNsDuration(&readStart, &readEnd);

      memset(buffer, 0, 7168);
   }
   gAverageBytesWriteSecond = (double)size/(double)numLoops/(double)1024;
   gAverageTimeWriteSecond = (double)duration/(double)numLoops;


   // measure the write back time
   duration = 0;

   clock_gettime(CLOCK_ID, &readStart);
   pclLifecycleSet(PCL_SHUTDOWN);
   clock_gettime(CLOCK_ID, &readEnd);

   duration = getNsDuration(&readStart, &readEnd);
   gDurationMsWrite = (double)duration/(double)NANO2MIL;
                                 //  B to kB  -  kB to MB
   gSizeMbWrite     = (double)size/(double)1024/(double)1024;


   (void)pclDeinitLibrary();
}



void printAppManual()
{
   printf("\n\n==================================================================================\n");
   printf("NAME\n");
   printf("   ./persistence_client_library_benchmark - run PCL benchmarks");

   printf("\nSYNOPSIS\n");
   printf("   persistence_client_library_benchmark [-l loop] [-irwh]\n");

   printf("\nDESCRIPTION\n");
   printf("   Run persistence client library benchmarks.\n");
   printf("   If no option is passed, all benchmarks are run with default (1024) number of loops.\n");

   printf("\nOPTIONS\n");
   printf("   -l   number of loops for each test (init benchmark is bound to 10 loops)\n");
   printf("   -i   Run init/deinit benchmarks\n");
   printf("   -r   Run read benchmarks\n");
   printf("   -w   Run write benchmarks\n");
   printf("   -h   Display this help\n");
   printf("==================================================================================\n");
}



int main(int argc, char *argv[])
{
   int ret = 0;

   int numLoops = 1024;          // number of default loops
   long long resolution = 0;

   struct timespec clockRes;

   int opt = 0, doInit = 0, doRead = 0, doWrite = 0, printManual = 0;

   const char* envVariable = "PERS_CLIENT_LIB_CUSTOM_LOAD";

   setenv(envVariable, "/etc/pclCustomLibConfigFileTest.cfg", 1);

   if(argc <= 1)
   {
      // if no parameter, run all tests with default loops
      doInit  = 1;
      doRead  = 1;
      doWrite = 1;
      printManual = 1;
   }


   while ((opt = getopt(argc, argv, "l:irwh")) != -1)
   {
      switch (opt)
      {
         case 'l':
            numLoops = atoi(optarg);
            break;
         case 'i':
            doInit = 1;
            break;
         case 'r':
            doRead = 1;
            break;
         case 'w':
            doWrite = 1;
            break;
         case 'h':
            printManual = 1;
         break;
        }
    }

   /// debug log and trace (DLT) setup
   DLT_REGISTER_APP("PCLb","tests the persistence client library");

   clock_getres(CLOCK_ID, &clockRes);
   resolution = ((clockRes.tv_sec * SECONDS2NANO) + clockRes.tv_nsec);

   //
   // run benchmarks
   //

   if(doInit == 1)
      init_benchmark(10); // static number of loops, otherwise it takes to long

   if(doRead == 1)
      read_benchmark(numLoops);

   if(doWrite == 1)
      write_benchmark(numLoops);


   if(printManual == 1)
   {
      printAppManual();
   }

   printf("\n\n==================================================================================\n");
   printf("  PCL benchmark - num loop: %d - clock resolution: %f\n", numLoops, (double)((double)resolution));
   printf("==================================================================================\n");
   if(doInit == 1)
   {
      printf("Init benchmark\n");
      printf("  Init      => %.2f ms \n", gDurationInit);
      printf("  Deinit    => %.2f ms \n", gDurationDeinit);
   }
   else
   {
      printf("Init benchmark - not activated.\n");
   }
   printf("==================================================================================\n");
   if(doRead == 1)
   {
      printf("Read benchmark\n");
      printf("  Read      => %.0f ns for \t [%.2f Kilobytes item]\n", gDurationRead, gSizeRead);
      printf("  Read      => %.0f ns for \t [1 Kilobyte item]\n", (double)gDurationRead/(double)gSizeRead);
   }
   else
   {
      printf("Read benchmark - not activated.\n");
   }
   printf("==================================================================================\n");
   if(doWrite == 1)
   {
      printf("Write benchmark\n");
      printf("  Write 1.  => %.0f ns for \t [%.2f Kilobytes item]\n", gAverageTimeWrite, gAverageBytesWrite);
      printf("  Write 2.  => %.0f ns for \t [%.2f Kilobytes item]\n", gAverageTimeWriteSecond, gAverageBytesWriteSecond);
      printf("  Write 1.  => %.0f ns for \t [1 Kilobyte item]\n",    gAverageTimeWrite/gAverageBytesWrite);
      printf("  Write 2.  => %.0f ns for \t [1 Kilobyte item]\n",    gAverageTimeWriteSecond/gAverageBytesWriteSecond);
      printf("  Writeback => %.3f ms for \t [%.2f Megabytes item]\n", gDurationMsWrite, gSizeMbWrite);
      printf("  Writeback => %.3f ms for \t [1 Megabyte item]\n", (double)gDurationMsWrite/(double)gSizeMbWrite);

      printf("Explanation:\n");
      printf("  Writing the first time (1.) to an item takes more time.\n");
      printf("  As we use the copy an write procedure, we create an entry for this item \n");
      printf("  in the cache and are writing then to the cache.\n");
      printf("  Further writes (2.) are faster.\n");
      printf("  When the database will be close, all modified items will be written back\n");
      printf("  to non-volatile memory device.\n");
   }
   else
   {
      printf("Write benchmark - not activated.\n");
   }
   printf("==================================================================================\n");

   // unregister debug log and trace
   DLT_UNREGISTER_APP();

   dlt_free();

   return ret;
}



const char* gWriteBuffer =
   "---------> F I R S T write buffer starting block "
   "Pack my box with five dozen liquor jugs. - "
   "Jackdaws love my big sphinx of quartz. - "
   "The five boxing wizards jump quickly. - "
   "How vexingly quick daft zebras jump! - "
   "Bright vixens jump; dozy fowl quack - "
   "Sphinx of black quartz, judge my vow"
   "Voyez le brick géant que j’examine près du wha"
   "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
   "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
   "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
   "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
   "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
   "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
   "Pack my box with five dozen liquor jugs. - "
   "Jackdaws love my big sphinx of quartz. - "
   "The five boxing wizards jump quickly. - "
   "How vexingly quick daft zebras jump! - "
   "Bright vixens jump; dozy fowl quack - "
   "Sphinx of black quartz, judge my vow"
   "Voyez le brick géant que j’examine près du wha"
   "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
   "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
   "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
   "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
   "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
   "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
   "Pack my box with five dozen liquor jugs. - "
   "Jackdaws love my big sphinx of quartz. - "
   "The five boxing wizards jump quickly. - "
   "How vexingly quick daft zebras jump! - "
   "Bright vixens jump; dozy fowl quack - "
   "Sphinx of black quartz, judge my vow"
   "Voyez le brick géant que j’examine près du wha"
   "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
   "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
   "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
   "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
   "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
   "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
   "Pack my box with five dozen liquor jugs. - "
   "Jackdaws love my big sphinx of quartz. - "
   "The five boxing wizards jump quickly. - "
   "How vexingly quick daft zebras jump! - "
   "Bright vixens jump; dozy fowl quack - "
   "Sphinx of black quartz, judge my vow"
   "Voyez le brick géant que j’examine près du wha"
   "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
   "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
   "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
   "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
   "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
   "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste""Pack my box with five dozen liquor jugs. - "
   "Jackdaws love my big sphinx of quartz. - "
   "The five boxing wizards jump quickly. - "
   "How vexingly quick daft zebras jump! - "
   "Bright vixens jump; dozy fowl quack - "
   "Sphinx of black quartz, judge my vow"
   "Voyez le brick géant que j’examine près du wha"
   "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
   "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
   "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
   "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
   "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
   "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
   "Pack my box with five dozen liquor jugs. - "
   "Jackdaws love my big sphinx of quartz. - "
   "The five boxing wizards jump quickly. - "
   "How vexingly quick daft zebras jump! - "
   "Bright vixens jump; dozy fowl quack - "
   "Sphinx of black quartz, judge my vow"
   "Voyez le brick géant que j’examine près du wha"
   "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
   "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
   "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
   "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
   "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
   "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
   "Pack my box with five dozen liquor jugs. - "
   "Jackdaws love my big sphinx of quartz. - "
   "The five boxing wizards jump quickly. - "
   "How vexingly quick daft zebras jump! - "
   "Bright vixens jump; dozy fowl quack - "
   "Sphinx of black quartz, judge my vow"
   "Voyez le brick géant que j’examine près du wha"
   "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
   "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
   "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
   "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
   "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
   "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
   "Pack my box with five dozen liquor jugs. - "
   "Jackdaws love my big sphinx of quartz. - "
   "The five boxing wizards jump quickly. - "
   "How vexingly quick daft zebras jump! - "
   "Bright vixens jump; dozy fowl quack - "
   "Sphinx of black quartz, judge my vow"
   "Voyez le brick géant que j’examine près du wha"
   "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
   "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
   "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
   "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
   "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
   "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
   "F I R S T  write buffer ending block <---------";

const char* gWriteBuffer2 =
      "---------> S E C O N D  write buffer starting block "
      "Pack my box with five dozen liquor jugs. - "
      "Jackdaws love my big sphinx of quartz. - "
      "The five boxing wizards jump quickly. - "
      "How vexingly quick daft zebras jump! - "
      "Bright vixens jump; dozy fowl quack - "
      "Sphinx of black quartz, judge my vow"
      "Voyez le brick géant que j’examine près du wha"
      "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
      "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
      "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
      "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
      "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
      "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
      "Pack my box with five dozen liquor jugs. - "
      "Jackdaws love my big sphinx of quartz. - "
      "The five boxing wizards jump quickly. - "
      "How vexingly quick daft zebras jump! - "
      "Bright vixens jump; dozy fowl quack - "
      "Sphinx of black quartz, judge my vow"
      "Voyez le brick géant que j’examine près du wha"
      "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
      "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
      "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
      "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
      "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
      "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
      "Pack my box with five dozen liquor jugs. - "
      "Jackdaws love my big sphinx of quartz. - "
      "The five boxing wizards jump quickly. - "
      "How vexingly quick daft zebras jump! - "
      "Bright vixens jump; dozy fowl quack - "
      "Sphinx of black quartz, judge my vow"
      "Voyez le brick géant que j’examine près du wha"
      "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
      "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
      "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
      "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
      "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
      "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
      "Pack my box with five dozen liquor jugs. - "
      "Jackdaws love my big sphinx of quartz. - "
      "The five boxing wizards jump quickly. - "
      "How vexingly quick daft zebras jump! - "
      "Bright vixens jump; dozy fowl quack - "
      "Sphinx of black quartz, judge my vow"
      "Voyez le brick géant que j’examine près du wha"
      "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
      "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
      "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
      "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
      "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
      "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste""Pack my box with five dozen liquor jugs. - "
      "Jackdaws love my big sphinx of quartz. - "
      "The five boxing wizards jump quickly. - "
      "How vexingly quick daft zebras jump! - "
      "Bright vixens jump; dozy fowl quack - "
      "Sphinx of black quartz, judge my vow"
      "Voyez le brick géant que j’examine près du wha"
      "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
      "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
      "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
      "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
      "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
      "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
      "Pack my box with five dozen liquor jugs. - "
      "Jackdaws love my big sphinx of quartz. - "
      "The five boxing wizards jump quickly. - "
      "How vexingly quick daft zebras jump! - "
      "Bright vixens jump; dozy fowl quack - "
      "Sphinx of black quartz, judge my vow"
      "Voyez le brick géant que j’examine près du wha"
      "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
      "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
      "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
      "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
      "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
      "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
      "Pack my box with five dozen liquor jugs. - "
      "Jackdaws love my big sphinx of quartz. - "
      "The five boxing wizards jump quickly. - "
      "How vexingly quick daft zebras jump! - "
      "Bright vixens jump; dozy fowl quack - "
      "Sphinx of black quartz, judge my vow"
      "Voyez le brick géant que j’examine près du wha"
      "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
      "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
      "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
      "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
      "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
      "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
      "Pack my box with five dozen liquor jugs. - "
      "Jackdaws love my big sphinx of quartz. - "
      "The five boxing wizards jump quickly. - "
      "How vexingly quick daft zebras jump! - "
      "Bright vixens jump; dozy fowl quack - "
      "Sphinx of black quartz, judge my vow"
      "Voyez le brick géant que j’examine près du wha"
      "Zornig und gequält rügen jeweils Pontifex und Volk die maßlose bischöfliche Hybris"
      "Xaver schreibt für Wikipedia zum Spaß quälend lang über Yoga, Soja und Öko"
      "Polyfon zwitschernd aßen Mäxchens Vögel Rüben, Joghurt und Quark"
      "Fix, Schwyz!“ quäkt Jürgen blöd vom Paß"
      "Welch fieser Katzentyp quält da süße Vögel bloß zum Jux"
      "Die heiße Zypernsonne quälte Max und Victoria ja böse auf dem Weg bis zur Küste"
      "S E C O N D  write buffer ending block <---------";