Files
harbour-core/harbour/source/rdd/dbtotal.prg
Viktor Szakats a5ab290ddc 2006-07-13 16:49 UTC+0100 Viktor Szakats (viktor.szakats syenar.hu)
* harbour/source/rdd/dbtotal.prg
     % Unused variable removed, one other optimized out, other minor optimizations.
     ! Fixed not resetting the error block when used on a table containing
       Memo fields only.
     ! Fixed error when passing xFor parameter as a string.
     ! Set(_SET_CANCEL...) calls removed.
     + Formatting, added few comments, CA-Cl*pper differences.
2006-07-13 22:00:20 +00:00

246 lines
6.7 KiB
Plaintext

/*
* $Id$
*/
/*
* Harbour Project source code:
* __DBTOTAL FUNCTION
*
* Copyright 2000 Luiz Rafael Culik <culik@sl.conex.net>
* www - http://www.harbour-project.org
*
* 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 software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
#include "common.ch"
#include "dbstruct.ch"
#include "error.ch"
/* NOTE: Compared to CA-Cl*pper, Harbour:
- will accept character expressions for xKey, xFor and xWhile.
- has two extra parameters (nConnection, cpdId).
- will defuault to active index key for xKey parameter.
- has more error handling.
*/
FUNCTION __dbTotal( cFile, xKey, aFields, ;
xFor, xWhile, nNext, nRec, lRest, cRDD, ;
nConnection, cdpId )
LOCAL nOldArea
LOCAL nNewArea
LOCAL aNewDbStruct
LOCAL aGetField
LOCAL aFieldsSum
LOCAL lDbTransRecord
LOCAL xCurKey
LOCAL bKeyBlock
LOCAL bForBlock
LOCAL bWhileBlock
LOCAL lError := .F.
LOCAL bOldError
LOCAL oError
IF ValType( xWhile ) == "C"
bWhileBlock := &("{||" + xWhile + "}")
ELSEIF ValType( xWhile ) != "B"
bWhileBlock := {|| .T. }
ELSE
bWhileBlock := xWhile
lRest := .T.
ENDIF
IF ValType( xFor ) == "C"
bForBlock := &("{||" + xFor + "}")
ELSEIF ValType( xFor ) != "B"
bForBlock := {|| .T. }
ELSE
bForBlock := xFor
ENDIF
DEFAULT lRest TO .F.
IF nRec != NIL
dbGoto( nRec )
nNext := 1
ELSE
IF nNext == NIL
nNext := -1
IF !lRest
dbGoTop()
ENDIF
ELSE
lRest := .T.
ENDIF
ENDIF
nOldArea := Select()
aNewDbStruct := {}
AEval( dbStruct(), {| aField | iif( aField[ DBS_TYPE ] == "M", NIL, AAdd( aNewDbStruct, aField ) ) } )
IF Empty( aNewDbStruct )
RETURN .F.
ENDIF
bOldError := ErrorBlock( {| x | Break( x ) } )
BEGIN SEQUENCE
IF Empty( xKey )
xKey := IndexKey()
IF Empty( xKey )
oError := ErrorNew()
oError:description := "Invalid argument"
oError:genCode := EG_ARG
Break( oError )
ENDIF
ENDIF
IF ValType( xKey ) == "C"
bKeyBlock := &("{||" + xKey + "}")
ELSEIF ValType( xKey ) != "B"
bKeyBlock := {|| .T. }
ELSE
bKeyBlock := xKey
ENDIF
aGetField := {}
AEval( aFields, {| cField | AAdd( aGetField, GetField( cField ) ) } )
aFieldsSum := Array( Len( aGetField ) )
// ; Keep it open after creating it.
dbCreate( cFile, aNewDbStruct, cRDD, .T., "", NIL, cdpId, nConnection )
nNewArea := Select()
dbSelectArea( nOldArea )
DO WHILE !Eof() .AND. nNext != 0 .AND. Eval( bWhileBlock )
lDbTransRecord := .F.
AFill( aFieldsSum, 0 )
xCurKey := Eval( bKeyBlock )
DO WHILE !Eof() .AND. nNext-- != 0 .AND. Eval( bWhileBlock ) .AND. ;
xCurKey == Eval( bKeyBlock )
IF Eval( bForBlock )
IF !lDbTransRecord
__dbTransRec( nNewArea, aNewDbStruct )
dbSelectArea( nOldArea )
lDbTransRecord := .T.
ENDIF
AEval( aGetField, {| bFieldBlock, nFieldPos | aFieldsSum[ nFieldPos ] += Eval( bFieldBlock ) } )
ENDIF
dbSkip()
ENDDO
IF lDbTransRecord
dbSelectArea( nNewArea )
AEval( aGetField, {| bFieldBlock, nFieldPos | Eval( bFieldBlock, aFieldsSum[ nFieldPos ] ) } )
dbSelectArea( nOldArea )
ENDIF
ENDDO
RECOVER USING oError
lError := .T.
ENDSEQUENCE
IF nNewArea != NIL
dbSelectArea( nNewArea )
dbCloseArea()
ENDIF
dbSelectArea( nOldArea )
ErrorBlock( bOldError )
IF lError
IF ValType( oError:operation ) == "C"
oError:operation += "/__DBTOTAL"
ELSE
oError:operation := "__DBTOTAL"
ENDIF
Eval( ErrorBlock(), oError )
ENDIF
RETURN .T.
STATIC FUNCTION GetField( cField )
LOCAL nCurrArea := Select()
LOCAL nPos
LOCAL oError
LOCAL lError
IF ( nPos := At( "->", cField ) ) > 0
IF Select( Left( cField, nPos - 1 ) ) != nCurrArea
oError := ErrorNew()
oError:severity := ES_ERROR
oError:genCode := EG_SYNTAX
oError:subSystem := "DBCMD"
oError:canDefault := .T.
oError:operation := cField
oError:subCode := 1101
lError := Eval( ErrorBlock(), oError )
IF ValType( lError ) != "L" .OR. lError
__ErrInHandler()
ENDIF
Break( oError )
ENDIF
cField := SubStr( cField, nPos + 2 )
ENDIF
RETURN FieldBlock( cField )
FUNCTION __dbTransRec( nDstArea, aFieldsStru )
RETURN __dbTrans( nDstArea, aFieldsStru, NIL, NIL, 1 )