summaryrefslogtreecommitdiff
path: root/binfilter/bf_so3/source/persist/persist.cxx
blob: f473e99568cade4f49d5f8e3b0b58c4b954276cf (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

#include <stdio.h>

#include <bf_so3/persist.hxx>
#include <bf_so3/svstor.hxx>
#include <bf_so3/embobj.hxx>
#include <bf_so3/pseudo.hxx>   // fuer Hack
#include "bf_so3/soerr.hxx"   // fuer Hack
#include "bf_so3/outplace.hxx"   // im- export

#include <sot/storinfo.hxx>
#include <sot/formats.hxx>

#include <tools/debug.hxx>
#include <bf_tools/string.hxx>

#include <unotools/ucbhelper.hxx>
#include <unotools/tempfile.hxx>

namespace binfilter {

/************** class SvInfoObject ***************************************/
SV_IMPL_PERSIST1(SvInfoObject,SvPersistBase)

class SvInfoObject_Impl
{
public:
    String aRealStorageName;
    const String& GetRealStorageName() {return aRealStorageName;}
    void SetRealStorageName( const String& rName )
    {
        if ( aRealStorageName.Len() )
            ::utl::UCBContentHelper::Kill( aRealStorageName );
        aRealStorageName=rName;
    }
};

SvInfoObject::SvInfoObject()
    : pImp( new SvInfoObject_Impl )
    , bDeleted( FALSE )
{
}

SvInfoObject::SvInfoObject( SvPersist * pObj, const String & rName )
    : pImp( new SvInfoObject_Impl )
    , bDeleted( FALSE )
{
    SetObj( pObj );
    aObjName = rName;
}

SvInfoObject::SvInfoObject( const String& rObjName,
                            const SvGlobalName& rClassName )
    : pImp( new SvInfoObject_Impl )
    , bDeleted( FALSE )
{
    aObjName = rObjName;
    aSvClassName = rClassName;
}

SvInfoObject::~SvInfoObject()
{
    pImp->SetRealStorageName( String() );
    delete pImp;
}

SvInfoObjectRef SvInfoObject::CreateCopy() const
{
    SvCreateInstancePersist pFunc = SOAPP->aInfoClassMgr.Get( GetClassId() );
    SvInfoObject* pI;
    SvPersistBase* pB;
    (*pFunc)(&pB);

    pI = PTR_CAST(SvInfoObject,pB);
    DBG_ASSERT( pI, "cannot cast" );
    SvInfoObjectRef xI( pI );
    xI->Assign( this );
    return xI;
}

void SvInfoObject::Assign( const SvInfoObject * pObj )
{
    aObjName     = pObj->GetObjName();
    aStorName    = pObj->GetStorageName();
    pImp->SetRealStorageName( pObj->pImp->GetRealStorageName() );
    aSvClassName = pObj->GetClassName();
}

#define INFO_OBJECT_VER_MIN     (BYTE)0
#define INFO_OBJECT_VER_AKT     (BYTE)1

void SvInfoObject::Load( SvPersistStream & rStm )
{
    BYTE nVers = 0;
    rStm >> nVers;
    // wegen Warning unter OS2 auskommentiert
    DBG_ASSERT( /*nVers >= INFO_OBJECT_VER_MIN &&*/
                nVers <= INFO_OBJECT_VER_AKT,
                "SvInfoObject version conflict" );
    if( nVers > INFO_OBJECT_VER_AKT )
        rStm.SetError( SVSTREAM_WRONGVERSION );
    else
    {
        rStm.ReadByteString( aStorName, gsl_getSystemTextEncoding() );
        rStm.ReadByteString( aObjName, gsl_getSystemTextEncoding() );
        if( !aObjName.Len() )
            aObjName = aStorName;
        rStm >> aSvClassName;
        if( aSvClassName == *SvInPlaceObject::ClassFactory()
          || aSvClassName == *SvEmbeddedObject::ClassFactory() )
        {
            // use SvOutPlaceObject class as ole wrapper
            aSvClassName = *SvOutPlaceObject::ClassFactory();
        }
        if(nVers > 0)
            rStm >> bDeleted;
    }
}

void SvInfoObject::Save( SvPersistStream & ) {}

void SvInfoObject::SetObj( SvPersist * pObj )
{
    aObj = pObj;
    if( pObj )
        aSvClassName = *pObj->GetSvFactory();
}

String SvInfoObject::GetObjName() const
{
    return aObjName;
}

String SvInfoObject::GetStorageName() const
{
    if( aStorName.Len() )
        return aStorName;
    return aObjName;
}

SvGlobalName SvInfoObject::GetClassName() const
{
    if( GetPersist() )
        ((SvInfoObject *)this)->aSvClassName = *GetPersist()->GetSvFactory();
    return aSvClassName;
}

void SvInfoObject::SetDeleted( BOOL bDel )
{
    if( bDel == bDeleted )
        return;

    bDeleted = bDel;

    if( aObj.Is() )
    {
        if ( bDel && !pImp->GetRealStorageName().Len() && !aObj->IsHandsOff() )
        {
            SvStorageRef aStor = aObj->GetStorage();
            String aRealName = ::utl::TempFile().GetURL();
            BOOL bKill = TRUE;
            SvStorageRef aNewStor = new SvStorage( !aStor->IsOLEStorage(), aRealName, STREAM_STD_READWRITE, 0 );
            if( aNewStor->GetError() == SVSTREAM_OK )
            {
                bool bRet;
                if( aObj->IsModified() )
                {
                    bRet = false;
                }
                else
                {
                    bRet = aStor->CopyTo( aNewStor );
                }

                if( bRet )
                {
                    aObj->DoHandsOff();
                    if(false)
                    {
                        pImp->SetRealStorageName( aNewStor->GetName() );
                        bKill = FALSE;
                    }
                    else
                    {
                        // was aObj->DoSaveCompleted(); but return value is not checked
                    }
                }
            }

            if ( bKill )
                ::utl::UCBContentHelper::Kill( aRealName );

        }

        if( aObj->IsEnableSetModified() == bDel )
        {
            aObj->EnableSetModified( !bDel );
        }
    }
}

//==================class SvObjectContainer================================
SV_IMPL_FACTORY(SvObjectContainerFactory)
    {
    }
};
TYPEINIT1(SvObjectContainerFactory,SvFactory);

SO2_IMPL_STANDARD_CLASS1_DLL(SvObjectContainer,SvObjectContainerFactory,SvObject,
                             0x96dee2a1, 0x62f6, 0x11cf,
                             0x89, 0xca, 0x0, 0x80, 0x29, 0xe4, 0xb0, 0xb1 )

::IUnknown * SvObjectContainer::GetMemberInterface( const SvGlobalName & )
{
    return NULL;
}

#ifdef TEST_INVARIANT
void SvObjectContainer::TestMemberObjRef( BOOL /*bFree*/ )
{
}

void SvObjectContainer::TestMemberInvariant( BOOL /*bPrint*/ )
{
}
#endif

SvObjectContainer::SvObjectContainer()
/*  [Beschreibung]

    Konstruktor der Klasse SvObjectContainer.
*/
{
}

SvObjectContainer::~SvObjectContainer()
/*  [Beschreibung]

    Destruktor der Klasse SvObjectContainer.
*/
{
    // Parent haelt immer Referenz, deswegen muss der das Objekt
    // schon Removed sein
}

//==============class SvPersist============================================
SV_IMPL_FACTORY(SvPersistFactory)
    {
    }
};
TYPEINIT1(SvPersistFactory,SvFactory);

