// -*-C++-*- 

/*  src/algorithms/string/StringAlgorithms.cpp  */

/*
 * Author: Philogelos A. <Philogelos@yahoo.com>
 * Maintainer: Philogelos A.
 * Keywords: C++, library, containers
 *
 * Copyright (C) 1999 Philogelos A.
 *
 * This file is part of Quercus Robusta.
 *
 * Quercus Robusta is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Library General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This software 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 Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this software; see the file COPYING.LIB.  If not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 */



/* $Id$ */
#if !defined(_INLINE)
static char cvsid[] = "@(#)$Id$";
static char debugFileId[] = __FILE__;
#endif

#include "algorithms/string/IdentityFilter.hpp"
#include "algorithms/string/StringAlgorithms.hpp"
#include "OGuard.hpp"
#include "Debug.hpp"

void StringAlgorithms::toLower( String aString, StringFilter &aFilter )
{}

void StringAlgorithms::toUpper( String aString, StringFilter &aFilter )
{
}

Index StringAlgorithms::length( String aString, StringFilter &aFilter )
{
  StringFilter *string;
  
  string = new IdentityFilter( aString );
  OGuard _string( string, this );
  aFilter.setBase( string );
  return aFilter.length();
}

Index StringAlgorithms::isEmpty( String aString, StringFilter &aFilter )
{
  return( length( aString, aFilter ) == 0 );
}

void StringAlgorithms::replace( String aString, StringFilter &aFilter, unichar aTo )
{
  StringFilter *string;
  
  string = new IdentityFilter( aString );
  OGuard _string( string, this );
  aFilter.setBase( string );
  while( aFilter.getNext() != ( unichar ) 0 )
	{
	  aString.getUNIChars()[ aFilter.getPosition() ] = aTo;
	}
}
  
StringAlgorithms *StringAlgorithms::get()
{
  if( instance == ( StringAlgorithms * ) NIL )
	{
	  instance = new StringAlgorithms();
	}
  return instance;
}

StringAlgorithms::StringAlgorithms()
{}

StringAlgorithms::~StringAlgorithms()
{}

String  StringAlgorithms::getClassName() const
{
  return "StringAlgorithms";
}

StringAlgorithms *StringAlgorithms::instance = ( StringAlgorithms * ) NIL;

#if defined( TESTING )

#include "algorithms/string/FromToBy.hpp"
#include "algorithms/string/OneOfFilter.hpp"
#include "algorithms/string/InOrderFilter.hpp"

static void victimize( String aString, StringFilter &aFilter )
{
  Debug::getLogger() -> log
	( "length: %li", SAlg::get() -> length( aString, aFilter ) );
  aFilter.reset();
  SAlg::get() -> replace( aString, aFilter, ( unichar ) '*' );
  Debug::getLogger() -> logString( "victimized: %s", aString );
}

boolean StringAlgorithms::tester( int ) const
{
  {
	String victim( "victim" );
	
	Debug::getLogger() -> logString( "victim of OneOf: %s", victim );
	victimize( victim, OneOfFilter( ( StringFilter * ) NULL, "i" ) );
  }
  {
	String victim( "victim" );
	
	Debug::getLogger() -> logString( "victim of Identity: %s", victim );
	victimize( victim, IdentityFilter( victim ) );
  }
  {
	String victim( "long-long victim" );
	
	Debug::getLogger() -> logString( "victim of FromToBy: %s", victim );
	victimize( victim, FromToBy( ( StringFilter * ) NULL, 10, victim.length(), 1 ) );
  }
  {
	String victim( "section.subsection: value" );
	
	Debug::getLogger() -> logString( "victim of InOrder: %s", victim );
	victimize( victim, InOrderFilter( ( StringFilter * ) NULL, ".:" ) );
  }
  return true;
}

#endif

#if defined(_INLINE)
#include "../src/Debug.ipp"
#endif


/* $Log$ */