home *** CD-ROM | disk | FTP | other *** search
- *============================================================================
- *
- *- OpenEnv() file opening system.
- *- Written by Clayton Neff for The Aquarium in Clipper 5.0
- *- Copyright 1990 CoN Computing
- *
- *----------------------------------------------------------------------------
- *
- *- These functions perform the automatic setup of program environments based
- * on the information contained in three DBF files.
- *
- * Compile with the /N option.
- *
- *============================================================================
- *
- *- This preprocessor directive allows the addition of new indecies without
- * having to determine whether any others are already open.
- *
-
- #command SET INDEX ADDITIVE TO <(index1)> [, <(indexN)> ] ;
- => ;
- __dbSetIndex( <(index1)> ) ;
- [; __dbSetIndex( <(indexN)> ) ]
-
- *
- *- This define is for conditional compilation for whether or not you want
- * to use the command defined above.
- *
-
- #define ADD_OK
-
- *
- *============================================================================
- *
- * FUNCTION LOADENV()
- *
- *- This function uses the three DBF and NTX files to load the program
- * environments into a static array.
- *
- *- Parameters : None
- *
- *- Returns : A multidimensional array containing all the necessary
- * information to open an environment. If the array is
- * empty, then one of the files was not available.
- *
- *- Syntax : DataEnv_ := LoadEnv()
- *
- *----------------------------------------------------------------------------
- *
- function LoadEnv()
- *
- *- Create the necessary variables.
- *
- local EnvArray_ := {}
- local sDBFs_ := { "DATAREL", "DATANTX", "DATAENV" }
- local lError := .f.
- local i, nEnvNum, nDBFNum
- *
- *- Open the controlling files, if they are not already opened.
- *
- for i := 1 to 3
- if ( ( select( sDBFs_[i] ) == 0 ) .and. ! lError )
- if ! NetAlias( sDBFs_[i], sDBFs_[i], .f., .t., 5, 0.5 )
- lError := .t.
- else
- set index to ( sDBFs_[i] )
- if neterr()
- lError := .t.
- endif
- endif
- endif
- next i
- *
- *- If no error occurred, load the information into EnvArray_.
- *
- if ! lError
- *
- *- Step through the data files filling the array.
- *
- select DATAENV
- do while ! DATAENV->( eof() )
- *
- *- Make a new element in the array, and store the ID in it.
- *
- AADD( EnvArray_, { DATAENV->ID, {} } )
- nEnvNum := len( EnvArray_ )
- *
- *- Loop through all the DBF data files in this environment.
- *
- do while ( DATAENV->ID == EnvArray_[nEnvNum,1] )
- *
- *- Store the data file information into its part of the array.
- *
- AADD( EnvArray_[nEnvNum,2], { DATAENV->DBF_NAME, ;
- DATAENV->DBF_ALIAS, ;
- DATAENV->EXCLUSIVE, {}, {} } )
- nDBFNum := len( EnvArray_[nEnvNum,2] )
- *
- *- Seek for associated NTXs.
- *
- if ( DATANTX->( FarSeek( DATAENV->ID + DATAENV->DBF_NAME ) ) )
- *
- *- Loop through DATANTX and load any associated NTXs
- * into the proper part of the array.
- *
- do while ( DATANTX->DBF_NAME == DATAENV->DBF_NAME )
- AADD( EnvArray_[nEnvNum,2,nDBFNum,4], DATANTX->NTX_NAME )
- skip 1 alias DATANTX
- enddo
- endif
- /*
- This block of code is commented out, due to the lack of support for
- the setting of relations by Clipper 5.0. When it is supported, just
- uncomment this block.
-
- *
- *- Seek for associated relations.
- *
- if ( DATAREL->( FarSeek( DATAENV->ID + DATAENV->DBF_NAME ) ) )
- *
- *- Loop through DATAREL and load any associated relations
- * into the proper part of the array.
- *
- do while ( DATAREL->DBF_NAME == DATAENV->DBF_NAME )
- AADD( EnvArray_[nEnvNum,2,nDBFNum,5], ;
- { DATAREL->TARGET_DBF, &( DATAREL->REL_EXPR ) } )
- skip 1 alias DATANTX
- enddo
- endif
- */
- *
- *- Move to the next DATAENV record.
- *
- skip 1 alias DATAENV
- *
- enddo while ( DATAENV->ID == EnvArray_[nEnvNum,1] )
- *
- enddo while ! DATAENV->( eof() )
- *
- endif ! lError
- *
- *- Close the opened data files.
- *
- DATAREL->( FarClose() )
- DATANTX->( FarClose() )
- DATAENV->( FarClose() )
- *
- *- Return the EnvArray_ to the calling function.
- *
- return( EnvArray_ )
- *
- *- End of LoadEnv().
- *
- *============================================================================
- *
- * FUNCTION OPENENV()
- *
- *- Parameters : The array containing the desired environment's informatiion.
- * (Optional) A code block error function to call on failure.
- * The parameters passed to the code block are the environment
- * identifier, and the DBF file when the error occured, and
- * whether the indecies were being opened.
- *
- *- Returns : A logical value based on whether the desired data environment
- * was opened properly.
- *
- *- Syntax : DataEnv_ := LoadEnv()
- * if ! OpenEnv( DataEnv_[1] )
- * or
- * lOpened := OpenEnv( DataEnv_[2], ;
- * { |id,dbf,ntx| OpenErrs(id,dbf,ntx) )
- *
- *- Notes : When the function completes successfully, you are left in the last
- * area used during the opening process.
- *
- *----------------------------------------------------------------------------
- *
- function OpenEnv( Environ_, bErrFunc )
- *
- *- Declare and initialize locals needed.
- *
- local lError := .f.
- local sErrDBF := ''
- local lErrInNTX := .f.
- local sErrCall := ''
- local nDBFCount := len( Environ_[2] )
- local i := 1
- *
- *- Loop through the DBF array opening the files.
- *
- do while ( ! lError .and. ( i <= nDBFCount ) )
- *
- *- Open the DBF data file.
- *
- if NetAlias( Environ_[2,i,1], ;
- Environ_[2,i,2], ;
- Environ_[2,i,3], ;
- .t., 5, 0.5 )
- *
- *- Set the idecies.
- *
- lError := SetNTXs( Environ_[2,1,4] )
- *
- *- If the indecies got set, set the relations.
- *
- if lError
- *
- *- An error occured while setting the indecies.
- *
- sErrDBF := Environ_[2,i,1]
- lErrInNTX := .t.
- *
- *
- *- This block of code is commented out, due to the lack of support for
- * the setting of relations by Clipper 5.0. When it is supported, just
- * uncomment this block.
- *
- * else
- * *
- * *- Loop through relations for this environment/data file.
- * *
- * aeval( Environ_[2,i,5], { | RelArray_ | Relate( RelArray_ ) } )
- * *
- endif lError
- *
- else
- *
- *- The data file could not be opened.
- *
- lError := .t.
- sErrDBF := Environ_[2,i,1]
- *
- endif NetAlias()
- *
- enddo
- *
- *- If there was an error, and an error function name was passed,
- * call it!
- *
- if ( lError .and. ( bErrFunc != NIL ) )
- *
- *- Call the code block with the proper parameters.
- *
- eval( bErrFunc, Environ_[1], sErrDbf, lErrInNTX )
- *
- endif
- *
- *- Return whether or not an error occured.
- *
- return( lError )
- *
- *- End of OpenEnv().
- *
- *============================================================================
- *
- * FUNCTION NETALIAS()
- *
- *- This function is a modification of the NetUse function supplied by
- * Nantucket to include the passing of a work area alias.
- *
- *----------------------------------------------------------------------------
- *
- function NetAlias( sFileName, sAreaName, lExclusive, lNew, nTries, nDelay )
- *
- local lDone := .f., i
- *
- *- If a new work area is desired...
- *
- if ( lNew )
- select 0
- endif
- *
- *- Try opening up to nTries times.
- *
- for i := 1 to nTries
- *
- *- Attempt to open the file.
- *
- if ( lExclusive )
- use ( sFileName ) exclusive alias ( sAreaName )
- else
- use ( sFileName ) alias ( sAreaName )
- endif
- *
- *- If no error occured, set flag and exit the loop.
- *
- if ( ! neterr() )
- lDone := .t.
- exit
- endif
- *
- *- Hardcoded delay before retrying. Could be passed as a parameter.
- *
- inkey(.5)
- *
- next i
- *
- return( lDone )
- *
- *- End of NetAlias().
- *
- *============================================================================
- *
- * FUNCTION SETNTXS()
- *
- *- This function set the indecies for a work area. It assumes that the
- * controlling data files have been opened, and the DATAENV pointer is on
- * the desired record.
- *
- * The return value reports whether or not all the desired indecies were
- * opened.
- *
- *----------------------------------------------------------------------------
- *
- function SetNTXs( sFiles_ )
- *
- local nCount := len( sFiles_ )
- local lDone := .t.
- *
- *- Conditional compilation based on whether ADD_OK has been defined.
- *
- #ifdef ADD_OK
- *
- local i := 1
- *
- *- Loop through the array, checking that the array was opened.
- *
- do while ( lDone .and. ( i <= nCount ) )
- set index additive to ( sFiles_[1] )
- lDone := ( ! neterr() )
- i++
- enddo while ( lDone .and. ( i <= nCount ) )
- *
- #else
- *
- *- Because of the lack of "set index additive to", the following
- * "do case" is necessary.
- *
- do case
- *
- *- No indecies associated with this data file, so do nothing.
- *
- case ( nCount == 0 )
- *
- *- One index.
- *
- case ( nCount == 1 )
- set index to ( sFiles_[1] )
- *
- *- Two indecies.
- *
- case ( nCount == 2 )
- set index to ( sFiles_[1] ), ( sFiles_[2] )
- *
- *- Three indecies.
- *
- case ( nCount == 3 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] )
- *
- *- Four indecies.
- *
- case ( nCount == 4 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] )
- *
- *- Five indecies.
- *
- case ( nCount == 5 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] )
- *
- *- Six indecies.
- *
- case ( nCount == 6 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] )
- *
- *- Seven indecies.
- *
- case ( nCount == 7 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[7] )
- *
- *- Eight indecies.
- *
- case ( nCount == 8 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[7] ), ( sFiles_[8] )
- *
- *- Nine indecies.
- *
- case ( nCount == 9 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[7] ), ( sFiles_[8] ), ( sFiles_[9] )
- *
- *- Ten indecies.
- *
- case ( nCount == 10 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[7] ), ( sFiles_[8] ), ( sFiles_[9] ), ;
- ( sFiles_[10] )
- *
- *- Eleven indecies.
- *
- case ( nCount == 11 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[7] ), ( sFiles_[8] ), ( sFiles_[9] ), ;
- ( sFiles_[10] ), ( sFiles_[11] )
- *
- *- Twelve indecies.
- *
- case ( nCount == 12 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[7] ), ( sFiles_[8] ), ( sFiles_[9] ), ;
- ( sFiles_[10] ), ( sFiles_[11] ), ( sFiles_[12] )
- *
- *- Thirteen indecies.
- *
- case ( nCount == 13 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[7] ), ( sFiles_[8] ), ( sFiles_[9] ), ;
- ( sFiles_[10] ), ( sFiles_[11] ), ( sFiles_[12] ), ;
- ( sFiles_[13] )
- *
- *- Fourteen indecies.
- *
- case ( nCount == 14 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[7] ), ( sFiles_[8] ), ( sFiles_[9] ), ;
- ( sFiles_[10] ), ( sFiles_[11] ), ( sFiles_[12] ), ;
- ( sFiles_[13] ), ( sFiles_[14] )
- *
- *- Fifteen indecies.
- *
- case ( nCount == 15 )
- set index to ( sFiles_[1] ), ( sFiles_[2] ), ( sFiles_[3] ), ;
- ( sFiles_[4] ), ( sFiles_[5] ), ( sFiles_[6] ), ;
- ( sFiles_[7] ), ( sFiles_[8] ), ( sFiles_[9] ), ;
- ( sFiles_[10] ), ( sFiles_[11] ), ( sFiles_[12] ), ;
- ( sFiles_[13] ), ( sFiles_[14] ), ( sFiles_[15] )
- *
- endcase
- *
- *- Check that there were no errors.
- *
- lDone := ( ! neterr() )
- *
- #endif
- *
- return( lDone )
- *
- *- End of SetNTXs().
- *
- *============================================================================
- *
- *- This block of code is commented out, due to the lack of support for
- * the setting of relations by Clipper 5.0. When it is supported, just
- * uncomment this block.
- *
- **============================================================================
- **
- ** FUNCTION RELATE()
- **
- **- This function set relations additively.
- **
- **- Parameters : An array of arrays. Each subarray contains two elements:
- ** the target area and the relating expression.
- **
- **- Returns : Nothing.
- **
- **----------------------------------------------------------------------------
- **
- *function Relate( RelData_ )
- **
- *set relation additive to ( eval( RelData_[2] ) ) into ( RelData_[1] )
- **
- *return( '' )
- **
- **- End of Relate().
- **
- *============================================================================
- *
- * FUNCTION FARSEEK
- *
- *- This function allows for seeking a record in an area other than the
- * currently selected working area.
- *
- *- Parameters : The value to seek.
- *
- *- Returns : A logical for whether it was found.
- *
- *----------------------------------------------------------------------------
- *
- function FarSeek( xValue )
- *
- seek xValue
- *
- return( found() )
- *
- *- End of FarSeek().
- *
- *============================================================================
- *
- * FUNCTION FARCLOSE
- *
- *- This function closes a work area, even if it is not currently selected.
- *
- *- Parameters : None.
- *
- *- Returns : Nothing.
- *
- *----------------------------------------------------------------------------
- *
- function FarClose
- *
- use
- *
- return( '' )
- *
- *- End of FarClose().
- *
- *============================================================================
- *
-