SO2_IMPL_STANDARD_CLASS1_DLL(SvPersist,SvPersistFactory,SvObjectContainer,
                             0xC24CC4E0L, 0x73DF, 0x101B,
                             0x80,0x4C,0xFD,0xFD,0xFD,0xFD,0xFD,0xFD )

::IUnknown * SvPersist::GetMemberInterface( const SvGlobalName & )
{
    return NULL;
}

#ifdef TEST_INVARIANT
void SvPersist::TestMemberObjRef( BOOL /*bFree*/ )
{
    if( pChildList )
    {
        ULONG nCount = pChildList->Count();
        for( ULONG i = 0; i < nCount; i++ )
        {
            SvInfoObject * pEle = pChildList->GetObject( i );
            if( pEle->GetObj() )
            {
                ByteString aTest( "\t\tpChildList[ " );
                aTest += ByteString_CreateFromInt32( i );
                aTest += " ] == ";
                aTest += ByteString_CreateFromInt32( (ULONG)pEle->GetObj() );
                OSL_TRACE( "%s", aTest.GetBuffer() );
            }
        }
    }
    if( aStorage.Is() )
    {
        ByteString aTest( "\t\taStorage == " );
        aTest += ByteString_CreateFromInt32( (ULONG)&aStorage );
        OSL_TRACE( "%s", aTest.GetBuffer() );
    }
}

void SvPersist::TestMemberInvariant( BOOL /*bPrint*/ )
{
#ifdef DBG_UTIL
    DBG_ASSERT( !(bOpSave || bOpSaveAs), "bOpSave && bOpSaveAs" );
    if( !bIsInit )
    {
        if ( !bCreateTempStor )
        {
            DBG_ASSERT( bOpHandsOff && !aStorage.Is(), "failed: bOpHandsOff && !aStorage.Is()" );
            DBG_ASSERT( !bOpHandsOff && aStorage.Is(), "failed: !bOpHandsOff && aStorage.Is()" );
        }
    }
#endif
}
#endif

SvPersist::SvPersist()
    : bIsModified     ( FALSE )
    , bIsInit         ( FALSE )
    , bOpSave         ( FALSE )
    , bOpSaveAs       ( FALSE )
    , bSaveExtern     ( FALSE )
    , bOpHandsOff     ( FALSE )
    , bCreateTempStor ( FALSE )
    , bSaveFailed     ( FALSE )
    , bEnableSetModified( TRUE )
    , bIsObjectShell  ( FALSE )
    , nModifyCount    ( 0 )        // Anzahl der modifizierten Childs und sich selbst
    , pParent         ( NULL )     // kein zusaetzlicher RefCount
    , pChildList      ( NULL )
{
}

SvPersist::~SvPersist()
{
    // Parent haelt immer Referenz, deswegen muss der das Objekt
    // schon Removed sein
    dtorClear();
}

#ifdef DBG_UTIL
void SvPersist::AssertInit() const
{
    DBG_ASSERT( bIsInit, "super class SvPersist: call InitNew or Load bevor other calls" );
}
#endif

