commands/find/find.cpp
author Tom Sutcliffe <thomas.sutcliffe@accenture.com>
Thu, 26 Aug 2010 00:49:35 +0100
changeset 37 534b01198c2d
parent 0 7f656887cf89
permissions -rw-r--r--
Added ENotifyKeypresses and ECaptureCtrlC flags to CCommandBase. Commands can now get keypresses and handle ctrl-C via callbacks instead of having to implement custom active objects. As part of this extended the CCommandBase extension interface to MCommandExtensionsV2 for the new virtual functions KeyPressed(TUint aKeyCode, TUint aModifiers) and CtrlCPressed(). sudo now cleans up correctly by using ECaptureCtrlC.

// find.cpp
// 
// Copyright (c) 2009 - 2010 Accenture. All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
// 
// Initial Contributors:
// Accenture - Initial contribution
//

#include <fshell/ioutils.h>

using namespace IoUtils;

class CCmdFind : public CCommandBase
	{
public:
	static CCommandBase* NewLC();
	~CCmdFind();
private:
	CCmdFind();
	void FoundFile(const TDesC& aDir, const TDesC& aName, TBool aIsDir);
private: // From CCommandBase.
	virtual const TDesC& Name() const;
	virtual void DoRunL();
	virtual void ArgumentsL(RCommandArgumentList& aArguments);
	virtual void OptionsL(RCommandOptionList& aOptions);
private:
	TFileName2 iPath;
	HBufC* iName;
	TBool iPrint;
	TBool iAllDrives;
	TFileName2 iTempName;
	RPointerArray<HBufC> iSearchDirs;
	};


CCommandBase* CCmdFind::NewLC()
	{
	CCmdFind* self = new(ELeave) CCmdFind();
	CleanupStack::PushL(self);
	self->BaseConstructL();
	return self;
	}

CCmdFind::~CCmdFind()
	{
	delete iName;
	iSearchDirs.ResetAndDestroy();
	}

CCmdFind::CCmdFind()
	{
	}

const TDesC& CCmdFind::Name() const
	{
	_LIT(KName, "find");
	return KName;
	}

void CCmdFind::ArgumentsL(RCommandArgumentList& aArguments)
	{
	_LIT(KArgPath, "path");
	aArguments.AppendFileNameL(iPath, KArgPath);
	}

void CCmdFind::OptionsL(RCommandOptionList& aOptions)
	{
	_LIT(KOptName, "name");
	aOptions.AppendStringL(iName, KOptName);
	//aOptions.AppendBoolL(iPrint, TChar('p'), _L("print"), _L("Print the paths of files that match the given conditions, one per line. This is the default if no other options are specified."));
	}


EXE_BOILER_PLATE(CCmdFind)


void CCmdFind::DoRunL()
	{
	RFs& fs = FsL();
	iPath.SetIsDirectoryL();
	if (!iName)
		{
		LeaveIfErr(KErrArgument, _L("You must specify a name to match against"));
		}

	iSearchDirs.AppendL(iPath.AllocLC());
	CleanupStack::Pop();

	while (iSearchDirs.Count())
		{
		const TDesC& path = *iSearchDirs[0];

		TInt err;
		CDir* matchingFiles = NULL;
		iTempName.Copy(path);
		iTempName.AppendComponentL(*iName, TFileName2::EFile);
		// Look for files in this directory first
		err = fs.GetDir(iTempName, KEntryAttNormal|KEntryAttDir, ESortByName, matchingFiles);
		if (!err)
			{
			for (TInt i = 0; i < matchingFiles->Count(); i++)
				{
				const TEntry& entry = (*matchingFiles)[i];
				FoundFile(path, entry.iName, entry.IsDir());
				}
			}
		delete matchingFiles;

		// Then add all this dir's subdirectories to the list of ones to be scanned
		CDir* dirsToRecurse = NULL;
		err = fs.GetDir(path, KEntryAttDir|KEntryAttMatchExclusive, ESortNone, dirsToRecurse);
		if (!err)
			{
			CleanupStack::PushL(dirsToRecurse);
			for (TInt i = 0; i < dirsToRecurse->Count(); i++)
				{
				const TEntry& entry = (*dirsToRecurse)[i];
				iTempName.Copy(path);
				iTempName.AppendComponentL(entry);
				iSearchDirs.AppendL(iTempName.AllocLC());
				CleanupStack::Pop();
				}
			CleanupStack::PopAndDestroy(dirsToRecurse);
			}
		delete iSearchDirs[0];
		iSearchDirs.Remove(0);
		}
	}

void CCmdFind::FoundFile(const TDesC& aDir, const TDesC& aName, TBool aIsDir)
	{
	// For now, always print
	_LIT(KBack, "\\");
	Printf(_L("%S%S%S\n"), &aDir, &aName, aIsDir ? &KBack : &KNullDesC);
	}