view host/tools/ecostest/common/eCosTestUtils.h @ 3403:8c8767bb9a62 default tip

devs/nand/micron_mt29: Remove defunct references (in comments) to mt29f2g08_oob_ecc.
author Ross Younger <wry@ecoscentric.com>
date Sun, 18 Jan 2015 17:59:01 +1300
parents 74dbf4c3f2e1
children
line wrap: on
line source

// ####ECOSHOSTGPLCOPYRIGHTBEGIN####                                        
// -------------------------------------------                              
// This file is part of the eCos host tools.                                
// Copyright (C) 1998, 1999, 2000, 2006 Free Software Foundation, Inc.      
//
// This program is free software; you can redistribute it and/or modify     
// it under the terms of the GNU General Public License as published by     
// the Free Software Foundation; either version 2 or (at your option) any   
// later version.                                                           
//
// This program 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        
// General Public License for more details.                                 
//
// You should have received a copy of the GNU General Public License        
// along with this program; if not, write to the                            
// Free Software Foundation, Inc., 51 Franklin Street,                      
// Fifth Floor, Boston, MA  02110-1301, USA.                                
// -------------------------------------------                              
// ####ECOSHOSTGPLCOPYRIGHTEND####                                          
//=================================================================
//
//        eCosTestUtils.h
//
//        run test program
//
//=================================================================
//=================================================================
//#####DESCRIPTIONBEGIN####
//
// Author(s):     sdf
// Contributors:  sdf
// Date:          1999-04-01
// Description:   Utiltities for test infra
// Usage:
//
//####DESCRIPTIONEND####

#ifndef _ECOSTESTUTILS_H
#define _ECOSTESTUTILS_H

#include "eCosStd.h"
#include "Collections.h"

//=================================================================
// Various bits and pieces live here
//=================================================================

class CeCosTestUtils {
public:

	static bool CommandLine (int &argc,TCHAR **argv,bool bRequireResourceServer=true); // Parse the command line and extract the common options "-v", "-o", ....
	static void UsageMessage(bool bRequireResourceServer=true); // Output a usage message explaining the above
  
  // Find the tail of a filename
  static LPCTSTR  const Tail (LPCTSTR  const pszFile); // Tail of a filename, in the UNIX sense

  // File exists?
  static bool Exists (LPCTSTR pszFile);
  // And is a file? (as opposed to a directory)
  static bool IsFile (LPCTSTR pszFile);

  // File iterator.  Gets next file in directory, avoiding "." and ".."
  static bool NextFile (void *&pHandle,String &str);
  // Start file iteration and return first file.
  static bool StartSearch (void *&pHandle,String &str);
  // End file iteration
  static void EndSearch (void *&pHandle);

  // Get the file name of a "home directory" file
  static const String HomeFile (LPCTSTR pszFile);

protected:
  
};

#endif