void SvPersist::FillClass
(
    SvGlobalName * pClassName,  /* Der Typ der Klasse */
    ULONG * pFormat,            /* Das Dateiformat in dem geschrieben wird */
    String * pAppName,          /* Der Applikationsname */
    String * pFullTypeName,     /* Der genaue Name des Typs */
    String * pShortTypeName,    /* Der kurze Name des Typs  */
    long /*nFileFormat */       /* F"ur dieses Office-Format sollen die
                                   Parameter gef"ullt werden */
) const
/*  [Beschreibung]

    Diese Methode liefert Informationen "uber den Typ und das Dateiformat
    des Objektes. Alle Parameter werden von der Methode gefuellt.

    [R"uckgabewert]

    *pClassName     Liefert den Typ-Identifier des Objektes.
    *pFormat        Die FormatId des Storages.
    *pAppName       Den sprachabh"angigen Applikationsnamen.
    *pFullTypeName  Den sprachabh"angigen Namen des Typs.
    *pShortTypeName Den kurzen sprachabh"angigen Namen des Typs. Er darf
                    nicht l"anger als 15 Zeichen sein.

    [Anmerkung]

    F"uer externe Objekte ist pAppName und pShortName leer.

    [Beispiel]

    MyClass::FillClass( ... )
    {
        *pClassName     = *SvFactory::GetSvFactory(); // keine emulation
        *pFormat        = nMyDocFormat;
        *pAppName       = "StarDivison Calc 3.0";
        *pFullTypeName  = "StarDivison Calc 3.0 Tabelle";
        *pShortTypeName = "Tabelle";
    }
*/
{
    *pFormat        = 0;
    *pFullTypeName  = *pShortTypeName = *pAppName = String();
    *pClassName     = SvGlobalName();

    if( Owner() )
        *pClassName = *GetSvFactory();
}

void SvPersist::SetupStorage( SvStorage * pStor ) const
{
    SvUniqueName    aName;
    String          aFullTypeName, aShortTypeName, aAppName;
    ULONG           nClipFormat;

    // this code is used in the binfilter module only
    // this module will not be made aware of any new file formats
    ULONG nVersion = pStor->GetVersion();
    if ( nVersion > SOFFICE_FILEFORMAT_60 )
    {
        nVersion = SOFFICE_FILEFORMAT_60;
        pStor->SetVersion( nVersion );
    }

    FillClass( &aName, &nClipFormat, &aAppName,
                &aFullTypeName, &aShortTypeName, pStor->GetVersion() );
    pStor->SetClass( aName, nClipFormat, aShortTypeName );
}

SvInfoObjectMemberList * SvPersist::GetInfoList()
{
    if( !pChildList )
        pChildList = new SvInfoObjectMemberList();
    return pChildList;
}

#ifdef _NO_MODIFY_ADVISE
void SvPersist::SetModifiedFormat( ULONG nFormat )
{
    if( !Owner() )
    { // sonst wird das durch die Baumstruktur erledigt
        if( aAdvSink.Is() )
        {
            DBG_ASSERT( !nFormat, "SvPersist::SetModifiedFormat: double set" );
            SvAdviseRef aAdv( this );
            aAdv->RemoveAdvise( &aAdvSink, ADVISE_DATA );
            aAdvSink.Clear();
        }
        if( nFormat )
        {
            SvAdviseRef aAdv( this );
            if( aAdv.Is() )
            { // Es kann ein Link gesetzt werden
                aAdvSink = new SvPersistAdviseSink( this );
                aAdv->AddDataAdvise( &aAdvSink, SvDataType( nFormat ),
                                     ADVISEMODE_NODATA );
                return;
            }
            DBG_ASSERT( aAdv.Is(), " cannot install data advise" );
        }
    }
}
#endif

BOOL SvPersist::Insert( SvInfoObject * pInfoObj )
{
    ASSERT_INIT()
    SvInfoObjectRef aRef( pInfoObj );

    DBG_ASSERT( pInfoObj->GetObjName().Len(),
                "Try to Insert Object without name" );

    if( !GetInfoList() )
        return FALSE; // es konnte keine Liste erstellt werden

    SvPersist * pChild = pInfoObj->GetPersist();

    if( pChild )
    {
        // als erstes, wegen Patch in IsModified
        if( pChild->Owner() && pChild->IsModified() )
            // modify-Zaehler fuer Child raufzaehlen
            CountModified( TRUE );

        if( pChild->pParent )
            // Aus altem Parent entfernen
            pChild->pParent->Remove( pChild );

        pChild->pParent   = this;        // kein zusaetzlicher RefCount
    }

    pChildList->Append( pInfoObj );
    SetModified( TRUE );

    return TRUE;
}

