summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/db/mork/morkWriter.cpp
blob: dc1bb1a1edf30c16b5e4d0896fbc7d677f43836f (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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-  */
/* 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/. */

#ifndef _MDB_
#  include "mdb.h"
#endif

#ifndef _MORK_
#  include "mork.h"
#endif

#ifndef _MORKBLOB_
#  include "morkBlob.h"
#endif

#ifndef _MORKNODE_
#  include "morkNode.h"
#endif

#ifndef _MORKENV_
#  include "morkEnv.h"
#endif

#ifndef _MORKARRAY_
#  include "morkWriter.h"
#endif

// #ifndef _MORKFILE_
// #include "morkFile.h"
// #endif

#ifndef _MORKSTREAM_
#  include "morkStream.h"
#endif

#ifndef _MORKSTORE_
#  include "morkStore.h"
#endif

#ifndef _MORKATOMSPACE_
#  include "morkAtomSpace.h"
#endif

#ifndef _MORKROWSPACE_
#  include "morkRowSpace.h"
#endif

#ifndef _MORKROWMAP_
#  include "morkRowMap.h"
#endif

#ifndef _MORKATOMMAP_
#  include "morkAtomMap.h"
#endif

#ifndef _MORKROW_
#  include "morkRow.h"
#endif

#ifndef _MORKTABLE_
#  include "morkTable.h"
#endif

#ifndef _MORKCELL_
#  include "morkCell.h"
#endif

#ifndef _MORKATOM_
#  include "morkAtom.h"
#endif

#ifndef _MORKCH_
#  include "morkCh.h"
#endif

// 456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789

// ````` ````` ````` ````` `````
// { ===== begin morkNode interface =====

/*public virtual*/ void morkWriter::CloseMorkNode(
    morkEnv* ev)  // CloseTable() only if open
{
  if (this->IsOpenNode()) {
    this->MarkClosing();
    this->CloseWriter(ev);
    this->MarkShut();
  }
}

/*public virtual*/
morkWriter::~morkWriter()  // assert CloseTable() executed earlier
{
  MORK_ASSERT(this->IsShutNode());
  MORK_ASSERT(mWriter_Store == 0);
}

/*public non-poly*/
morkWriter::morkWriter(morkEnv* ev, const morkUsage& inUsage,
                       nsIMdbHeap* ioHeap, morkStore* ioStore,
                       nsIMdbFile* ioFile, nsIMdbHeap* ioSlotHeap)
    : morkNode(ev, inUsage, ioHeap),
      mWriter_Store(0),
      mWriter_File(0),
      mWriter_Bud(0),
      mWriter_Stream(0),
      mWriter_SlotHeap(0)

      ,
      mWriter_CommitGroupIdentity(0)  // see mStore_CommitGroupIdentity
      ,
      mWriter_GroupBufFill(0)

      ,
      mWriter_TotalCount(morkWriter_kCountNumberOfPhases),
      mWriter_DoneCount(0)

      ,
      mWriter_LineSize(0),
      mWriter_MaxIndent(morkWriter_kMaxIndent),
      mWriter_MaxLine(morkWriter_kMaxLine)

      ,
      mWriter_TableForm(0),
      mWriter_TableAtomScope('v'),
      mWriter_TableRowScope(0),
      mWriter_TableKind(0)

      ,
      mWriter_RowForm(0),
      mWriter_RowAtomScope(0),
      mWriter_RowScope(0)

      ,
      mWriter_DictForm(0),
      mWriter_DictAtomScope('v')

      ,
      mWriter_NeedDirtyAll(morkBool_kFalse),
      mWriter_Incremental(morkBool_kTrue)  // opposite of mWriter_NeedDirtyAll
      ,
      mWriter_DidStartDict(morkBool_kFalse),
      mWriter_DidEndDict(morkBool_kTrue)

      ,
      mWriter_SuppressDirtyRowNewline(morkBool_kFalse),
      mWriter_DidStartGroup(morkBool_kFalse),
      mWriter_DidEndGroup(morkBool_kTrue),
      mWriter_Phase(morkWriter_kPhaseNothingDone)

      ,
      mWriter_BeVerbose(ev->mEnv_BeVerbose)

      ,
      mWriter_TableRowArrayPos(0)

      // empty constructors for map iterators:
      ,
      mWriter_StoreAtomSpacesIter(),
      mWriter_AtomSpaceAtomAidsIter()

      ,
      mWriter_StoreRowSpacesIter(),
      mWriter_RowSpaceTablesIter(),
      mWriter_RowSpaceRowsIter() {
  mWriter_GroupBuf[0] = 0;

  mWriter_SafeNameBuf[0] = 0;
  mWriter_SafeNameBuf[morkWriter_kMaxColumnNameSize * 2] = 0;
  mWriter_ColNameBuf[0] = 0;
  mWriter_ColNameBuf[morkWriter_kMaxColumnNameSize] = 0;

  mdbYarn* y = &mWriter_ColYarn;
  y->mYarn_Buf = mWriter_ColNameBuf;              // where to put col bytes
  y->mYarn_Fill = 0;                              // set later by writer
  y->mYarn_Size = morkWriter_kMaxColumnNameSize;  // our buf size
  y->mYarn_More = 0;                              // set later by writer
  y->mYarn_Form = 0;                              // set later by writer
  y->mYarn_Grow = 0;                              // do not allow buffer growth

  y = &mWriter_SafeYarn;
  y->mYarn_Buf = mWriter_SafeNameBuf;                 // where to put col bytes
  y->mYarn_Fill = 0;                                  // set later by writer
  y->mYarn_Size = morkWriter_kMaxColumnNameSize * 2;  // our buf size
  y->mYarn_More = 0;                                  // set later by writer
  y->mYarn_Form = 0;                                  // set later by writer
  y->mYarn_Grow = 0;  // do not allow buffer growth

  if (ev->Good()) {
    if (ioSlotHeap && ioFile && ioStore) {
      morkStore::SlotWeakStore(ioStore, ev, &mWriter_Store);
      nsIMdbFile_SlotStrongFile(ioFile, ev, &mWriter_File);
      nsIMdbHeap_SlotStrongHeap(ioSlotHeap, ev, &mWriter_SlotHeap);
      if (ev->Good()) {
        mNode_Derived = morkDerived_kWriter;
      }
    } else
      ev->NilPointerError();
  }
}

void morkWriter::MakeWriterStream(morkEnv* ev)  // give writer a suitable stream
{
  mWriter_Incremental = !mWriter_NeedDirtyAll;  // opposites

  if (!mWriter_Stream && ev->Good()) {
    if (mWriter_File) {
      morkStream* stream = 0;
      mork_bool frozen = morkBool_kFalse;  // need to modify
      nsIMdbHeap* heap = mWriter_SlotHeap;

      if (mWriter_Incremental) {
        stream =
            new (*heap, ev) morkStream(ev, morkUsage::kHeap, heap, mWriter_File,
                                       morkWriter_kStreamBufSize, frozen);
      } else  // compress commit
      {
        nsIMdbFile* bud = 0;
        mWriter_File->AcquireBud(ev->AsMdbEnv(), heap, &bud);
        if (bud) {
          if (ev->Good()) {
            mWriter_Bud = bud;
            stream =
                new (*heap, ev) morkStream(ev, morkUsage::kHeap, heap, bud,
                                           morkWriter_kStreamBufSize, frozen);
          } else
            bud->Release();
        }
      }

      if (stream) {
        if (ev->Good())
          mWriter_Stream = stream;
        else
          stream->CutStrongRef(ev->AsMdbEnv());
      }
    } else
      this->NilWriterFileError(ev);
  }
}

/*public non-poly*/ void morkWriter::CloseWriter(
    morkEnv* ev)  // called by CloseMorkNode();
{
  if (this->IsNode()) {
    morkStore::SlotWeakStore((morkStore*)0, ev, &mWriter_Store);
    nsIMdbFile_SlotStrongFile((nsIMdbFile*)0, ev, &mWriter_File);
    nsIMdbFile_SlotStrongFile((nsIMdbFile*)0, ev, &mWriter_Bud);
    morkStream::SlotStrongStream((morkStream*)0, ev, &mWriter_Stream);
    nsIMdbHeap_SlotStrongHeap((nsIMdbHeap*)0, ev, &mWriter_SlotHeap);
    this->MarkShut();
  } else
    this->NonNodeError(ev);
}

// } ===== end morkNode methods =====
// ````` ````` ````` ````` `````

/*static*/ void morkWriter::NonWriterTypeError(morkEnv* ev) {
  ev->NewError("non morkWriter");
}

/*static*/ void morkWriter::NilWriterStoreError(morkEnv* ev) {
  ev->NewError("nil mWriter_Store");
}

/*static*/ void morkWriter::NilWriterBudError(morkEnv* ev) {
  ev->NewError("nil mWriter_Bud");
}

/*static*/ void morkWriter::NilWriterFileError(morkEnv* ev) {
  ev->NewError("nil mWriter_File");
}

/*static*/ void morkWriter::NilWriterStreamError(morkEnv* ev) {
  ev->NewError("nil mWriter_Stream");
}

/*static*/ void morkWriter::UnsupportedPhaseError(morkEnv* ev) {
  ev->NewError("unsupported mWriter_Phase");
}

mork_bool morkWriter::WriteMore(
    morkEnv* ev)  // call until IsWritingDone() is true
{
  if (this->IsOpenNode()) {
    if (this->IsWriter()) {
      if (!mWriter_Stream) this->MakeWriterStream(ev);

      if (mWriter_Stream) {
        if (ev->Bad()) {
          ev->NewWarning("writing stops on error");
          mWriter_Phase = morkWriter_kPhaseWritingDone;
        }
        switch (mWriter_Phase) {
          case morkWriter_kPhaseNothingDone:
            OnNothingDone(ev);
            break;

          case morkWriter_kPhaseDirtyAllDone:
            OnDirtyAllDone(ev);
            break;

          case morkWriter_kPhasePutHeaderDone:
            OnPutHeaderDone(ev);
            break;

          case morkWriter_kPhaseRenumberAllDone:
            OnRenumberAllDone(ev);
            break;

          case morkWriter_kPhaseStoreAtomSpaces:
            OnStoreAtomSpaces(ev);
            break;

          case morkWriter_kPhaseAtomSpaceAtomAids:
            OnAtomSpaceAtomAids(ev);
            break;

          case morkWriter_kPhaseStoreRowSpacesTables:
            OnStoreRowSpacesTables(ev);
            break;

          case morkWriter_kPhaseRowSpaceTables:
            OnRowSpaceTables(ev);
            break;

          case morkWriter_kPhaseTableRowArray:
            OnTableRowArray(ev);
            break;

          case morkWriter_kPhaseStoreRowSpacesRows:
            OnStoreRowSpacesRows(ev);
            break;

          case morkWriter_kPhaseRowSpaceRows:
            OnRowSpaceRows(ev);
            break;

          case morkWriter_kPhaseContentDone:
            OnContentDone(ev);
            break;

          case morkWriter_kPhaseWritingDone:
            OnWritingDone(ev);
            break;

          default:
            this->UnsupportedPhaseError(ev);
        }
      } else
        this->NilWriterStreamError(ev);
    } else
      this->NonWriterTypeError(ev);
  } else
    this->NonOpenNodeError(ev);

  return ev->Good();
}

static const char morkWriter_kHexDigits[] = "0123456789ABCDEF";

mork_size morkWriter::WriteYarn(morkEnv* ev, const mdbYarn* inYarn)
// return number of atom bytes written on the current line (which
// implies that escaped line breaks will make the size value smaller
// than the entire yarn's size, since only part goes on a last line).
{
  mork_size outSize = 0;
  mork_size lineSize = mWriter_LineSize;
  morkStream* stream = mWriter_Stream;

  const mork_u1* b = (const mork_u1*)inYarn->mYarn_Buf;
  if (b) {
    int c;
    mork_fill fill = inYarn->mYarn_Fill;

    const mork_u1* end = b + fill;
    while (b < end && ev->Good()) {
      if (lineSize + outSize >= mWriter_MaxLine)  // continue line?
      {
        stream->PutByteThenNewline(ev, '\\');
        mWriter_LineSize = lineSize = outSize = 0;
      }

      c = *b++;  // next byte to print
      if (morkCh_IsValue(c)) {
        stream->Putc(ev, c);
        ++outSize;  // c
      } else if (c == ')' || c == '$' || c == '\\') {
        stream->Putc(ev, '\\');
        stream->Putc(ev, c);
        outSize += 2;  // '\' c
      } else {
        outSize += 3;  // '$' hex hex
        stream->Putc(ev, '$');
        stream->Putc(ev, morkWriter_kHexDigits[(c >> 4) & 0x0F]);
        stream->Putc(ev, morkWriter_kHexDigits[c & 0x0F]);
      }
    }
  }
  mWriter_LineSize += outSize;

  return outSize;
}

mork_size morkWriter::WriteAtom(morkEnv* ev, const morkAtom* inAtom)
// return number of atom bytes written on the current line (which
// implies that escaped line breaks will make the size value smaller
// than the entire atom's size, since only part goes on a last line).
{
  mork_size outSize = 0;
  mdbYarn yarn;  // to ref content inside atom

  if (morkAtom::AliasYarn(inAtom, &yarn)) {
    if (mWriter_DidStartDict && yarn.mYarn_Form != mWriter_DictForm)
      this->ChangeDictForm(ev, yarn.mYarn_Form);

    outSize = this->WriteYarn(ev, &yarn);
    // mWriter_LineSize += stream->Write(ev, inYarn->mYarn_Buf, outSize);
  } else
    inAtom->BadAtomKindError(ev);

  return outSize;
}

void morkWriter::WriteAtomSpaceAsDict(morkEnv* ev, morkAtomSpace* ioSpace) {
  morkStream* stream = mWriter_Stream;
  nsIMdbEnv* mdbev = ev->AsMdbEnv();
  mork_scope scope = ioSpace->SpaceScope();
  if (scope < 0x80) {
    if (mWriter_LineSize) stream->PutLineBreak(ev);
    stream->PutString(ev, "< <(a=");
    stream->Putc(ev, (int)scope);
    ++mWriter_LineSize;
    stream->PutString(ev, ")> // (f=iso-8859-1)");
    mWriter_LineSize = stream->PutIndent(ev, morkWriter_kDictAliasDepth);
  } else
    ioSpace->NonAsciiSpaceScopeName(ev);

  if (ev->Good()) {
    mdbYarn yarn;           // to ref content inside atom
    char buf[64];           // buffer for staging the dict alias hex ID
    char* idBuf = buf + 1;  // where the id always starts
    buf[0] = '(';           // we always start with open paren
    morkBookAtom* atom = 0;
    morkAtomAidMapIter* ai = &mWriter_AtomSpaceAtomAidsIter;
    ai->InitAtomAidMapIter(ev, &ioSpace->mAtomSpace_AtomAids);
    mork_change* c = 0;

    for (c = ai->FirstAtom(ev, &atom); c && ev->Good();
         c = ai->NextAtom(ev, &atom)) {
      if (atom) {
        if (atom->IsAtomDirty()) {
          atom->SetAtomClean();  // neutralize change

          morkAtom::AliasYarn(atom, &yarn);
          mork_size size = ev->TokenAsHex(idBuf, atom->mBookAtom_Id);

          if (yarn.mYarn_Form != mWriter_DictForm)
            this->ChangeDictForm(ev, yarn.mYarn_Form);

          mork_size pending =
              yarn.mYarn_Fill + size + morkWriter_kYarnEscapeSlop + 4;
          this->IndentOverMaxLine(ev, pending, morkWriter_kDictAliasDepth);
          mork_size bytesWritten;
          stream->Write(mdbev, buf, size + 1, &bytesWritten);  //  + '('
          mWriter_LineSize += bytesWritten;

          pending -= (size + 1);
          this->IndentOverMaxLine(ev, pending, morkWriter_kDictAliasValueDepth);
          stream->Putc(ev, '=');  // start alias
          ++mWriter_LineSize;

          this->WriteYarn(ev, &yarn);
          stream->Putc(ev, ')');  // end alias
          ++mWriter_LineSize;

          ++mWriter_DoneCount;
        }
      } else
        ev->NilPointerError();
    }
    ai->CloseMapIter(ev);
  }

  if (ev->Good()) {
    ioSpace->SetAtomSpaceClean();
    // this->IndentAsNeeded(ev, 0);
    // stream->PutByteThenNewline(ev, '>'); // end dict

    stream->Putc(ev, '>');  // end dict
    ++mWriter_LineSize;
  }
}

/*
(I'm putting the text of this message in file morkWriter.cpp.)

I'm making a change which should cause rows and tables to go away
when a Mork db is compress committed, when the rows and tables
are no longer needed.  Because this is subtle, I'm describing it
here in case misbehavior is ever observed.  Otherwise you'll have
almost no hope of fixing a related bug.

This is done entirely in morkWriter.cpp: morkWriter::DirtyAll(),
which currently marks all rows and tables dirty so they will be
written in a later phase of the commit.  My change is to merely
selectively not mark certain rows and tables dirty, when they seem
to be superfluous.

A row is no longer needed when the mRow_GcUses slot hits zero, and
this is used by the following inline morkRow method:

  mork_bool IsRowUsed() const { return mRow_GcUses != 0; }

Naturally disaster ensues if mRow_GcUses is ever smaller than right.

Similarly, we should drop tables when mTable_GcUses hits zero, but
only when a table contains no row members.  We consider tables to
self reference (and prevent collection) when they contain content.
Again, disaster ensues if mTable_GcUses is ever smaller than right.

  mork_count GetRowCount() const
  { return mTable_RowArray.mArray_Fill; }

  mork_bool IsTableUsed() const
  { return (mTable_GcUses != 0 || this->GetRowCount() != 0); }

Now let's question why the design involves filtering what gets set
to dirty.  Why not apply a filter in the later phase when we write
content?  Because I'm afraid of missing some subtle interaction in
updating table and row relationships.  It seems safer to write a row
or table when it starts out dirty, before morkWriter::DirtyAll() is
called.  So this design calls for writing out rows and tables when
they are still clearly used, and additionally, <i>when we have just
been actively writing to them right before this commit</i>.

Presumably if they are truly useless, they will no longer be dirtied
in later sessions and will get collected during the next compress
commit.  So we wait to collect them until they become all dead, and
not just mostly dead.  (At which time you can feel free to go through
their pockets looking for loose change.)
*/

mork_bool morkWriter::DirtyAll(morkEnv* ev)
// DirtyAll() visits every store sub-object and marks
// them dirty, including every table, row, cell, and atom.  The return
// equals ev->Good(), to show whether any error happened.  This method is
// intended for use in the beginning of a "compress commit" which writes
// all store content, whether dirty or not.  We dirty everything first so
// that later iterations over content can mark things clean as they are
// written, and organize the process of serialization so that objects are
// written only at need (because of being dirty).  Note the method can
// stop early when any error happens, since this will abort any commit.
{
  morkStore* store = mWriter_Store;
  if (store) {
    store->SetStoreDirty();
    mork_change* c = 0;

    if (ev->Good()) {
      morkAtomSpaceMapIter* asi = &mWriter_StoreAtomSpacesIter;
      asi->InitAtomSpaceMapIter(ev, &store->mStore_AtomSpaces);

      mork_scope* key = 0;       // ignore keys in map
      morkAtomSpace* space = 0;  // old val node in the map

      for (c = asi->FirstAtomSpace(ev, key, &space); c && ev->Good();
           c = asi->NextAtomSpace(ev, key, &space)) {
        if (space) {
          if (space->IsAtomSpace()) {
            space->SetAtomSpaceDirty();
            morkBookAtom* atom = 0;
            morkAtomAidMapIter* ai = &mWriter_AtomSpaceAtomAidsIter;
            ai->InitAtomAidMapIter(ev, &space->mAtomSpace_AtomAids);

            for (c = ai->FirstAtom(ev, &atom); c && ev->Good();
                 c = ai->NextAtom(ev, &atom)) {
              if (atom) {
                atom->SetAtomDirty();
                ++mWriter_TotalCount;
              } else
                ev->NilPointerError();
            }

            ai->CloseMapIter(ev);
          } else
            space->NonAtomSpaceTypeError(ev);
        } else
          ev->NilPointerError();
      }
    }

    if (ev->Good()) {
      morkRowSpaceMapIter* rsi = &mWriter_StoreRowSpacesIter;
      rsi->InitRowSpaceMapIter(ev, &store->mStore_RowSpaces);

      mork_scope* key = 0;      // ignore keys in map
      morkRowSpace* space = 0;  // old val node in the map

      for (c = rsi->FirstRowSpace(ev, key, &space); c && ev->Good();
           c = rsi->NextRowSpace(ev, key, &space)) {
        if (space) {
          if (space->IsRowSpace()) {
            space->SetRowSpaceDirty();
            if (ev->Good()) {
#ifdef MORK_ENABLE_PROBE_MAPS
              morkRowProbeMapIter* ri = &mWriter_RowSpaceRowsIter;
#else  /*MORK_ENABLE_PROBE_MAPS*/
              morkRowMapIter* ri = &mWriter_RowSpaceRowsIter;
#endif /*MORK_ENABLE_PROBE_MAPS*/
              ri->InitRowMapIter(ev, &space->mRowSpace_Rows);

              morkRow* row = 0;  // old key row in the map

              for (c = ri->FirstRow(ev, &row); c && ev->Good();
                   c = ri->NextRow(ev, &row)) {
                if (row && row->IsRow())  // need to dirty row?
                {
                  if (row->IsRowUsed() || row->IsRowDirty()) {
                    row->DirtyAllRowContent(ev);
                    ++mWriter_TotalCount;
                  }
                } else
                  row->NonRowTypeWarning(ev);
              }
              ri->CloseMapIter(ev);
            }

            if (ev->Good()) {
              morkTableMapIter* ti = &mWriter_RowSpaceTablesIter;
              ti->InitTableMapIter(ev, &space->mRowSpace_Tables);

#ifdef MORK_BEAD_OVER_NODE_MAPS
              morkTable* table = ti->FirstTable(ev);

              for (; table && ev->Good(); table = ti->NextTable(ev))
#else  /*MORK_BEAD_OVER_NODE_MAPS*/
              mork_tid* tableKey = 0;  // ignore keys in table map
              morkTable* table = 0;    // old key row in the map

              for (c = ti->FirstTable(ev, tableKey, &table); c && ev->Good();
                   c = ti->NextTable(ev, tableKey, &table))
#endif /*MORK_BEAD_OVER_NODE_MAPS*/
              {
                if (table && table->IsTable())  // need to dirty table?
                {
                  if (table->IsTableUsed() || table->IsTableDirty()) {
                    // table->DirtyAllTableContent(ev);
                    // only necessary to mark table itself dirty:
                    table->SetTableDirty();
                    table->SetTableRewrite();
                    ++mWriter_TotalCount;
                  }
                } else
                  table->NonTableTypeWarning(ev);
              }
              ti->CloseMapIter(ev);
            }
          } else
            space->NonRowSpaceTypeError(ev);
        } else
          ev->NilPointerError();
      }
    }
  } else
    this->NilWriterStoreError(ev);

  return ev->Good();
}

mork_bool morkWriter::OnNothingDone(morkEnv* ev) {
  mWriter_Incremental = !mWriter_NeedDirtyAll;  // opposites

  if (!mWriter_Store->IsStoreDirty() && !mWriter_NeedDirtyAll) {
    mWriter_Phase = morkWriter_kPhaseWritingDone;
    return morkBool_kTrue;
  }

  // morkStream* stream = mWriter_Stream;
  if (mWriter_NeedDirtyAll) this->DirtyAll(ev);

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseDirtyAllDone;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::StartGroup(morkEnv* ev) {
  nsIMdbEnv* mdbev = ev->AsMdbEnv();
  morkStream* stream = mWriter_Stream;
  mWriter_DidStartGroup = morkBool_kTrue;
  mWriter_DidEndGroup = morkBool_kFalse;

  char buf[4 + morkWriter_kGroupBufSize + 2];  // "@$${" + groupid + "{@"
  char* p = buf;
  *p++ = '@';
  *p++ = '$';
  *p++ = '$';
  *p++ = '{';

  mork_token groupID = mWriter_CommitGroupIdentity;
  mork_fill idFill = ev->TokenAsHex(p, groupID);
  mWriter_GroupBufFill = 0;
  // ev->TokenAsHex(mWriter_GroupBuf, groupID);
  if (idFill < morkWriter_kGroupBufSize) {
    // TokenAsHex appends a '\0', but it's not included in idFill count.
    MORK_MEMCPY(mWriter_GroupBuf, p, idFill + 1);
    mWriter_GroupBufFill = idFill;
  } else {
    *mWriter_GroupBuf = '\0';
  }

  p += idFill;
  *p++ = '{';
  *p++ = '@';

  stream->PutLineBreak(ev);

  morkStore* store = mWriter_Store;
  if (store)  // might need to capture commit group position?
  {
    mork_pos groupPos;
    stream->Tell(mdbev, &groupPos);
    if (!store->mStore_FirstCommitGroupPos)
      store->mStore_FirstCommitGroupPos = groupPos;
    else if (!store->mStore_SecondCommitGroupPos)
      store->mStore_SecondCommitGroupPos = groupPos;
  }

  mork_size bytesWritten;
  stream->Write(mdbev, buf, 4 + idFill + 2,
                &bytesWritten);  // '@$${' + idFill + '{@'
  stream->PutLineBreak(ev);
  mWriter_LineSize = 0;

  return ev->Good();
}

mork_bool morkWriter::CommitGroup(morkEnv* ev) {
  if (mWriter_DidStartGroup) {
    nsIMdbEnv* mdbev = ev->AsMdbEnv();
    mork_size bytesWritten;
    morkStream* stream = mWriter_Stream;

    if (mWriter_LineSize) stream->PutLineBreak(ev);

    stream->Putc(ev, '@');
    stream->Putc(ev, '$');
    stream->Putc(ev, '$');
    stream->Putc(ev, '}');

    mork_fill bufFill = mWriter_GroupBufFill;
    if (bufFill) stream->Write(mdbev, mWriter_GroupBuf, bufFill, &bytesWritten);

    stream->Putc(ev, '}');
    stream->Putc(ev, '@');
    stream->PutLineBreak(ev);

    mWriter_LineSize = 0;
  }

  mWriter_DidStartGroup = morkBool_kFalse;
  mWriter_DidEndGroup = morkBool_kTrue;

  return ev->Good();
}

mork_bool morkWriter::AbortGroup(morkEnv* ev) {
  if (mWriter_DidStartGroup) {
    morkStream* stream = mWriter_Stream;
    stream->PutLineBreak(ev);
    stream->PutStringThenNewline(ev, "@$$}~~}@");
    mWriter_LineSize = 0;
  }

  mWriter_DidStartGroup = morkBool_kFalse;
  mWriter_DidEndGroup = morkBool_kTrue;

  return ev->Good();
}

mork_bool morkWriter::OnDirtyAllDone(morkEnv* ev) {
  if (ev->Good()) {
    nsIMdbEnv* mdbev = ev->AsMdbEnv();
    morkStream* stream = mWriter_Stream;
    mork_pos resultPos;
    if (mWriter_NeedDirtyAll)  // compress commit
    {
      stream->Seek(mdbev, 0, &resultPos);  // beginning of stream
      stream->PutStringThenNewline(ev, morkWriter_kFileHeader);
      mWriter_LineSize = 0;
    } else  // else mWriter_Incremental
    {
      mork_pos eos = stream->Length(ev);  // length is end of stream
      if (ev->Good()) {
        stream->Seek(mdbev, eos, &resultPos);  // goto end of stream
        if (eos < 128)                         // maybe need file header?
        {
          stream->PutStringThenNewline(ev, morkWriter_kFileHeader);
          mWriter_LineSize = 0;
        }
        this->StartGroup(ev);  // begin incremental transaction
      }
    }
  }

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhasePutHeaderDone;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::OnPutHeaderDone(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //   stream->PutStringThenNewline(ev, "// OnPutHeaderDone()");
  mWriter_LineSize = 0;

  if (mWriter_NeedDirtyAll)  // compress commit
  {
    morkStore* store = mWriter_Store;
    if (store)
      store->RenumberAllCollectableContent(ev);
    else
      this->NilWriterStoreError(ev);
  }

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseRenumberAllDone;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::OnRenumberAllDone(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //  stream->PutStringThenNewline(ev, "// OnRenumberAllDone()");
  mWriter_LineSize = 0;

  if (mWriter_NeedDirtyAll)  // compress commit
  {
  }

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseStoreAtomSpaces;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::OnStoreAtomSpaces(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //   stream->PutStringThenNewline(ev, "// OnStoreAtomSpaces()");
  mWriter_LineSize = 0;

  if (mWriter_NeedDirtyAll)  // compress commit
  {
  }

  if (ev->Good()) {
    morkStore* store = mWriter_Store;
    if (store) {
      morkAtomSpace* space = store->LazyGetGroundColumnSpace(ev);
      if (space && space->IsAtomSpaceDirty()) {
        // stream->PutStringThenNewline(ev, "// ground column space dict:");

        if (mWriter_LineSize) {
          stream->PutLineBreak(ev);
          mWriter_LineSize = 0;
        }
        this->WriteAtomSpaceAsDict(ev, space);
        space->SetAtomSpaceClean();
      }
    } else
      this->NilWriterStoreError(ev);
  }

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseStoreRowSpacesTables;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::OnAtomSpaceAtomAids(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //   stream->PutStringThenNewline(ev, "// OnAtomSpaceAtomAids()");
  mWriter_LineSize = 0;

  if (mWriter_NeedDirtyAll)  // compress commit
  {
  }

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseStoreRowSpacesTables;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

void morkWriter::WriteAllStoreTables(morkEnv* ev) {
  morkStore* store = mWriter_Store;
  if (store && ev->Good()) {
    morkRowSpaceMapIter* rsi = &mWriter_StoreRowSpacesIter;
    rsi->InitRowSpaceMapIter(ev, &store->mStore_RowSpaces);

    mork_scope* key = 0;      // ignore keys in map
    morkRowSpace* space = 0;  // old val node in the map
    mork_change* c = 0;

    for (c = rsi->FirstRowSpace(ev, key, &space); c && ev->Good();
         c = rsi->NextRowSpace(ev, key, &space)) {
      if (space) {
        if (space->IsRowSpace()) {
          space->SetRowSpaceClean();
          if (ev->Good()) {
            morkTableMapIter* ti = &mWriter_RowSpaceTablesIter;
            ti->InitTableMapIter(ev, &space->mRowSpace_Tables);

#ifdef MORK_BEAD_OVER_NODE_MAPS
            morkTable* table = ti->FirstTable(ev);

            for (; table && ev->Good(); table = ti->NextTable(ev))
#else  /*MORK_BEAD_OVER_NODE_MAPS*/
            mork_tid* key2 = 0;    // ignore keys in table map
            morkTable* table = 0;  // old key row in the map

            for (c = ti->FirstTable(ev, key2, &table); c && ev->Good();
                 c = ti->NextTable(ev, key2, &table))
#endif /*MORK_BEAD_OVER_NODE_MAPS*/
            {
              if (table && table->IsTable()) {
                if (table->IsTableDirty()) {
                  mWriter_BeVerbose =
                      (ev->mEnv_BeVerbose || table->IsTableVerbose());

                  if (this->PutTableDict(ev, table)) this->PutTable(ev, table);

                  table->SetTableClean(ev);
                  mWriter_BeVerbose = ev->mEnv_BeVerbose;
                }
              } else
                table->NonTableTypeWarning(ev);
            }
            ti->CloseMapIter(ev);
          }
          if (ev->Good()) {
            mWriter_TableRowScope = 0;  // ensure no table context now

#ifdef MORK_ENABLE_PROBE_MAPS
            morkRowProbeMapIter* ri = &mWriter_RowSpaceRowsIter;
#else  /*MORK_ENABLE_PROBE_MAPS*/
            morkRowMapIter* ri = &mWriter_RowSpaceRowsIter;
#endif /*MORK_ENABLE_PROBE_MAPS*/
            ri->InitRowMapIter(ev, &space->mRowSpace_Rows);

            morkRow* row = 0;  // old row in the map

            for (c = ri->FirstRow(ev, &row); c && ev->Good();
                 c = ri->NextRow(ev, &row)) {
              if (row && row->IsRow()) {
                // later we should also check that table use count is nonzero:
                if (row->IsRowDirty())  // && row->IsRowUsed() ??
                {
                  mWriter_BeVerbose = ev->mEnv_BeVerbose;
                  if (this->PutRowDict(ev, row)) {
                    if (ev->Good() && mWriter_DidStartDict) {
                      this->EndDict(ev);
                      if (mWriter_LineSize < 32 && ev->Good())
                        mWriter_SuppressDirtyRowNewline = morkBool_kTrue;
                    }

                    if (ev->Good()) this->PutRow(ev, row);
                  }
                  mWriter_BeVerbose = ev->mEnv_BeVerbose;
                }
              } else
                row->NonRowTypeWarning(ev);
            }
            ri->CloseMapIter(ev);
          }
        } else
          space->NonRowSpaceTypeError(ev);
      } else
        ev->NilPointerError();
    }
  }
}

mork_bool morkWriter::OnStoreRowSpacesTables(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //   stream->PutStringThenNewline(ev, "// OnStoreRowSpacesTables()");
  mWriter_LineSize = 0;

  if (mWriter_NeedDirtyAll)  // compress commit
  {
  }

  // later we'll break this up, but today we'll write all in one shot:
  this->WriteAllStoreTables(ev);

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseStoreRowSpacesRows;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::OnRowSpaceTables(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //   stream->PutStringThenNewline(ev, "// OnRowSpaceTables()");
  mWriter_LineSize = 0;

  if (mWriter_NeedDirtyAll)  // compress commit
  {
  }

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseStoreRowSpacesRows;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::OnTableRowArray(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //   stream->PutStringThenNewline(ev, "// OnTableRowArray()");
  mWriter_LineSize = 0;

  if (mWriter_NeedDirtyAll)  // compress commit
  {
  }

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseStoreRowSpacesRows;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::OnStoreRowSpacesRows(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //   stream->PutStringThenNewline(ev, "// OnStoreRowSpacesRows()");
  mWriter_LineSize = 0;

  if (mWriter_NeedDirtyAll)  // compress commit
  {
  }

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseContentDone;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::OnRowSpaceRows(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //   stream->PutStringThenNewline(ev, "// OnRowSpaceRows()");
  mWriter_LineSize = 0;

  if (mWriter_NeedDirtyAll)  // compress commit
  {
  }

  if (ev->Good())
    mWriter_Phase = morkWriter_kPhaseContentDone;
  else
    mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop on error

  return ev->Good();
}

mork_bool morkWriter::OnContentDone(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_LineSize) stream->PutLineBreak(ev);

  // if ( mWriter_NeedDirtyAll )
  //   stream->PutStringThenNewline(ev, "// OnContentDone()");
  mWriter_LineSize = 0;

  if (mWriter_Incremental) {
    if (ev->Good())
      this->CommitGroup(ev);
    else
      this->AbortGroup(ev);
  } else if (mWriter_Store && ev->Good()) {
    // after rewriting everything, there are no transaction groups:
    mWriter_Store->mStore_FirstCommitGroupPos = 0;
    mWriter_Store->mStore_SecondCommitGroupPos = 0;
  }

  stream->Flush(ev->AsMdbEnv());
  nsIMdbFile* bud = mWriter_Bud;
  if (bud) {
    bud->Flush(ev->AsMdbEnv());
    bud->BecomeTrunk(ev->AsMdbEnv());
    nsIMdbFile_SlotStrongFile((nsIMdbFile*)0, ev, &mWriter_Bud);
  } else if (!mWriter_Incremental)  // should have a bud?
    this->NilWriterBudError(ev);

  mWriter_Phase = morkWriter_kPhaseWritingDone;  // stop always
  mWriter_DoneCount = mWriter_TotalCount;

  return ev->Good();
}

mork_bool morkWriter::OnWritingDone(morkEnv* ev) {
  mWriter_DoneCount = mWriter_TotalCount;
  ev->NewWarning("writing is done");
  return ev->Good();
}

mork_bool morkWriter::PutTableChange(morkEnv* ev,
                                     const morkTableChange* inChange) {
  nsIMdbEnv* mdbev = ev->AsMdbEnv();
  if (inChange->IsAddRowTableChange()) {
    this->PutRow(ev, inChange->mTableChange_Row);  // row alone means add
  } else if (inChange->IsCutRowTableChange()) {
    mWriter_Stream->Putc(ev, '-');  // prefix '-' indicates cut row
    ++mWriter_LineSize;
    this->PutRow(ev, inChange->mTableChange_Row);
  } else if (inChange->IsMoveRowTableChange()) {
    this->PutRow(ev, inChange->mTableChange_Row);
    char buf[64];
    char* p = buf;
    *p++ = '!';  // for moves, position is indicated by prefix '!'
    mork_size posSize = ev->TokenAsHex(p, inChange->mTableChange_Pos);
    p += posSize;
    *p++ = ' ';
    mork_size bytesWritten;
    mWriter_Stream->Write(mdbev, buf, posSize + 2, &bytesWritten);
    mWriter_LineSize += bytesWritten;
  } else
    inChange->UnknownChangeError(ev);

  return ev->Good();
}

mork_bool morkWriter::PutTable(morkEnv* ev, morkTable* ioTable) {
  if (ev->Good()) this->StartTable(ev, ioTable);

  if (ev->Good()) {
    if (ioTable->IsTableRewrite() || mWriter_NeedDirtyAll) {
      morkArray* array = &ioTable->mTable_RowArray;  // vector of rows
      mork_fill fill = array->mArray_Fill;           // count of rows
      morkRow** rows = (morkRow**)array->mArray_Slots;
      if (rows && fill) {
        morkRow** end = rows + fill;
        while (rows < end && ev->Good()) {
          morkRow* r = *rows++;  // next row to consider
          this->PutRow(ev, r);
        }
      }
    } else  // incremental write only table changes
    {
      morkList* list = &ioTable->mTable_ChangeList;
      morkNext* next = list->GetListHead();
      while (next && ev->Good()) {
        this->PutTableChange(ev, (morkTableChange*)next);
        next = next->GetNextLink();
      }
    }
  }

  if (ev->Good()) this->EndTable(ev);

  ioTable->SetTableClean(ev);  // note this also cleans change list
  mWriter_TableRowScope = 0;

  ++mWriter_DoneCount;
  return ev->Good();
}

mork_bool morkWriter::PutTableDict(morkEnv* ev, morkTable* ioTable) {
  morkRowSpace* space = ioTable->mTable_RowSpace;
  mWriter_TableRowScope = space->SpaceScope();
  mWriter_TableForm = 0;         // (f=iso-8859-1)
  mWriter_TableAtomScope = 'v';  // (a=v)
  mWriter_TableKind = ioTable->mTable_Kind;

  mWriter_RowForm = mWriter_TableForm;
  mWriter_RowAtomScope = mWriter_TableAtomScope;
  mWriter_RowScope = mWriter_TableRowScope;

  mWriter_DictForm = mWriter_TableForm;
  mWriter_DictAtomScope = mWriter_TableAtomScope;

  // if ( ev->Good() )
  //  this->StartDict(ev); // delay as long as possible

  if (ev->Good()) {
    morkRow* r = ioTable->mTable_MetaRow;
    if (r) {
      if (r->IsRow())
        this->PutRowDict(ev, r);
      else
        r->NonRowTypeError(ev);
    }
    morkArray* array = &ioTable->mTable_RowArray;  // vector of rows
    mork_fill fill = array->mArray_Fill;           // count of rows
    morkRow** rows = (morkRow**)array->mArray_Slots;
    if (rows && fill) {
      morkRow** end = rows + fill;
      while (rows < end && ev->Good()) {
        r = *rows++;  // next row to consider
        if (r && r->IsRow())
          this->PutRowDict(ev, r);
        else
          r->NonRowTypeError(ev);
      }
    }
    // we may have a change for a row which is no longer in the
    // table, but contains a cell with something not in the dictionary.
    // So, loop through the rows in the change log, writing out any
    // dirty dictionary elements.
    morkList* list = &ioTable->mTable_ChangeList;
    morkNext* next = list->GetListHead();
    while (next && ev->Good()) {
      r = ((morkTableChange*)next)->mTableChange_Row;
      if (r && r->IsRow()) this->PutRowDict(ev, r);
      next = next->GetNextLink();
    }
  }
  if (ev->Good()) this->EndDict(ev);

  return ev->Good();
}

void morkWriter::WriteTokenToTokenMetaCell(morkEnv* ev, mork_token inCol,
                                           mork_token inValue) {
  morkStream* stream = mWriter_Stream;
  mork_bool isKindCol = (morkStore_kKindColumn == inCol);
  mork_u1 valSep = (mork_u1)((isKindCol) ? '^' : '=');

  char buf[128];  // buffer for staging the two hex IDs
  char* p = buf;

  mork_size bytesWritten;
  if (inCol < 0x80) {
    stream->Putc(ev, '(');
    stream->Putc(ev, (char)inCol);
    stream->Putc(ev, valSep);
  } else {
    *p++ = '(';  // we always start with open paren

    *p++ = '^';  // indicates col is hex ID
    mork_size colSize = ev->TokenAsHex(p, inCol);
    p += colSize;
    *p++ = (char)valSep;
    stream->Write(ev->AsMdbEnv(), buf, colSize + 3, &bytesWritten);

    mWriter_LineSize += bytesWritten;
  }

  if (isKindCol) {
    p = buf;
    mork_size valSize = ev->TokenAsHex(p, inValue);
    p += valSize;
    *p++ = ':';
    *p++ = 'c';
    *p++ = ')';
    stream->Write(ev->AsMdbEnv(), buf, valSize + 3, &bytesWritten);
    mWriter_LineSize += bytesWritten;
  } else {
    this->IndentAsNeeded(ev, morkWriter_kTableMetaCellValueDepth);
    mdbYarn* yarn = &mWriter_ColYarn;
    // mork_u1* yarnBuf = (mork_u1*) yarn->mYarn_Buf;
    mWriter_Store->TokenToString(ev, inValue, yarn);
    this->WriteYarn(ev, yarn);
    stream->Putc(ev, ')');
    ++mWriter_LineSize;
  }

  // mork_fill fill = yarn->mYarn_Fill;
  // yarnBuf[ fill ] = ')'; // append terminator
  // mWriter_LineSize += stream->Write(ev, yarnBuf, fill + 1); // +1 for ')'
}

void morkWriter::WriteStringToTokenDictCell(morkEnv* ev, const char* inCol,
                                            mork_token inValue)
// Note inCol should begin with '(' and end with '=', with col in between.
{
  morkStream* stream = mWriter_Stream;
  mWriter_LineSize += stream->PutString(ev, inCol);

  this->IndentAsNeeded(ev, morkWriter_kDictMetaCellValueDepth);
  mdbYarn* yarn = &mWriter_ColYarn;
  // mork_u1* yarnBuf = (mork_u1*) yarn->mYarn_Buf;
  mWriter_Store->TokenToString(ev, inValue, yarn);
  this->WriteYarn(ev, yarn);
  stream->Putc(ev, ')');
  ++mWriter_LineSize;

  // mork_fill fill = yarn->mYarn_Fill;
  // yarnBuf[ fill ] = ')'; // append terminator
  // mWriter_LineSize += stream->Write(ev, yarnBuf, fill + 1); // +1 for ')'
}

void morkWriter::ChangeDictAtomScope(morkEnv* ev, mork_scope inScope) {
  if (inScope != mWriter_DictAtomScope) {
    ev->NewWarning("unexpected atom scope change");

    morkStream* stream = mWriter_Stream;
    if (mWriter_LineSize) stream->PutLineBreak(ev);
    mWriter_LineSize = 0;

    char buf[128];  // buffer for staging the two hex IDs
    char* p = buf;
    *p++ = '<';  // we always start with open paren
    *p++ = '(';  // we always start with open paren
    *p++ = (char)morkStore_kAtomScopeColumn;

    mork_size scopeSize = 1;  // default to one byte
    if (inScope >= 0x80) {
      *p++ = '^';  // indicates col is hex ID
      scopeSize = ev->TokenAsHex(p, inScope);
      p += scopeSize;
    } else {
      *p++ = '=';  // indicates col is imm byte
      *p++ = (char)(mork_u1)inScope;
    }

    *p++ = ')';
    *p++ = '>';
    *p = 0;

    mork_size pending = scopeSize + 6;
    this->IndentOverMaxLine(ev, pending, morkWriter_kDictAliasDepth);
    mork_size bytesWritten;

    stream->Write(ev->AsMdbEnv(), buf, pending, &bytesWritten);
    mWriter_LineSize += bytesWritten;

    mWriter_DictAtomScope = inScope;
  }
}

void morkWriter::ChangeRowForm(morkEnv* ev, mork_cscode inNewForm) {
  if (inNewForm != mWriter_RowForm) {
    morkStream* stream = mWriter_Stream;
    if (mWriter_LineSize) stream->PutLineBreak(ev);
    mWriter_LineSize = 0;

    char buf[128];  // buffer for staging the two hex IDs
    char* p = buf;
    *p++ = '[';  // we always start with open bracket
    *p++ = '(';  // we always start with open paren
    *p++ = (char)morkStore_kFormColumn;

    mork_size formSize = 1;  // default to one byte
    if (!morkCh_IsValue(inNewForm)) {
      *p++ = '^';  // indicates col is hex ID
      formSize = ev->TokenAsHex(p, inNewForm);
      p += formSize;
    } else {
      *p++ = '=';  // indicates col is imm byte
      *p++ = (char)(mork_u1)inNewForm;
    }

    *p++ = ')';
    *p++ = ']';
    *p = 0;

    mork_size pending = formSize + 6;
    this->IndentOverMaxLine(ev, pending, morkWriter_kRowCellDepth);
    mork_size bytesWritten;
    stream->Write(ev->AsMdbEnv(), buf, pending, &bytesWritten);
    mWriter_LineSize += bytesWritten;

    mWriter_RowForm = inNewForm;
  }
}

void morkWriter::ChangeDictForm(morkEnv* ev, mork_cscode inNewForm) {
  if (inNewForm != mWriter_DictForm) {
    morkStream* stream = mWriter_Stream;
    if (mWriter_LineSize) stream->PutLineBreak(ev);
    mWriter_LineSize = 0;

    char buf[128];  // buffer for staging the two hex IDs
    char* p = buf;
    *p++ = '<';  // we always start with open angle
    *p++ = '(';  // we always start with open paren
    *p++ = (char)morkStore_kFormColumn;

    mork_size formSize = 1;  // default to one byte
    if (!morkCh_IsValue(inNewForm)) {
      *p++ = '^';  // indicates col is hex ID
      formSize = ev->TokenAsHex(p, inNewForm);
      p += formSize;
    } else {
      *p++ = '=';  // indicates col is imm byte
      *p++ = (char)(mork_u1)inNewForm;
    }

    *p++ = ')';
    *p++ = '>';
    *p = 0;

    mork_size pending = formSize + 6;
    this->IndentOverMaxLine(ev, pending, morkWriter_kDictAliasDepth);

    mork_size bytesWritten;
    stream->Write(ev->AsMdbEnv(), buf, pending, &bytesWritten);
    mWriter_LineSize += bytesWritten;

    mWriter_DictForm = inNewForm;
  }
}

void morkWriter::StartDict(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_DidStartDict) {
    stream->Putc(ev, '>');  // end dict
    ++mWriter_LineSize;
  }
  mWriter_DidStartDict = morkBool_kTrue;
  mWriter_DidEndDict = morkBool_kFalse;

  if (mWriter_LineSize) stream->PutLineBreak(ev);
  mWriter_LineSize = 0;

  if (mWriter_TableRowScope)  // blank line before table's dict?
    stream->PutLineBreak(ev);

  if (mWriter_DictForm || mWriter_DictAtomScope != 'v') {
    stream->Putc(ev, '<');
    stream->Putc(ev, ' ');
    stream->Putc(ev, '<');
    mWriter_LineSize = 3;
    if (mWriter_DictForm)
      this->WriteStringToTokenDictCell(ev, "(f=", mWriter_DictForm);
    if (mWriter_DictAtomScope != 'v')
      this->WriteStringToTokenDictCell(ev, "(a=", mWriter_DictAtomScope);

    stream->Putc(ev, '>');
    ++mWriter_LineSize;

    mWriter_LineSize = stream->PutIndent(ev, morkWriter_kDictAliasDepth);
  } else {
    stream->Putc(ev, '<');
    // stream->Putc(ev, ' ');
    ++mWriter_LineSize;
  }
}

void morkWriter::EndDict(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  if (mWriter_DidStartDict) {
    stream->Putc(ev, '>');  // end dict
    ++mWriter_LineSize;
  }
  mWriter_DidStartDict = morkBool_kFalse;
  mWriter_DidEndDict = morkBool_kTrue;
}

void morkWriter::StartTable(morkEnv* ev, morkTable* ioTable) {
  mdbOid toid;  // to receive table oid
  ioTable->GetTableOid(ev, &toid);

  if (ev->Good()) {
    morkStream* stream = mWriter_Stream;
    if (mWriter_LineSize) stream->PutLineBreak(ev);
    mWriter_LineSize = 0;
    // stream->PutLineBreak(ev);

    char buf[64 + 16];  // buffer for staging hex
    char* p = buf;
    *p++ = '{';  // punct 1
    mork_size punctSize =
        (mWriter_BeVerbose) ? 10 : 3;  // counting "{ {/*r=*/ "

    if (ioTable->IsTableRewrite() && mWriter_Incremental) {
      *p++ = '-';
      ++punctSize;  // counting '-' // punct ++
      ++mWriter_LineSize;
    }
    mork_size oidSize = ev->OidAsHex(p, toid);
    p += oidSize;
    *p++ = ' ';  // punct 2
    *p++ = '{';  // punct 3
    if (mWriter_BeVerbose) {
      *p++ = '/';  // punct=4
      *p++ = '*';  // punct=5
      *p++ = 'r';  // punct=6
      *p++ = '=';  // punct=7

      mork_token tableUses = (mork_token)ioTable->mTable_GcUses;
      mork_size usesSize = ev->TokenAsHex(p, tableUses);
      punctSize += usesSize;
      p += usesSize;

      *p++ = '*';  // punct=8
      *p++ = '/';  // punct=9
      *p++ = ' ';  // punct=10
    }
    mork_size bytesWritten;

    stream->Write(ev->AsMdbEnv(), buf, oidSize + punctSize, &bytesWritten);
    mWriter_LineSize += bytesWritten;

    mork_kind tk = mWriter_TableKind;
    if (tk) {
      this->IndentAsNeeded(ev, morkWriter_kTableMetaCellDepth);
      this->WriteTokenToTokenMetaCell(ev, morkStore_kKindColumn, tk);
    }

    stream->Putc(ev, '(');  // start 's' col cell
    stream->Putc(ev, 's');  // column
    stream->Putc(ev, '=');  // column
    mWriter_LineSize += 3;

    int prio = (int)ioTable->mTable_Priority;
    if (prio > 9)  // need to force down to max decimal digit?
      prio = 9;
    prio += '0';             // add base digit zero
    stream->Putc(ev, prio);  // priority: (s=0
    ++mWriter_LineSize;

    if (ioTable->IsTableUnique()) {
      stream->Putc(ev, 'u');  // (s=0u
      ++mWriter_LineSize;
    }
    if (ioTable->IsTableVerbose()) {
      stream->Putc(ev, 'v');  // (s=0uv
      ++mWriter_LineSize;
    }

    // stream->Putc(ev, ':'); // (s=0uv:
    // stream->Putc(ev, 'c'); // (s=0uv:c
    stream->Putc(ev, ')');  // end 's' col cell (s=0uv:c)
    mWriter_LineSize += 1;  // maybe 3 if we add ':' and 'c'

    morkRow* r = ioTable->mTable_MetaRow;
    if (r) {
      if (r->IsRow()) {
        mWriter_SuppressDirtyRowNewline = morkBool_kTrue;
        this->PutRow(ev, r);
      } else
        r->NonRowTypeError(ev);
    }

    stream->Putc(ev, '}');  // end meta
    ++mWriter_LineSize;

    if (mWriter_LineSize < mWriter_MaxIndent) {
      stream->Putc(ev, ' ');  // nice white space
      ++mWriter_LineSize;
    }
  }
}

void morkWriter::EndTable(morkEnv* ev) {
  morkStream* stream = mWriter_Stream;
  stream->Putc(ev, '}');  // end table
  ++mWriter_LineSize;

  mWriter_TableAtomScope = 'v';  // (a=v)
}

mork_bool morkWriter::PutRowDict(morkEnv* ev, morkRow* ioRow) {
  mWriter_RowForm = mWriter_TableForm;

  morkCell* cells = ioRow->mRow_Cells;
  if (cells) {
    morkStream* stream = mWriter_Stream;
    mdbYarn yarn;           // to ref content inside atom
    char buf[64];           // buffer for staging the dict alias hex ID
    char* idBuf = buf + 1;  // where the id always starts
    buf[0] = '(';           // we always start with open paren

    morkCell* end = cells + ioRow->mRow_Length;
    --cells;  // prepare for preincrement:
    while (++cells < end && ev->Good()) {
      morkAtom* atom = cells->GetAtom();
      if (atom && atom->IsAtomDirty()) {
        if (atom->IsBook())  // is it possible to write atom ID?
        {
          if (!this->DidStartDict()) {
            this->StartDict(ev);
            if (ev->Bad()) break;
          }
          atom->SetAtomClean();  // neutralize change

          this->IndentAsNeeded(ev, morkWriter_kDictAliasDepth);
          morkBookAtom* ba = (morkBookAtom*)atom;
          mork_size size = ev->TokenAsHex(idBuf, ba->mBookAtom_Id);
          mork_size bytesWritten;
          stream->Write(ev->AsMdbEnv(), buf, size + 1, &bytesWritten);  // '('
          mWriter_LineSize += bytesWritten;

          if (morkAtom::AliasYarn(atom, &yarn)) {
            mork_scope atomScope = atom->GetBookAtomSpaceScope(ev);
            if (atomScope && atomScope != mWriter_DictAtomScope)
              this->ChangeDictAtomScope(ev, atomScope);

            if (mWriter_DidStartDict && yarn.mYarn_Form != mWriter_DictForm)
              this->ChangeDictForm(ev, yarn.mYarn_Form);

            mork_size pending =
                yarn.mYarn_Fill + morkWriter_kYarnEscapeSlop + 1;
            this->IndentOverMaxLine(ev, pending,
                                    morkWriter_kDictAliasValueDepth);

            stream->Putc(ev, '=');  // start value
            ++mWriter_LineSize;

            this->WriteYarn(ev, &yarn);

            stream->Putc(ev, ')');  // end value
            ++mWriter_LineSize;
          } else
            atom->BadAtomKindError(ev);

          ++mWriter_DoneCount;
        }
      }
    }
  }
  return ev->Good();
}

mork_bool morkWriter::IsYarnAllValue(const mdbYarn* inYarn) {
  mork_fill fill = inYarn->mYarn_Fill;
  const mork_u1* buf = (const mork_u1*)inYarn->mYarn_Buf;
  const mork_u1* end = buf + fill;
  --buf;  // prepare for preincrement
  while (++buf < end) {
    mork_ch c = *buf;
    if (!morkCh_IsValue(c)) return morkBool_kFalse;
  }
  return morkBool_kTrue;
}

mork_bool morkWriter::PutVerboseCell(morkEnv* ev, morkCell* ioCell,
                                     mork_bool inWithVal) {
  morkStream* stream = mWriter_Stream;
  morkStore* store = mWriter_Store;

  mdbYarn* colYarn = &mWriter_ColYarn;

  morkAtom* atom = (inWithVal) ? ioCell->GetAtom() : (morkAtom*)0;

  mork_column col = ioCell->GetColumn();
  store->TokenToString(ev, col, colYarn);

  mdbYarn yarn;                      // to ref content inside atom
  morkAtom::AliasYarn(atom, &yarn);  // works even when atom==nil

  if (yarn.mYarn_Form != mWriter_RowForm)
    this->ChangeRowForm(ev, yarn.mYarn_Form);

  mork_size pending =
      yarn.mYarn_Fill + colYarn->mYarn_Fill + morkWriter_kYarnEscapeSlop + 3;
  this->IndentOverMaxLine(ev, pending, morkWriter_kRowCellDepth);

  stream->Putc(ev, '(');  // start cell
  ++mWriter_LineSize;

  this->WriteYarn(ev, colYarn);  // column

  pending = yarn.mYarn_Fill + morkWriter_kYarnEscapeSlop;
  this->IndentOverMaxLine(ev, pending, morkWriter_kRowCellValueDepth);
  stream->Putc(ev, '=');
  ++mWriter_LineSize;

  this->WriteYarn(ev, &yarn);  // value

  stream->Putc(ev, ')');  // end cell
  ++mWriter_LineSize;

  return ev->Good();
}

mork_bool morkWriter::PutVerboseRowCells(morkEnv* ev, morkRow* ioRow) {
  morkCell* cells = ioRow->mRow_Cells;
  if (cells) {
    morkCell* end = cells + ioRow->mRow_Length;
    --cells;  // prepare for preincrement:
    while (++cells < end && ev->Good()) {
      // note we prefer to avoid writing cells here with no value:
      if (cells->GetAtom())  // does cell have any value?
        this->PutVerboseCell(ev, cells, /*inWithVal*/ morkBool_kTrue);
    }
  }
  return ev->Good();
}

mork_bool morkWriter::PutCell(morkEnv* ev, morkCell* ioCell,
                              mork_bool inWithVal) {
  morkStream* stream = mWriter_Stream;
  char buf[128];          // buffer for staging hex ids
  char* idBuf = buf + 2;  // where the id always starts
  buf[0] = '(';           // we always start with open paren
  buf[1] = '^';           // column is always a hex ID

  mork_size colSize = 0;  // the size of col hex ID
  mork_size bytesWritten;

  morkAtom* atom = (inWithVal) ? ioCell->GetAtom() : (morkAtom*)0;

  mork_column col = ioCell->GetColumn();
  char* p = idBuf;
  colSize = ev->TokenAsHex(p, col);
  p += colSize;

  mdbYarn yarn;                      // to ref content inside atom
  morkAtom::AliasYarn(atom, &yarn);  // works even when atom==nil

  if (yarn.mYarn_Form != mWriter_RowForm)
    this->ChangeRowForm(ev, yarn.mYarn_Form);

  if (atom && atom->IsBook())  // is it possible to write atom ID?
  {
    this->IndentAsNeeded(ev, morkWriter_kRowCellDepth);
    *p++ = '^';
    morkBookAtom* ba = (morkBookAtom*)atom;

    mork_size valSize = ev->TokenAsHex(p, ba->mBookAtom_Id);
    mork_fill yarnFill = yarn.mYarn_Fill;
    mork_bool putImmYarn = (yarnFill <= valSize);
    if (putImmYarn) putImmYarn = this->IsYarnAllValue(&yarn);

    if (putImmYarn)  // value no bigger than id?
    {
      p[-1] = '=';  // go back and clobber '^' with '=' instead
      if (yarnFill) {
        MORK_MEMCPY(p, yarn.mYarn_Buf, yarnFill);
        p += yarnFill;
      }
      *p++ = ')';
      mork_size distance = (mork_size)(p - buf);
      stream->Write(ev->AsMdbEnv(), buf, distance, &bytesWritten);
      mWriter_LineSize += bytesWritten;
    } else {
      p += valSize;
      *p = ')';
      stream->Write(ev->AsMdbEnv(), buf, colSize + valSize + 4, &bytesWritten);
      mWriter_LineSize += bytesWritten;
    }

    if (atom->IsAtomDirty()) {
      atom->SetAtomClean();
      ++mWriter_DoneCount;
    }
  } else  // must write an anonymous atom
  {
    mork_size pending =
        yarn.mYarn_Fill + colSize + morkWriter_kYarnEscapeSlop + 2;
    this->IndentOverMaxLine(ev, pending, morkWriter_kRowCellDepth);

    mork_size bytesWritten;
    stream->Write(ev->AsMdbEnv(), buf, colSize + 2, &bytesWritten);
    mWriter_LineSize += bytesWritten;

    pending -= (colSize + 2);
    this->IndentOverMaxLine(ev, pending, morkWriter_kRowCellDepth);
    stream->Putc(ev, '=');
    ++mWriter_LineSize;

    this->WriteYarn(ev, &yarn);
    stream->Putc(ev, ')');  // end cell
    ++mWriter_LineSize;
  }
  return ev->Good();
}

mork_bool morkWriter::PutRowCells(morkEnv* ev, morkRow* ioRow) {
  morkCell* cells = ioRow->mRow_Cells;
  if (cells) {
    morkCell* end = cells + ioRow->mRow_Length;
    --cells;  // prepare for preincrement:
    while (++cells < end && ev->Good()) {
      // note we prefer to avoid writing cells here with no value:
      if (cells->GetAtom())  // does cell have any value?
        this->PutCell(ev, cells, /*inWithVal*/ morkBool_kTrue);
    }
  }
  return ev->Good();
}

mork_bool morkWriter::PutRow(morkEnv* ev, morkRow* ioRow) {
  if (ioRow && ioRow->IsRow()) {
    mWriter_RowForm = mWriter_TableForm;

    mork_size bytesWritten;
    morkStream* stream = mWriter_Stream;
    char buf[128 + 16];  // buffer for staging hex
    char* p = buf;
    mdbOid* roid = &ioRow->mRow_Oid;
    mork_size ridSize = 0;

    mork_scope tableScope = mWriter_TableRowScope;

    if (ioRow->IsRowDirty()) {
      if (mWriter_SuppressDirtyRowNewline || !mWriter_LineSize)
        mWriter_SuppressDirtyRowNewline = morkBool_kFalse;
      else {
        if (tableScope)  // in a table?
          mWriter_LineSize = stream->PutIndent(ev, morkWriter_kRowDepth);
        else
          mWriter_LineSize = stream->PutIndent(ev, 0);  // no indent
      }

      //      mork_rid rid = roid->mOid_Id;
      *p++ = '[';  // start row punct=1
      mork_size punctSize =
          (mWriter_BeVerbose) ? 9 : 1;  // counting "[ /*r=*/ "

      mork_bool rowRewrite = ioRow->IsRowRewrite();

      if (rowRewrite && mWriter_Incremental) {
        *p++ = '-';
        ++punctSize;  // counting '-'
        ++mWriter_LineSize;
      }

      if (tableScope && roid->mOid_Scope == tableScope)
        ridSize = ev->TokenAsHex(p, roid->mOid_Id);
      else
        ridSize = ev->OidAsHex(p, *roid);

      p += ridSize;

      if (mWriter_BeVerbose) {
        *p++ = ' ';  // punct=2
        *p++ = '/';  // punct=3
        *p++ = '*';  // punct=4
        *p++ = 'r';  // punct=5
        *p++ = '=';  // punct=6

        mork_size usesSize = ev->TokenAsHex(p, (mork_token)ioRow->mRow_GcUses);
        punctSize += usesSize;
        p += usesSize;

        *p++ = '*';  // punct=7
        *p++ = '/';  // punct=8
        *p++ = ' ';  // punct=9
      }
      stream->Write(ev->AsMdbEnv(), buf, ridSize + punctSize, &bytesWritten);
      mWriter_LineSize += bytesWritten;

      // special case situation where row puts exactly one column:
      if (!rowRewrite && mWriter_Incremental && ioRow->HasRowDelta()) {
        mork_column col = ioRow->GetDeltaColumn();
        morkCell dummy(col, morkChange_kNil, (morkAtom*)0);
        morkCell* cell = 0;

        mork_bool withVal = (ioRow->GetDeltaChange() != morkChange_kCut);

        if (withVal) {
          mork_pos cellPos = 0;  // dummy pos
          cell = ioRow->GetCell(ev, col, &cellPos);
        }
        if (!cell) cell = &dummy;

        if (mWriter_BeVerbose)
          this->PutVerboseCell(ev, cell, withVal);
        else
          this->PutCell(ev, cell, withVal);
      } else  // put entire row?
      {
        if (mWriter_BeVerbose)
          this->PutVerboseRowCells(ev, ioRow);  // write all, verbosely
        else
          this->PutRowCells(ev, ioRow);  // write all, hex notation
      }

      stream->Putc(ev, ']');  // end row
      ++mWriter_LineSize;
    } else {
      this->IndentAsNeeded(ev, morkWriter_kRowDepth);

      if (tableScope && roid->mOid_Scope == tableScope)
        ridSize = ev->TokenAsHex(p, roid->mOid_Id);
      else
        ridSize = ev->OidAsHex(p, *roid);

      stream->Write(ev->AsMdbEnv(), buf, ridSize, &bytesWritten);
      mWriter_LineSize += bytesWritten;
      stream->Putc(ev, ' ');
      ++mWriter_LineSize;
    }

    ++mWriter_DoneCount;

    ioRow->SetRowClean();  // try to do this at the very last
  } else
    ioRow->NonRowTypeWarning(ev);

  return ev->Good();
}

// 456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789