1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
|
module fapi_encode_tests
use odc
use odc_config
use, intrinsic :: iso_fortran_env
implicit none
integer(8), parameter :: col1_data(7) = [1, 2, 3, 4, 5, 6, 7]
integer(8), parameter :: col2_data(7) = [0, 0, 0, 0, 0, 0, 0]
integer(8), parameter :: col3_data(7) = [73, 73, 73, 73, 73, 73, 73]
real(8), parameter :: col4_data(7) = [1.432, 1.432, 1.432, 1.432, 1.432, 1.432, 1.432]
integer(8), parameter :: col5_data(7) = [-17, -7, -7, 999999, 1, 4, 4]
character(16), parameter :: col6_data(7) = [character(16) :: "aoeu", "aoeu", "abcdefghijkl", "None", "boo", "squiggle", "a"]
character(8), parameter :: col7_data(7) = [character(8) :: "abcd", "abcd", "abcd", "abcd", "abcd", "abcd", "abcd"]
real(8), parameter :: col8_data(7) = [2.345, 2.345, 2.345, 2.345, 2.345, 2.345, 2.345]
real(8), parameter :: col9_data(7) = [999.99, 888.88, 777.77, 666.66, 999999.0, 444.44, 333.33]
real(8), parameter :: col10_data(7) = [999.99, 888.88, 777.77, 666.66, 999999.0, 444.44, 333.33]
integer(8), parameter :: col11_data(7) = [1, 999999, 3, 4, 5, 999999, 8]
integer(8), parameter :: col12_data(7) = [-512, 999999, 3, 7623, -22000, 999999, 7]
integer(8), parameter :: col13_data(7) = [-1234567, 8765432, 999999, 22, 2222222, -81222323, 999999]
integer(8), parameter :: col14_data(7) = [999999, 999999, 999999, 999999, 999999, 999999, 999999]
contains
! TODO: Test missing doubles
! TODO: Test missing REAL
! TODO: Encoding NaN?
subroutine check_call(err, msg, success)
integer, intent(in) :: err
character(*), intent(in) :: msg
logical, intent(inout) :: success
if (err /= ODC_SUCCESS) then
write(error_unit, *) 'Failed API call: ', msg
write(error_unit, *) 'Error: ', odc_error_string(err)
success = .false.
end if
end subroutine
subroutine check_decoded_column_major(data, success)
real(8), intent(in) :: data(:, :)
integer :: row
character(16) :: str16
character(8) :: str8
logical, intent(inout) :: success
if (size(data, 1) /= 7 .or. size(data, 2) /= 15) then
write(error_unit, *) 'did not get data shape [7, 15]'
success = .false.
end if
if (any(col1_data /= data(:, 1))) then
write(error_unit, *) 'Col 1 differs: ', col1_data, ' vs ', data(:, 1)
success = .false.
end if
if (any(col2_data /= data(:, 2))) then
write(error_unit, *) 'Col 2 differs: ', col2_data, ' vs ', data(:, 2)
success = .false.
end if
if (any(col3_data /= data(:, 3))) then
write(error_unit, *) 'Col 3 differs: ', col3_data, ' vs ', data(:, 3)
success = .false.
end if
if (any(abs(col4_data - data(:, 4)) > 1.0e-10)) then
write(error_unit, *) 'Col 4 differs: ', col4_data, ' vs ', data(:, 4)
success = .false.
end if
if (any(col5_data /= data(:, 5))) then
write(error_unit, *) 'Col 5 differs: ', col5_data, ' vs ', data(:, 5)
success = .false.
end if
do row = 1, 7
if (trim(col6_data(row)) /= trim(transfer(data(row, 6:7), str16))) then
write(error_unit, *) 'Col 6 differs: ', trim(col6_data(row)), ' vs ', &
transfer(data(row, 6:7), str16)
success = .false.
end if
if (trim(col7_data(row)) /= trim(transfer(data(row, 8), str8))) then
write(error_unit, *) 'Col 7 differs: ', trim(col6_data(row)), ' vs ', &
transfer(data(row, 8), str8)
success = .false.
end if
end do
if (any(abs(col8_data - data(:, 9)) > 1.0e-10)) then
write(error_unit, *) 'Col 8 differs: ', col8_data, ' vs ', data(:, 9)
success = .false.
end if
if (any(abs(col9_data - data(:, 10)) > 1.0e-10)) then
write(error_unit, *) 'Col 9 differs: ', col9_data, ' vs ', data(:, 10)
success = .false.
end if
if (any(abs(col10_data - data(:, 11)) > 1.0e-10)) then
write(error_unit, *) 'Col 10 differs: ', col10_data, ' vs ', data(:, 11)
success = .false.
end if
if (any(col11_data /= data(:, 12))) then
write(error_unit, *) 'Col 11 differs: ', col11_data, ' vs ', data(:, 12)
success = .false.
end if
if (any(col12_data /= data(:, 13))) then
write(error_unit, *) 'Col 12 differs: ', col12_data, ' vs ', data(:, 13)
success = .false.
end if
if (any(col13_data /= data(:, 14))) then
write(error_unit, *) 'Col 13 differs: ', col13_data, ' vs ', data(:, 14)
success = .false.
end if
if (any(col14_data /= data(:, 15))) then
write(error_unit, *) 'Col 14 differs: ', col14_data, ' vs ', data(:, 15)
success = .false.
end if
end subroutine
function construct_data_column_major() result(data)
real(8) :: data(7, 15)
integer :: row
data(:, 1) = col1_data
data(:, 2) = col2_data
data(:, 3) = col3_data
data(:, 4) = col4_data
data(:, 5) = col5_data
do row = 1, 7
data(row, 6:7) = transfer(col6_data(row), 1.0_8, 2)
data(row, 8) = transfer(col7_data(row), 1.0_8)
end do
data(:, 9) = col8_data
data(:, 10) = col9_data
data(:, 11) = col10_data
data(:, 12) = col11_data
data(:, 13) = col12_data
data(:, 14) = col13_data
data(:, 15) = col14_data
end function
subroutine initialise_encoder(encoder, success)
type(odc_encoder) :: encoder
logical, intent(inout) :: success
call check_call(encoder%initialise(), "initialise encoder", success)
call check_call(encoder%add_column("col1", ODC_INTEGER), "add col1", success)
call check_call(encoder%add_column("col2", ODC_INTEGER), "add col2", success)
call check_call(encoder%add_column("col3", ODC_BITFIELD), "add col3", success)
call check_call(encoder%add_column("col4", ODC_DOUBLE), "add col4", success)
call check_call(encoder%add_column("col5", ODC_INTEGER), "add col5", success)
call check_call(encoder%add_column("col6", ODC_STRING), "add col6", success)
call check_call(encoder%add_column("col7", ODC_STRING), "add col7", success)
call check_call(encoder%add_column("col8", ODC_REAL), "add col8", success)
call check_call(encoder%add_column("col9", ODC_DOUBLE), "add col9", success)
call check_call(encoder%add_column("col10", ODC_REAL), "add col10", success)
call check_call(encoder%add_column("col11", ODC_BITFIELD), "add col11", success)
call check_call(encoder%add_column("col12", ODC_INTEGER), "add col12", success)
call check_call(encoder%add_column("col13", ODC_INTEGER), "add col13", success)
call check_call(encoder%add_column("col14", ODC_INTEGER), "add col14", success)
call check_call(encoder%column_set_data_size(6, element_size_doubles=2), "column attrs", success)
call check_call(encoder%column_add_bitfield(11, "bf1", 3), "add bitfield 1", success)
call check_call(encoder%column_add_bitfield(11, "bf2", 2), "add bitfield 2", success)
call check_call(encoder%column_add_bitfield(11, "bf3", 1), "add bitfield 3", success)
end subroutine
function test_encode_column_major() result(success)
real(8) :: data(7, 15)
integer :: outunit, iter
integer(8) :: bytes_written
type(odc_encoder) :: encoder
character(*), parameter :: test_filename = 'f90_test_encode_column.odb'
logical :: success
success = .true.
data = construct_data_column_major()
call check_decoded_column_major(data, success)
call initialise_encoder(encoder, success)
! Put encoding in a loop. Do the encoding twice, to demonstrate that
! we can iterate through tables of data.
open(newunit=outunit, file=test_filename, access='stream', form='unformatted')
do iter = 0, 1
call check_call(encoder%set_data(data), "set encoder data", success)
call check_call(encoder%encode(outunit, bytes_written), "do encode", success)
end do
close(outunit)
call check_call(encoder%free(), "free encoder", success)
call check_encoded_odb(test_filename, success)
end function
function test_encode_row_major() result(success)
real(8) :: data(15, 7)
integer :: row, outunit, iter
integer(8) :: bytes_written
type(odc_encoder) :: encoder
character(*), parameter :: test_filename = 'f90_test_encode_row.odb'
logical :: success
success = .true.
data = transpose(construct_data_column_major())
call check_decoded_column_major(transpose(data), success)
call initialise_encoder(encoder, success)
! Put encoding in a loop. Do the encoding twice, to demonstrate that
! we can iterate through tables of data.
open(newunit=outunit, file=test_filename, access='stream', form='unformatted')
do iter = 0, 1
call check_call(encoder%set_data(data, column_major=.false.), "set encoder data", success)
call check_call(encoder%encode(outunit, bytes_written), "do encode", success)
end do
close(outunit)
call check_call(encoder%free(), "free encoder", success)
call check_encoded_odb(test_filename, success)
end function
subroutine check_frame_column(frame, col, name, type, success)
type(odc_frame), intent(in) :: frame
integer, intent(in) :: col, type
character(*), intent(in) :: name
logical, intent(inout) :: success
character(:), allocatable :: column_name, nm
integer :: ncols, column_type, element_size, element_size_doubles, bitfield_count
integer :: sz, off, i
integer :: expected_count, expected_sz
character(3) :: expected_bf_names(3) = ['bf1', 'bf2', 'bf3']
integer :: expected_bf_sizes(3) = [3, 2, 1]
integer :: expected_bf_offsets(3) = [0, 3, 5]
call check_call(frame%column_count(ncols), "column count", success)
if (ncols /= 14) then
write(error_unit, *) 'Unexpected column count. got ', ncols, ', expected 14'
success = .false.
end if
call check_call(frame%column_attributes(col, &
name=column_name, &
type=column_type, &
element_size=element_size, &
element_size_doubles=element_size_doubles, &
bitfield_count=bitfield_count), "column attrs", success)
if (column_name /= name) then
write(error_unit, '(a,i2,4a)') 'Unexpected column name for column ', col, &
'. Got ', column_name, ', expected ', name
success = .false.
end if
if (column_type /= type) then
write(error_unit, '(3(a,i2))') 'Unexpected column type for column ', col, &
'. Got ', column_name, ', expected ', name
success = .false.
end if
if (col == 6) then
expected_sz = 2
else
expected_sz = 1
end if
if (element_size_doubles /= expected_sz) then
write(error_unit, '(3(a,i2))') 'Unexpected column element size for column ', col, &
'. Got ', element_size_doubles, ', expected ', expected_sz
success = .false.
end if
if (element_size /= 8*expected_sz) then
write(error_unit, '(3(a,i2))') 'Unexpected column element size for column ', col, &
'. Got ', element_size, ', expected ', 8*expected_sz
success = .false.
end if
if (col == 11) then
expected_count = 3
else
expected_count = 0
end if
if (bitfield_count /= expected_count) then
write(error_unit, '(3(a,i2))') 'Unexpected column bitfield_count for column ', col, &
'. Got ', bitfield_count, ', expected ', expected_count
success = .false.
end if
if (col == 11) then
do i = 1, 3
call check_call(frame%bitfield_attributes(11, i, name=nm, offset=off, size=sz), 'bitfield attrs', success)
if (sz /= expected_bf_sizes(i)) then
write(error_unit, '(3(a,i2))') 'Unexpected bitfield size for field ', i, &
'. Got ', sz, ', expected ', expected_bf_sizes(i)
success = .false.
end if
if (off /= expected_bf_offsets(i)) then
write(error_unit, '(3(a,i2))') 'Unexpected bitfield offset for field ', i, &
'. Got ', off, ', expected ', expected_bf_offsets(i)
success = .false.
end if
if (nm /= expected_bf_names(i)) then
write(error_unit, '(a,i2,4a)') 'Unexpected bitfield name for field ', i, &
'. Got ', nm, ', expected ', expected_bf_names(i)
success = .false.
end if
end do
end if
end subroutine
subroutine check_encoded_odb(path, success)
character(*), intent(in) :: path
logical, intent(inout) :: success
type(odc_reader) :: reader
type(odc_frame) :: frame
type(odc_decoder) :: decoder
real(8), pointer :: data(:,:)
logical :: column_major
integer :: err, iter
integer(8) :: nrows
call check_call(reader%open_path(path), "open " // path, success)
call check_call(frame%initialise(reader), "initialise frame", success)
! We are expecting two frames
do iter = 0, 1
call check_call(frame%next(), "get first frame", success)
call check_frame_column(frame, 1, "col1", ODC_INTEGER, success)
call check_frame_column(frame, 2, "col2", ODC_INTEGER, success)
call check_frame_column(frame, 3, "col3", ODC_BITFIELD, success)
call check_frame_column(frame, 4, "col4", ODC_DOUBLE, success)
call check_frame_column(frame, 5, "col5", ODC_INTEGER, success)
call check_frame_column(frame, 6, "col6", ODC_STRING, success)
call check_frame_column(frame, 7, "col7", ODC_STRING, success)
call check_frame_column(frame, 8, "col8", ODC_REAL, success)
call check_frame_column(frame, 9, "col9", ODC_DOUBLE, success)
call check_frame_column(frame, 10, "col10", ODC_REAL, success)
call check_frame_column(frame, 11, "col11", ODC_BITFIELD, success)
call check_frame_column(frame, 12, "col12", ODC_INTEGER, success)
call check_frame_column(frame, 13, "col13", ODC_INTEGER, success)
call check_frame_column(frame, 14, "col14", ODC_INTEGER, success)
! Decode the data
call check_call(decoder%initialise(), "initialise decoder", success)
call check_call(decoder%defaults_from_frame(frame), "defaults from frame", success)
call check_call(decoder%decode(frame, nrows), "decode", success)
call check_call(decoder%data(data, column_major), "get data", success)
if (.not. column_major) then
write(error_unit, *) 'expected column major'
success = .false.
end if
call check_decoded_column_major(data, success)
call check_call(decoder%free(), "free decoder", success)
end do
! And iterations done
err = frame%next()
if (err /= ODC_ITERATION_COMPLETE) then
write(error_unit, *) 'expected iteration complete'
success = .false.
end if
! Cleanup
call check_call(frame%free(), "free frame", success)
call check_call(reader%close(), "free frame", success)
end subroutine
!funcion test_encode_integers() result(success)
! logical :: success
! success = .true.
!end function
!function test_encode_columns() result(success)
! logical :: success
! success = .true.
!end function
end module
program fapi_general
use fapi_encode_tests
implicit none
logical :: success
success = .true.
call check_call(odc_initialise_api(), "initialise api", success)
call check_call(odc_set_missing_integer(999999_8), "set missing integer", success)
call check_call(odc_set_missing_double(999999.0_8), "set missing double", success)
success = test_encode_column_major() .and. success
success = test_encode_row_major() .and. success
!success = test_encode_integers() .and. success
!success = test_encode_columns() .and. success
if (.not. success) stop -1
end program
|