BOOL SvPersist::Move( SvInfoObject * pInfoObj, const String & rStorName, BOOL bCopyStorage )
{
    ASSERT_INIT()
    SvInfoObjectRef aRef( pInfoObj );
    DBG_ASSERT( pInfoObj->GetObjName().Len(), "Try to Move Object without name" );

    BOOL bRet = TRUE;
    if( !GetInfoList() )
        bRet = FALSE;

    SvPersist * pChild = pInfoObj->GetPersist();
    if( !pChild )
        bRet = FALSE;

    if( bRet && ( this != pChild->pParent || !GetStorage()->IsStorage( rStorName ) ) )
    {
        bRet = FALSE;
        String aRealName;
        SvPseudoObjectRef xPO( pChild );
        if ( !GetStorage()->IsOLEStorage() && xPO.Is() && ( xPO->GetMiscStatus() & SVOBJ_MISCSTATUS_SPECIALOBJECT ) )
        {
            (void)bCopyStorage;
            // save in binary format - there is no other format !
            DBG_ASSERT( !bCopyStorage, "Impossible to copy storage!" );
            aRealName = ::utl::TempFile().GetURL();
            SvStorageRef aNewStor( new SvStorage( FALSE, aRealName, STREAM_STD_READWRITE, 0 ) );
        }
        else
        {
            bRet = ImplCopy( pChild, rStorName, TRUE );
        }

        if( bRet )
        {
            pInfoObj->pImp->SetRealStorageName( aRealName );
            bRet = Insert( pInfoObj );
        }
        else if ( aRealName.Len() )
            ::utl::UCBContentHelper::Kill( aRealName );
    }

    return bRet;
}

SvPersistRef SvPersist::CopyObject( const String& rObjName, const String& rNewName, SvPersist * pSrc )
{
    SvPersistRef    xNewObject;
    SvPersist       *pSrcPersist = ( pSrc ? pSrc : this );
    SvInfoObject    *pOld = pSrcPersist->Find( rObjName );
    if( pOld )
    {
        SvInfoObjectRef xNewInfo( pOld->CreateCopy() );

        if ( pOld->GetPersist() )
        {
            SvEmbeddedInfoObject* pI = PTR_CAST( SvEmbeddedInfoObject, pOld );
            SvEmbeddedObjectRef xEmbObj( pOld->GetPersist() );
            if ( pI && xEmbObj.Is() )
                pI->SetInfoVisArea( xEmbObj->GetVisArea() );
        }

        SvPersistRef        xOldObject( pSrcPersist->GetObject( rObjName ) );
        SvPseudoObjectRef   xPO( xOldObject );
        if ( !GetStorage()->IsOLEStorage() && xPO.Is() && ( xPO->GetMiscStatus() & SVOBJ_MISCSTATUS_SPECIALOBJECT ) )
        {
            // save in binary format - there is no other format !
            String aRealName = ::utl::TempFile().GetURL();
            SvStorageRef xNewStor( new SvStorage( FALSE, aRealName, STREAM_STD_READWRITE, 0 ) );
            if ( false)
            {
            }
            else
                ::utl::UCBContentHelper::Kill( aRealName );
        }
        else
        {
            Copy( rNewName, rNewName, pOld, pSrcPersist );
            xNewObject = GetObject( rNewName );
        }
    }

    return xNewObject;
}

/*************************************************************************
|*    SvPersist::Copy()
|*
|*    Beschreibung: Kopiert ein Objekt von der einen in die andere
|*                  Persist Instanz
*************************************************************************/
BOOL SvPersist::Copy( const String & rNewObjName, const String & rNewStorName,
                      SvInfoObject * pSrcI, SvPersist * pSrc )
{
    BOOL bRet = TRUE;
    if( !GetInfoList() )
        bRet = FALSE; // es konnte keine Liste erstellt werden

    SvInfoObjectRef xI( pSrcI->CreateCopy() );
    xI->SetObjName( rNewObjName );
    xI->SetStorageName( rNewStorName );
    xI->pImp->aRealStorageName.Erase();

    DBG_ASSERT( rNewStorName == rNewObjName || !rNewStorName.Len(), "Can't set storage name in this context!" );

    if( pSrcI->GetPersist() )
    {
        bRet = ImplCopy( pSrcI->GetPersist(), xI->GetStorageName(), FALSE );
    }
    else
    {
        // copy storage of new element into my storage
        bRet = pSrc->GetStorage()->CopyTo( pSrcI->GetStorageName(), GetStorage(), xI->GetStorageName() );
    }

    if( bRet )
    {
        pChildList->Append( xI );
        SetModified( TRUE );
    }

    return bRet;
}

