Update contrib.
1 // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // f32\srom\sr_rom.cpp
21 #define __SIZE(len) ((len)<<1)
23 #define __SIZE(len) (len)
26 const TRomHeader* CRom::iRomHeaderAddress=(TRomHeader*)UserSvr::RomHeaderAddress();
28 TInt TRomDir::BinarySearch(const TDesC& aName, TInt aLengthLimit, TInt aMode, TBool aDir) const
30 // RDebug::Print(_L("BinarySearch %S ll=%d m=%d dir=%d"), &aName, aLengthLimit, aMode, aDir);
31 const TRomDirSortInfo* s = SortInfo();
32 TInt l = aDir ? 0 : s->iSubDirCount;
33 TInt r = aDir ? s->iSubDirCount : s->iSubDirCount + s->iFileCount;
38 const TRomEntry* e = SortedEntry(m);
39 TInt nl = Min(e->iNameLength, aLengthLimit);
40 TPtrC en((const TText*)&e->iName[0], nl);
41 TInt k = CRomMountCB::Compare(aName, en);
44 if (aMode == EArrayFindMode_Any)
46 // RDebug::Printf("Found %d", m);
50 if (aMode == EArrayFindMode_First)
60 // RDebug::Printf("Found=%d r=%d", found, r);
61 return found ? r : KErrNotFound;
64 // Navigate the path to find the leaf directory, starting at this.
65 const TRomDir* TRomDir::FindLeafDir(const TDesC& aPath) const
69 const TRomDir* d = this;
72 lex.Inc(); // Skip the file separator
74 r=lex.Remainder().Locate(KPathDelimiter);
76 r=lex.Remainder().Length();
77 if (r==0) // End of the path
79 lex.Inc(r); // Set the token length
80 TInt ix = d->BinarySearch(lex.MarkedToken(), KMaxTInt, EArrayFindMode_Any, ETrue);
83 const TRomEntry* e = d->SortedEntry(ix);
84 // if (!(e->iAtt & KEntryAttDir))
86 d = (const TRomDir*)e->iAddressLin;
91 LOCAL_C void Fault(TFault aFault)
93 // Report a fault in the rom file system.
97 User::Panic(_L("ROMFILESYS"),aFault);
100 CRomMountCB::CRomMountCB(const CRom* aRom)
108 void CRomMountCB::Dismounted()
110 // Dummy implementation of pure virtual function
114 void CRomMountCB::IsFileInRom(const TDesC& aName,TUint8*& aFileStart)
116 // Return the address of the file if it is in rom
123 TRAPD(r,FindEntryL(aName,KEntryAttNormal,ETrue,dir,entry));
126 aFileStart=(TUint8*)((const TRomEntry*)entry)->iAddressLin;
129 TInt CRomMountCB::Compare(const TDesC& aLeft, const TDesC& aRight)
131 //Compares two filenames. Folds ASCII characters to uppercase
135 TInt ll = aLeft.Length();
136 TInt rl = aRight.Length();
137 TInt len = Min(ll, rl);
138 const TText* l = aLeft.Ptr();
139 const TText* r = aRight.Ptr();
144 if (lc >= 'A' && lc <= 'Z')
146 if (rc >= 'A' && rc <= 'Z')
152 // match up to end of shorter string, now compare lengths
156 void CRomMountCB::FindBinaryL(const TDesC& aName, TUint aAtt, TBool aAttKnown, TLinAddr aDir, TLinAddr& aEntry, TInt aError) const
158 //Identical to FindL, but uses binary search for faster performance.
159 //However, can't deal with wildcards, whereas FindL can.
163 //Although the value of aEntry is not used, we expect it to be zero,
164 __ASSERT_DEBUG(aEntry==0,Fault(ERomInvalidArgument));
165 const TRomDir* d = (const TRomDir*)aDir;
168 ix = d->BinarySearch(aName, KMaxTInt, EArrayFindMode_Any, aAtt & KEntryAttDir);
171 //We don't know whether we're looking for a file or a directory, so
173 ix = d->BinarySearch(aName, KMaxTInt, EArrayFindMode_Any, EFalse);
174 if (ix<0 || !MatchEntryAtt(d->SortedEntry(ix)->iAtt, aAtt) )
175 ix = d->BinarySearch(aName, KMaxTInt, EArrayFindMode_Any, ETrue);
179 const TRomEntry* e = d->SortedEntry(ix);
180 if (MatchEntryAtt(e->iAtt, aAtt))
182 aEntry = (TLinAddr)e;
189 void CRomMountCB::FindL(const TDesC& aName, TUint anAtt, TLinAddr aDir, TLinAddr& anEntry, TInt anError) const
191 // Scan from aDir looking for aName.
192 // If found return the result in anEntry.
195 const TRomDir* pD = (const TRomDir*)aDir;
201 pE = (const TRomEntry*)anEntry;
202 pE = PtrAdd(pE, Align4(__SIZE(pE->iNameLength) + KRomEntrySize));
204 const TRomEntry* pEnd = PtrAdd(&pD->iEntry, pD->iSize);
207 TPtrC name = TPtrC((const TText*)&pE->iName[0], pE->iNameLength);
208 if (name.MatchF(aName)!=KErrNotFound && MatchEntryAtt(pE->iAtt, anAtt))
210 anEntry = (TLinAddr)pE;
213 pE = PtrAdd(pE, Align4(__SIZE(pE->iNameLength) + KRomEntrySize));
215 User::Leave(anError);
218 void CRomMountCB::FindEntryL(const TDesC& aName, TUint anAtt, TBool aAttKnown, TLinAddr& aDir, TLinAddr& anEntry) const
220 // Locate an entry from its full path name.
224 TInt namePos=aName.LocateReverse(KPathDelimiter)+1; // There is always a path delimiter
225 const TRomDir* d = ((const TRomDir*)RomRootDirectory())->FindLeafDir(aName.Left(namePos));
227 User::Leave(KErrPathNotFound);
230 FindBinaryL(aName.Mid(namePos),anAtt,aAttKnown,aDir,anEntry,KErrNotFound);
233 void CRomMountCB::MountL(TBool /*aForceMount*/)
235 // Mount a media. Only allowed to leave with KErrNoMemory,KErrNotReady,KErrCorrupt,KErrUnknown.
240 iSize=(TUint)RomHeader().iUncompressedSize;
241 SetVolumeName(_L("RomDrive").AllocL());
244 TInt CRomMountCB::ReMount()
246 // Try and remount this media.
250 Fault(ERomReMountNotSupported);
254 void CRomMountCB::VolumeL(TVolumeInfo& aVolume) const
256 // Return the volume info.
263 void CRomMountCB::SetVolumeL(TDes& /*aName*/)
265 // Set the volume label.
269 User::Leave(KErrAccessDenied);
272 void CRomMountCB::MkDirL(const TDesC& /*aName*/)
278 User::Leave(KErrAccessDenied);
281 void CRomMountCB::RmDirL(const TDesC& /*aName*/)
283 // Remove a directory.
287 User::Leave(KErrAccessDenied);
290 void CRomMountCB::DeleteL(const TDesC& /*aName*/)
296 User::Leave(KErrAccessDenied);
299 void CRomMountCB::RenameL(const TDesC& /*anOldName*/,const TDesC& /*aNewName*/)
301 // Rename a file or directory.
305 User::Leave(KErrAccessDenied);
308 void CRomMountCB::ReplaceL(const TDesC& /*anOldName*/,const TDesC& /*aNewName*/)
314 User::Leave(KErrAccessDenied);
317 void CRomMountCB::EntryL(const TDesC& aName,TEntry& anEntry) const
319 // Get entry details.
325 FindEntryL(aName,KEntryAttMaskSupported,EFalse,dir,entry);
326 const TRomEntry* pE = (const TRomEntry*)entry;
327 anEntry.iAtt=pE->iAtt;
328 anEntry.iSize=pE->iSize;
329 anEntry.iModified=RomHeader().iTime;
330 anEntry.iName.Des().Copy((TText*)&pE->iName[0],pE->iNameLength);
331 ReadUidL(pE->iAddressLin,anEntry);
334 void CRomMountCB::SetEntryL(const TDesC& /*aName*/,const TTime& /*aTime*/,TUint /*aMask*/,TUint /*aVal*/)
336 // Set entry details.
340 User::Leave(KErrAccessDenied);
343 void CRomMountCB::FileOpenL(const TDesC& aName,TUint aMode,TFileOpen anOpen,CFileCB* aFile)
345 // Open a file on the current mount.
349 if (aMode&EFileWrite)
350 User::Leave(KErrAccessDenied);
355 User::Leave(KErrAccessDenied);
359 User::Leave(KErrAccessDenied);
363 FindEntryL(aName,KEntryAttMustBeFile,ETrue,dir,entry);
364 const TRomEntry* pE = (const TRomEntry*)entry;
365 CRomFileCB& file=(*((CRomFileCB*)aFile));
366 file.SetSize(pE->iSize);
367 file.SetAtt(pE->iAtt);
368 file.SetModified(RomHeader().iTime);
369 file.SetBase((const TUint8*)pE->iAddressLin);
372 void CRomMountCB::DirOpenL(const TDesC& aName, CDirCB* aDir)
374 // Open a file on the current mount.
378 TFileName fileName=aName;
379 TInt namePos=aName.LocateReverse(KPathDelimiter)+1; // Exclude path delimiter
380 if (namePos==aName.Length())
382 const TRomDir* d = ((const TRomDir*)RomRootDirectory())->FindLeafDir(aName.Left(namePos));
384 User::Leave(KErrPathNotFound);
385 CRomDirCB& dirCB = *(CRomDirCB*)aDir;
386 dirCB.SetDir((TLinAddr)d, NULL, fileName.Mid(namePos));
389 void CRomMountCB::RawReadL(TInt64 aPos,TInt aLength,const TAny* aDes,TInt anOffset,const RMessagePtr2& aMessage) const
391 // Read up to aLength data directly from the ROM
395 TUint romSize=RomHeader().iUncompressedSize;
396 if (I64LOW(aPos)>=romSize)
397 aMessage.WriteL(2,TPtrC8(NULL,0),anOffset);
400 TInt len=Min((TInt)(romSize-I64LOW(aPos)),aLength);
401 aMessage.WriteL(2,TPtrC8((TUint8*)RomHeader().iRomBase,len),anOffset);
405 void CRomMountCB::RawWriteL(TInt64 /*aPos*/,TInt /*aLength*/,const TAny* /*aDes*/,TInt /*anOffset*/,const RMessagePtr2& /*aMessage*/)
407 // Write aLength data to ROM (?)
411 User::Leave(KErrAccessDenied);
414 void CRomMountCB::ReadUidL(TLinAddr anAddr,TEntry& anEntry) const
416 // Read a uid if present.
419 // Need to consider zero-length files (for which anAddr is 0)
420 // and files too small to have a UID
421 if (anEntry.iSize >= (TInt) sizeof(TCheckedUid))
423 TCheckedUid entryUid(TPtrC8((TUint8*)anAddr, sizeof(TCheckedUid)));
424 anEntry.iType=entryUid.UidType();
428 anEntry.iType=KNullUid;
434 void CRomMountCB::ReadSectionL(const TDesC& aName,TInt aPos,TAny* aTrg,TInt aLength,const RMessagePtr2& aMessage)
437 __PRINT(Print(_L("CRomMountCB::ReadSectionL")));
441 FindEntryL(aName,KEntryAttMustBeFile,ETrue,dir,entry);
442 const TRomEntry* pE = (TRomEntry*)entry;
445 const TText8* baseAddress = (const TText8*)pE->iAddressLin;
447 if (size>=(aPos+aLength)) //|| (size>aPos)
449 TPtrC8 section((baseAddress+aPos),aLength);
450 aMessage.WriteL(0,section,0);
455 TPtrC8 section((baseAddress+aPos),aLength);
456 aMessage.WriteL(0,section,0);
459 User::Leave(KErrEof);
465 void CRomMountCB::GetShortNameL(const TDesC& /*aLongName*/,TDes& /*aShortName*/)
467 // Return the short name associated with aLongName
468 // Assumes all rom names are 8.3
472 User::Leave(KErrNotSupported);
475 void CRomMountCB::GetLongNameL(const TDesC& /*aShortName*/,TDes& /*aLongName*/)
477 // Return the short name associated with aLongName
478 // Assumes all rom names are 8.3
482 User::Leave(KErrNotSupported);
485 TInt CRomMountCB::GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput)
487 // Access the specified interface; behaviour is interface-specific
492 case (CMountCB::EFileAccessor):
494 ((CMountCB::MFileAccessor*&) aInterface) = this;
498 return (CMountCB::GetInterface(aInterfaceId,aInterface,aInput));
502 TInt CRomMountCB::GetFileUniqueId(const TDesC& /* aName */, TInt64& aUniqueId)
504 // Get unique identifier for the file - for ROM File System will just return zero
505 aUniqueId = MAKE_TINT64(0,0);
509 TInt CRomMountCB::Spare3(TInt /*aVal*/, TAny* /*aPtr1*/, TAny* /*aPtr2*/)
511 return KErrNotSupported;
514 TInt CRomMountCB::Spare2(TInt /*aVal*/, TAny* /*aPtr1*/, TAny* /*aPtr2*/)
516 return KErrNotSupported;
519 TInt CRomMountCB::Spare1(TInt /*aVal*/, TAny* /*aPtr1*/, TAny* /*aPtr2*/)
521 return KErrNotSupported;
525 CRomFileCB::CRomFileCB(const CRom* aRom)
533 void CRomFileCB::ReadL(TInt aPos,TInt& aLength,const TAny* aTrg,const RMessagePtr2& aMessage)
535 // Read from the file.
539 __PRINT(Print(_L("CRomFileCB::ReadL")));
543 TPtrC8 nullBuf(NULL,0);
544 aMessage.WriteL(0,nullBuf,0);
549 TInt len=Min((iSize-aPos),aLength);
550 TPtrC8 romBuf(iBase+aPos,len);
551 // thread->WriteL(aTrg,romBuf,0);
552 aMessage.WriteL(0,romBuf,0);
557 void CRomFileCB::WriteL(TInt /*aPos*/,TInt& /*aLength*/,const TAny* /*aDes*/,const RMessagePtr2& /*aMessage*/)
559 // Write to the file.
563 User::Leave(KErrAccessDenied);
566 void CRomFileCB::RenameL(const TDesC& /*aDes*/)
572 User::Leave(KErrAccessDenied);
575 void CRomFileCB::SetSizeL(TInt /*aSize*/)
577 // Set the file size.
581 User::Leave(KErrAccessDenied);
584 void CRomFileCB::SetEntryL(const TTime& /*aTime*/,TUint /*aMask*/,TUint /*aVal*/)
586 // Set the entry's attributes and modified time.
590 User::Leave(KErrAccessDenied);
593 void CRomFileCB::FlushAllL()
595 // Commit any buffered date to the media.
599 User::Leave(KErrAccessDenied);
602 void CRomFileCB::FlushDataL()
604 // Commit any buffered date to the media.
608 User::Leave(KErrAccessDenied);
611 TInt CRomFileCB::Address(TInt& aPos) const
613 // Return address of the file at aPos. Default implementation.
619 aPos=(TInt)(iBase+aPos);
623 CRomDirCB::CRomDirCB(const CRom* aRom)
631 CRomDirCB::~CRomDirCB()
640 TBool CRomDirCB::MatchUid()
646 if (iUidType[0]!=TUid::Null() || iUidType[1]!=TUid::Null() || iUidType[2]!=TUid::Null())
651 LOCAL_C TBool CompareUid(const TUidType& aUidTrg, const TUidType& aUidSuitor)
653 // Compare the suitor to the target pattern
657 if (aUidTrg[0]!=TUid::Null() && aUidTrg[0]!=aUidSuitor[0])
659 if (aUidTrg[1]!=TUid::Null() && aUidTrg[1]!=aUidSuitor[1])
661 if (aUidTrg[2]!=TUid::Null() && aUidTrg[2]!=aUidSuitor[2])
666 void CRomDirCB::ReadL(TEntry& anEntry)
668 // Read the next entry from the directory.
672 CRomMountCB& mount=(CRomMountCB&)Mount();
677 //May be called with wildcards in the path, so we need
678 //to call the slow, sequential FindL
681 mount.FindL(*iMatch,iAtt,iDir,iNext,KErrEof);
683 pE = (const TRomEntry*)iNext;
684 iEntry.iName.Des().Copy((TText*)&pE->iName[0],pE->iNameLength);
685 iEntry.iAtt=pE->iAtt;
686 iEntry.iSize=pE->iSize;
687 iEntry.iModified=RomHeader().iTime;
691 mount.ReadUidL(pE->iAddressLin,anEntry);
692 if (CompareUid(iUidType,anEntry.iType))
698 if (iAtt&KEntryAttAllowUid && (anEntry.iAtt&KEntryAttDir)==0 && MatchUid()==EFalse)
699 mount.ReadUidL(pE->iAddressLin,anEntry);
702 void CRomDirCB::SetDir(TLinAddr aDir,TLinAddr anEntry,const TDesC& aName)
704 // Set the directory and entry that we are on after open.
710 iMatch=aName.AllocL();
711 iPending=(anEntry!=NULL);
730 // Install the file system.
734 iVersion=TVersion(KF32MajorVersionNumber,KF32MinorVersionNumber,KF32BuildVersionNumber);
735 TPtrC name=_L("Rom");
736 return(SetName(&name));
739 CMountCB* CRom::NewMountL() const
741 // Create a new mount control block.
745 return(new(ELeave) CRomMountCB(this));
748 CFileCB* CRom::NewFileL() const
750 // Create a new file.
754 return(new(ELeave) CRomFileCB(this));
757 CDirCB* CRom::NewDirL() const
759 // Create a new directory lister.
763 return(new(ELeave) CRomDirCB(this));
766 CFormatCB* CRom::NewFormatL() const
768 // Create a new media formatter.
772 User::Leave(KErrAccessDenied);
776 void CRom::DriveInfo(TDriveInfo& anInfo,TInt /*aDriveNumber*/) const
778 // Return the drive info.
781 anInfo.iDriveAtt=KDriveAttRom|KDriveAttInternal;
782 anInfo.iMediaAtt=KMediaAttWriteProtected;
783 anInfo.iType=EMediaRom;
786 GLDEF_C void InstallRomFileSystemL()
788 // Create the ROM file system.
792 CFileSystem* pS=new(ELeave) CRom;
793 CleanupStack::PushL(pS);
794 User::LeaveIfError(InstallFileSystem(pS,RLibrary()));
795 CleanupStack::Pop(1, pS);
798 GLDEF_C const TRomHeader *RomHeader(CFileSystem *aFsys)
800 // Return the ROM header
804 return &((CRom *)aFsys)->RomHeader();