! Copyright (c) 2012-2015 Harald Klimach <harald@klimachs.de> ! Copyright (c) 2013 James Spencer <j.spencer@imperial.ac.uk> ! ! Parts of this file were written by Harald Klimach for ! German Research School of Simulation Sciences and University of Siegen. ! ! Permission is hereby granted, free of charge, to any person obtaining a copy ! of this software and associated documentation files (the "Software"), to deal ! in the Software without restriction, including without limitation the rights ! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ! copies of the Software, and to permit persons to whom the Software is ! furnished to do so, subject to the following conditions: ! ! The above copyright notice and this permission notice shall be included in ! all copies or substantial portions of the Software. ! ! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. ! IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, ! DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR ! OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE ! OR OTHER DEALINGS IN THE SOFTWARE. ! **************************************************************************** ! !> This module provides the handling of errors. !! !! The `aoterr_*` constants are used to identify specific kinds of errors !! that might appear when attempting to obtain a value from the Lua script. !! !! The [[aot_err_handler]] provides access to error messages that might be !! issued by Lua itself for routines in the Lua API that return an error !! code. module aot_err_module use flu_binding implicit none private public :: aoterr_Fatal, aoterr_NonExistent, aoterr_WrongType public :: aot_err_handler ! Some parameters for the error handling. ! ! They indicate the bits to set in case of the corresponding error, to allow ! appropriate reactions of the calling application. ! As a bitmask is used to encode the error, any combination of them might be ! returned. !> Indication of a a fatal error if this bit is set in an error code. integer, parameter :: aoterr_Fatal = 0 !> Indication that the requested value does not exist in the Lua script if !! this bit is set in an error code. integer, parameter :: aoterr_NonExistent = 1 !> Indication that a requested value exists in the Lua script but has the !! wrong data type. integer, parameter :: aoterr_WrongType = 2 contains !> Error handler to capture Lua errors. !! !! This routine encapsulates the retrieval of error messages from the Lua !! stack upon a failing Lua operation. !! It should be be used after all flu functions that return an err argument !! as result. !! Examples are [[flu_binding:fluL_loadfile]] and [[flu_binding:flu_pcall]]. !! The ErrString and ErrCode parameters are both optional. !! If none of them are provided, the execution will be stopped if an error had !! occured and err is not 0. !! The error message will be written to standard output in this case. !! !! If either of them is provided, the application will continue and the !! calling side has to deal with the occured error. subroutine aot_err_handler(L, err, msg, ErrString, ErrCode) type(flu_State) :: L !! Handle to the Lua script !> Lua error code to evaluate integer, intent(in) :: err !> Some additional message that should be prepended to the Lua error !! message if the program is stopped by the handler (no ErrString or ErrCode !! provided). character(len=*), intent(in) :: msg !> Resulting error string obtained by combining msg and the error !! description on the Lua stack. character(len=*), intent(out), optional :: ErrString !> The Lua error code, just the same as err. integer, intent(out), optional :: ErrCode logical :: stop_on_error character, pointer, dimension(:) :: string integer :: str_len integer :: i stop_on_error = .not.(present(ErrString) .or. present(ErrCode)) if (present(ErrCode)) then ErrCode = err end if if (present(ErrString)) then ErrString = '' end if if (err .ne. 0) then string => flu_tolstring(L, -1, str_len) if (present(ErrString)) then do i=1,min(str_len, len(ErrString)) ErrString(i:i) = string(i) end do end if if (stop_on_error) then write(*,*) msg, string STOP end if end if end subroutine aot_err_handler end module aot_err_module