BOOL SvPersist::ImplCopy( SvPersist* pSrc, const String& rStorageName, BOOL bMoving )
{
    BOOL bRet = FALSE;
    SvStorageRef aSrcEleStor = pSrc->GetStorage();
    SvStorage* pStor = GetStorage();

    long nObjVersion = aSrcEleStor->GetVersion();
    BOOL bIntern = SvFactory::IsIntern( aSrcEleStor->GetClassName(), &nObjVersion );
    if( nObjVersion >= SOFFICE_FILEFORMAT_60 )
    {
        ULONG nFormat = aSrcEleStor->GetFormat();
        switch( nFormat )
        {
        case SOT_FORMATSTR_ID_STARWRITER_8:
        case SOT_FORMATSTR_ID_STARWRITERWEB_8:
        case SOT_FORMATSTR_ID_STARWRITERGLOB_8:
        case SOT_FORMATSTR_ID_STARDRAW_8:
        case SOT_FORMATSTR_ID_STARIMPRESS_8:
        case SOT_FORMATSTR_ID_STARCALC_8:
        case SOT_FORMATSTR_ID_STARCHART_8:
        case SOT_FORMATSTR_ID_STARMATH_8:
            nObjVersion = SOFFICE_FILEFORMAT_8;
            break;
        default:
            break;
        }
    }

    SvPseudoObjectRef xPO( pSrc );
    if ( !pStor->IsOLEStorage() && xPO.Is() && ( xPO->GetMiscStatus() & SVOBJ_MISCSTATUS_SPECIALOBJECT ) )
    {
        // these object are saved into the document stream
        bRet = FALSE;
        OSL_FAIL("Can't copy special objects into XML format!");
    }
    else
    {
        SvStorageRef aNewStor;
        if( !bIntern || pStor->IsOLEStorage() )
            aNewStor = pStor->OpenOLEStorage( rStorageName, STREAM_STD_READWRITE | STREAM_TRUNC, 0 );
        else
            aNewStor = pStor->OpenUCBStorage( rStorageName, STREAM_STD_READWRITE | STREAM_TRUNC, 0 );

        if( aNewStor->GetError() == SVSTREAM_OK )
        {
            BOOL bSave = pSrc->IsModified();
            if ( !bSave )
            {
                SvStorageInfoList aList;
                aSrcEleStor->FillInfoList( &aList );
                bSave = aList.empty();
                if ( !bSave )
                {
                    if( pStor->GetVersion() <= SOFFICE_FILEFORMAT_50 )
                    {
                        // If we store into the old binary format, objects
                        // that have a newer file format version than the
                        // destination storage have to be saved.
                        bSave = bIntern && nObjVersion > pStor->GetVersion();
                    }
                    else
                    {
                        // If we store into an XML format, all internal objects that
                        // aren't stored in the XML format or that are stored in
                        // a newer XML format have to be saved.
                        bSave =
                                ( nObjVersion < SOFFICE_FILEFORMAT_60 ||
                                    nObjVersion > pStor->GetVersion() );
                    }
                }
            }

            aNewStor->SetVersion( pStor->GetVersion() );

            if( bSave )
            {
                bRet = false;
            }
            else
            {
                SvStorageRef xEleStor = pSrc->GetStorage();
                pSrc->DoHandsOff();
                bRet = xEleStor->CopyTo( aNewStor );
                if ( !bRet || !bMoving )
                {
                     // was pSrc->DoSaveCompleted( xEleStor ); but return value is not checked
                }
            }

            if ( bRet && bMoving )
            {
                // was pSrc->DoSaveCompleted( aNewStor ); but return value is not checked
            }
        }
    }

    return bRet;
}

BOOL SvPersist::Unload( SvInfoObject *pInfoObj)
{
    if( bOpSaveAs || bOpHandsOff || bOpSave )
        return FALSE;

    DBG_ASSERT(pInfoObj,"Kein InfoObj");
    SvPersistRef xChild = pInfoObj->GetPersist();
    DBG_ASSERT(xChild->pParent == this,"wrong parent");
    if( xChild.Is() )
    {
        if( xChild->Owner() )
        {
            DBG_ASSERT(!xChild->IsModified(),"unload modified object");
            if( xChild->IsModified() )
                // modified, do not unload
                return FALSE;
        }

        // update info object before unload
        SvEmbeddedInfoObject * pI = PTR_CAST(SvEmbeddedInfoObject, pInfoObj );
        if( pI )
        {
            pI->GetVisArea();
            pI->IsLink();
        }

        SvPersistRef x;
        pInfoObj->SetObj( x );

        // Ein Hack, da ueber den RefCount keine Logik implementiert werden daerf
        if ( (xChild->bIsObjectShell && xChild->GetRefCount() == 2)
          || (!xChild->bIsObjectShell && xChild->GetRefCount() == 1) )
        {
            xChild->DoClose();
            xChild->pParent = NULL;
            return TRUE;
        }
        else
            pInfoObj->SetObj( xChild );
    }

    return FALSE;
}

BOOL SvPersist::Unload( SvPersist * pChild )
{
    DBG_ASSERT( pChild, "SvPersist::Unload(): pChild == NULL" );
    if( pChildList )
    {
        SvInfoObjectRef pEle = pChildList->First();
        while( pEle.Is() )
        {
            if( pEle->GetPersist() == pChild )
                return Unload( pEle );
            pEle = pChildList->Next();
        }
    }
    return FALSE;
}

void SvPersist::Remove( SvInfoObject *pInfoObj)
{
    DBG_ASSERT(pInfoObj,"Kein InfoObj");
    SvPersist * pChild = pInfoObj->GetPersist();
    if( pChild )
    {
        if( pChild->Owner() && pChild->IsModified() )
            // modify-Zaehler fuer Child runterzaehlen
            CountModified( FALSE );
        if( pChild->pParent == this )
            pChild->pParent = NULL;  // kein zusaetzlicher RefCount
    }
    pChildList->Remove( pInfoObj );
    SetModified( TRUE );
}


void SvPersist::Remove( const String & rName )
{
    SvInfoObjectRef pInfo = Find( rName );
    if( pInfo.Is() )
        Remove(pInfo);
}

void SvPersist::Remove( SvPersist * pChild )
{
    DBG_ASSERT( pChild, "SvPersist::Remove(): pChild == NULL" );
    if( pChildList )
    {
        SvInfoObjectRef pEle = pChildList->First();
        while( pEle.Is() )
        {
            if( pEle->GetPersist() == pChild )
            {
                Remove(pEle);
                break;
            }
            pEle = pChildList->Next();
        }
    }
}

void SvPersist::dtorClear()
{
    if( pChildList )
    {
        SvInfoObjectMemberList * pList = pChildList;
        pChildList = NULL; //Schutz vor Remove bei Destruktor
        SvInfoObjectRef pEle = pList->Last();
        pList->Remove();
        while( pEle.Is() )
        {
            if( pEle->GetPersist() )
            {
                //pEle->GetPersist()->SetModifiedFormat( 0 );
                pEle->GetPersist()->pParent = NULL;  // kein zusaetzlicher RefCount
            }
            pEle = pList->Last();
            pList->Remove();
        }
        delete pList;
    }
}

SvInfoObject * SvPersist::Find( const String & rName ) const
{
    if( pChildList )
    { // Befindet sich das Objekt in der aktuellen Liste
        SvInfoObjectRef pEle = pChildList->First();
        while( pEle.Is() )
        {
            if( pEle->GetObjName() == rName )
                return pEle;
            pEle = pChildList->Next();
        }
    }
    return NULL;
}

SvInfoObject * SvPersist::Find( const SvPersist * pObj_ ) const
{
    if( pChildList )
    { // Befindet sich das Objekt in der aktuellen Liste
        SvInfoObject* pEle = pChildList->First();
        while( pEle )
        {
            if( pEle->GetPersist() == pObj_ )
                return pEle;
            pEle = pChildList->Next();
        }
    }
    return NULL;
}

BOOL SvPersist::HasObject( const String & rObjName )
{
    if( Owner() )
    {
        // Befindet sich das Objekt in der aktuellen Liste
        if( Find( rObjName ) )
            return TRUE;
    }
    return FALSE;
}

SvPersistRef SvPersist::CreateObjectFromStorage( SvInfoObject* pEle, const SvStorageRef& xStor )
{
    // Es gibt einen Storage zum Child
    // entsprechende Sv-Klasse erzeugen
    SvFactory* pFact=NULL;
    SvPersistRef xPer = &pFact->CreateAndLoad( xStor );
    if( xPer.Is() )
    {
        // Parent einsetzten
        xPer->pParent = this;

        // ist ein persistentes Objekt
        // muss initialisiert sein
        pEle->SetObj( xPer );
    }

    SvEmbeddedInfoObject* pI = PTR_CAST( SvEmbeddedInfoObject, pEle );
    SvEmbeddedObjectRef xEmbObj( xPer );
    if ( pI && xEmbObj.Is() )
    {
        BOOL bOld = xEmbObj->IsEnableSetModified();
        xEmbObj->EnableSetModified(FALSE);
        xEmbObj->SetVisArea( pI->GetVisArea() );
        xEmbObj->EnableSetModified(bOld);
    }

    return xPer;
}

SvPersistRef SvPersist::GetObject( const String & rObjName )
{
    SvPersistRef xReturn;
    if( Owner() )
    {
        SvInfoObject * pEle = Find( rObjName );
        if( !pEle )
            return SvPersistRef();
        if( pEle->GetPersist() )
            return pEle->GetPersist();

        SvStorageRef xSt = GetObjectStorage( pEle );
        if( xSt.Is() && xSt->SotStorage::GetError() == SVSTREAM_OK )
        {
            xReturn = CreateObjectFromStorage( pEle, xSt );
        }
        else
            GetStorage()->ResetError();
    }

    return xReturn;
}

SvStorageRef SvPersist::GetObjectStorage( SvInfoObject* pEle )
{
    SvStorageRef xRet;
    SvPersist* pP = pEle->GetPersist();
    if( pP )
        xRet = pP->GetStorage();
    else
    {
        if ( pEle->pImp->GetRealStorageName().Len() )
            xRet = new SvStorage( pEle->pImp->GetRealStorageName() );
        else
            xRet = GetStorage()->OpenStorage( pEle->GetStorageName() );
    }

    return xRet;
}

void SvPersist::SetModified( BOOL bModifiedP )
{
    ASSERT_INIT()
    DBG_ASSERT( bModifiedP || IsEnableSetModified(),
                "SetModified( FALSE ), obwohl IsEnableSetModified() == FALSE" );

    if( !IsEnableSetModified() )
        return;

    if( bIsModified != bModifiedP )
    { // der Status hat sich geaendert
        // Hilfsflag setzen
        bIsModified = bModifiedP;
        // Hierarchisch ModifyCount setzen
        CountModified( bModifiedP );
    }

    aModifiedTime = Time();
}

void SvPersist::CountModified( BOOL bMod )
{
    DBG_ASSERT( bMod || nModifyCount != 0, "modifiy count underflow" );
    nModifyCount += bMod ? 1 : -1;
    if( pParent )
    {
        /* Den ModifyCount des Parent nur einmal rauf oder runter
           zaehlen. Bei den Insert und Move Methoden muss dieser
           Zaehler dann nur einmal erhoeht oder erniedrigt werden
        */
        if( (bMod && nModifyCount == 1)
          || (!bMod && nModifyCount == 0) )
            pParent->CountModified( bMod );
    }
    if ( ( nModifyCount == 1 && bMod ) ||
         ( nModifyCount == 0 ) )
        ModifyChanged();
}

void SvPersist::EnableSetModified( BOOL bEnable )
{
    DBG_ASSERT( bEnable != bEnableSetModified,
                "EnableSetModified 2x mit dem gleichen Wert gerufen" );
    bEnableSetModified = bEnable;
}

void SvPersist::ModifyChanged()
{
}

BOOL SvPersist::IsModified()
{
    ASSERT_INIT()
    if( nModifyCount )
        // Wenn Count gesetzt, auf jeden Fall modifiziert
        return TRUE;
    if( Owner() )
    {
        if( pChildList )
        {
            SvInfoObject * pObj_ = pChildList->First();
            while( pObj_ )
            {
                if( pObj_->GetPersist() && pObj_->GetPersist()->IsModified() )
                    return TRUE;
                pObj_ = pChildList->Next();
            }
        }
    }
    return FALSE;
}

void SvPersist::InitMembers( SvStorage * pStor )
{
    bIsInit     = TRUE;
    if ( pStor )
        aStorage    = pStor;
    else
        bCreateTempStor = TRUE;
}

BOOL SvPersist::DoInitNew( SvStorage * pStor )
{
    EnableSetModified( FALSE );
    BOOL bRet = InitNew( pStor );
    EnableSetModified( TRUE );
    return bRet;
}

BOOL SvPersist::DoLoad( SvStorage * pStor )
{
    EnableSetModified( FALSE );
    BOOL bRet = Load( pStor );
    EnableSetModified( TRUE );
    return bRet;
}

BOOL SvPersist::DoLoad
(
    const String & rFileName,   /* Name der Datei, aus der das Objekt
                                   geladen werden soll. */
    StreamMode nStreamMode,     /* Attribute f"ur um die Datei zu "offnen */
    StorageMode nStorageMode    /* Attribute f"ur um die Datei zu "offnen */
)
/*  [Beschreibung]

    Das Objekt soll aus der angegebenen Datei geladen werden.

    [Anmerkung]

    Aufgrund fehlerhafter Ole funktionalitaet, wird der Stream auch
    schreibend geoeffnet, wenn nur READ angegeben ist und er nicht
    schreibgeschuetzt ist.

    [Querverweise]

    <SvPseudoObject::DoSave>
*/
{
    SvStorageRef xStg;
    SvGlobalName aGN;
    // Es wird nur die IPersistStorage-Schnittstelle angeboten
    xStg = new SvStorage( rFileName, nStreamMode | STREAM_WRITE, nStorageMode );
    if( !xStg.Is() )
        xStg = new SvStorage( rFileName, nStreamMode, nStorageMode );
    aGN = xStg->GetClassName();
    if( !xStg.Is() && aGN == *GetSvFactory() )
    {
        xStg = new SvStorage( rFileName, nStreamMode | STREAM_WRITE, nStorageMode );
        if( !xStg.Is() )
            xStg = new SvStorage( rFileName, nStreamMode, nStorageMode );
    }
    if( xStg.Is() && SVSTREAM_OK != xStg->GetError() )
        return FALSE;

    SetFileName( rFileName );
    return DoLoad( xStg );
}

void SvPersist::DoHandsOff()
{
    HandsOff();
}



SvStorage * SvPersist::GetStorage() const
{
    ASSERT_INIT()
    DBG_ASSERT( !bOpHandsOff, "in hands off state, no accessible storage" );
    if( bCreateTempStor )
    {
        SvPersist *pThis = (SvPersist*) this;
        DBG_ASSERT( !aStorage.Is(), "bCreateTempStorage && aStorage.Is()" );
        pThis->aStorage = new SvStorage( FALSE, String() );
        pThis->bCreateTempStor = FALSE;
        SetupStorage( pThis->aStorage );
    }

    return aStorage;
}

BOOL SvPersist::InitNew( SvStorage * pStor )
{
    InitMembers( pStor );
    BOOL bRet = FALSE;

    if( pStor )
        SetupStorage( pStor );

    if( Owner() )
        bRet = TRUE;
    return bRet;
}

BOOL SvPersist::DoOwnerLoad( SvStorage * pStor )
{
    InitMembers( pStor );

    return DoLoadContent( pStor, TRUE );
}

BOOL SvPersist::Load( SvStorage * pStor )
{
    dtorClear();
    InitMembers( pStor );

    SvGlobalName aActualClassName =
        SvFactory::GetAutoConvertTo( GetStorage()->GetClassName() );

    if( aActualClassName == *GetSvFactory() && SOFFICE_FILEFORMAT_60 > pStor->GetVersion() )
        return DoLoadContent( pStor, TRUE );

    return TRUE;
}

void SvPersist::HandsOff()
{
    ASSERT_INIT()

    if ( bOpHandsOff )
        return;

    if( pChildList )
    {
        for( ULONG i = 0; i < pChildList->Count(); i++ )
        {
            SvInfoObject * pEle = pChildList->GetObject( i );
            if( pEle->GetPersist() && !pEle->IsDeleted() )
            {
                // deleted objects don't need to take their hands off!
                ULONG nVersion = GetStorage()->GetVersion();
                SvEmbeddedObjectRef xEmb( pEle->GetPersist() );
                if ( xEmb.Is() && nVersion >= SOFFICE_FILEFORMAT_60 && ( xEmb->GetMiscStatus() & SVOBJ_MISCSTATUS_SPECIALOBJECT ) )
                    continue;
                // Im HandsOff darf nicht mehr auf Persist zugegriffen werden
                // deswegen alten Namen sichern
                pEle->GetPersist()->DoHandsOff();
            }
            pEle = pChildList->Next();
        }
    }

    bOpHandsOff = TRUE;
    aStorage.Clear();
}

#define PERSIST_STREAM "persist elements"
BOOL SvPersist::DoLoadContent( SvStorage * pStor, BOOL bOwner_ )
{
    SvStorageStreamRef aContStm;
    if( bOwner_ )
        aContStm = pStor->OpenStream( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( PERSIST_STREAM ) ),
                                     STREAM_READ | STREAM_NOCREATE );
    else
    {

        aContStm = pStor->OpenStream( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( SVEXT_PERSIST_STREAM ) ),
                                     STREAM_READ | STREAM_NOCREATE );
        if( aContStm->GetError() == SVSTREAM_FILE_NOT_FOUND )
            // Stream nicht vorhanden, Ole10Native probieren
            aContStm = pStor->OpenStream( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "\1Ole10Native" ) ),
                                         STREAM_READ | STREAM_NOCREATE );
    }

    // nicht vorhandener Stream ist kein Fehler
    if( aContStm->GetError() == SVSTREAM_FILE_NOT_FOUND )
        return TRUE;

    aContStm->SetVersion( pStor->GetVersion() );
    if( aContStm->GetError() == SVSTREAM_OK )
    {
        aContStm->SetBufferSize( 8192 );
#if defined( SOLARIS ) && defined( C40 )
     // patch to work around Sparc-Compiler bug
     SvEmbeddedObjectRef xSvEmbeddedObjectRef = this;
     if( xSvEmbeddedObjectRef.Is() )
        xSvEmbeddedObjectRef->LoadContent( *aContStm, bOwner_ );
     else
#else
        LoadContent( *aContStm, bOwner_ );
#endif
        aContStm->SetBufferSize( 0 );
        return aContStm->GetError() == SVSTREAM_OK;
    }
    return FALSE;
}

#define CHILD_LIST_VER (BYTE)2
void SvPersist::LoadContent( SvStream & rStm, BOOL bOwner_ )
{
    if( bOwner_ )
    {
        BYTE nVers;
        rStm >> nVers;
        DBG_ASSERT( nVers == CHILD_LIST_VER, "version conflict" );

        if( nVers != CHILD_LIST_VER )
            rStm.SetError( SVSTREAM_WRONGVERSION );
        else
        {
            BOOL bList;
            rStm >> bList;
            if( bList )
            {
                SvPersistStream aPStm( SOAPP->aInfoClassMgr, &rStm );
                aPStm >> *GetInfoList();
            }
        }
    }
    // nichts tun bei Fremd-Format
}

BOOL SvPersist::DoSaveContent( SvStorage * pStor, BOOL bOwner_ )
{
    // MAC MPW mag's sonst nicht ...
    String aPersistStream( bOwner_ ? String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( PERSIST_STREAM ) )
                                    : String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( SVEXT_PERSIST_STREAM ) ) );
    SvStorageStreamRef aContStm = pStor->OpenStream( aPersistStream );
    if( aContStm.Is() )
    {
        // Version am Stream setzen
        aContStm->SetVersion( pStor->GetVersion() );
        aContStm->SetBufferSize( 8192 );
#if defined( SOLARIS ) && defined( C40 )
     // patch to work around Sparc-Compiler bug with virtual multiple inheritance
     SvEmbeddedObjectRef xSvEmbeddedObjectRef = this;
     if( xSvEmbeddedObjectRef.Is() )
         xSvEmbeddedObjectRef->SaveContent( *aContStm, bOwner_ );
     else
#else
        SaveContent( *aContStm, bOwner_ );
#endif
        aContStm->SetBufferSize( 0 );
        return aContStm->GetError() == SVSTREAM_OK;
    }
    return FALSE;
}

void SvPersist::SaveContent( SvStream & rStm, BOOL bOwner_ )
{
    if( bOwner_ )
    {
        rStm << (BYTE)CHILD_LIST_VER;
        const SvInfoObjectMemberList * pList = GetObjectList();
        if( pList && pList->Count() )
        {
            rStm << (BOOL)TRUE;
            SvPersistStream aPStm( SOAPP->aInfoClassMgr, &rStm );
            aPStm << *pList;
        }
        else
            rStm << (BOOL)FALSE;
    }
    // nichts tun bei Fremd-Format
}

/*************************************************************************
|*    SvPersist::CleanUp()
|*
|*    Beschreibung
|*
|*    Loescht Storages, die im SvInfoObject dafuer geflagt wurden
*************************************************************************/

void SvPersist::CleanUp( BOOL bRecurse)
{
    if( pChildList && pChildList->Count() )
    {
        for(ULONG i=0;i<pChildList->Count();)
        {
            SvInfoObjectRef pEle = pChildList->GetObject(i);
            if( bRecurse )
            {
                SvPersistRef xPer = pEle->GetPersist();
                if(!xPer.Is())
                {
                    SvStorageRef aEleStor;
                    aEleStor = GetStorage()->OpenStorage( pEle->GetStorageName() );
                    if( !aEleStor.Is() )
                        continue;

                    xPer=new SvPersist;
                    xPer->DoOwnerLoad( aEleStor);
                    pEle->SetObj(xPer);
                    xPer->CleanUp();
                }
            }

            if( pEle->IsDeleted() )
            {
                DBG_ASSERT( pEle->GetRefCount()==2, "Loeschen von referenziertem Storage" );
                String aStorName(pEle->GetStorageName());
                Remove(pEle);
                GetStorage()->Remove(aStorName);
            }
            else
                i++;
        }
    }
}
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */