/
githubmirror
/
libsmbios
Обзор
Документация
Войти
/
githubmirror
/
libsmbios
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/libsmbios_c/memory/memory_ut.c
183 строки
5 KB
Michael E Brown
enable memory_ut to work for windows.
20 ноя 2008, 09:48
20 ноя 2008, 09:48
198ae34
Код
Авторство
О чём код?
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim:expandtab:autoindent:tabstop=4:shiftwidth=4:filetype=c:cindent:textwidth=0: * * Copyright (C) 2005 Dell Inc. * by Michael Brown <Michael_E_Brown@dell.com> * Licensed under the Open Software License version 2.1 * * Alternatively, 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 of the License, * 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. */ #define LIBSMBIOS_C_SOURCE // Include compat.h first, then system headers, then public, then private #include "smbios_c/compat.h" // system #include <stdarg.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <errno.h> // public #include "smbios_c/obj/memory.h" #include "smbios_c/types.h" // private #include "memory_impl.h" // UNIT TEST struct ut_data { char *filename; FILE *fd; int mem_errno; int rw; }; static int UT_read_fn(const struct memory_access_obj *this, u8 *buffer, u64 offset, size_t length) { struct ut_data *private_data = (struct ut_data *)this->private_data; private_data->mem_errno = errno = 0; int retval = -1; if (!private_data->fd) { // fopen portable to Windows if "b" is added to mode. private_data->rw=0; private_data->fd = fopen( private_data->filename, "rb" ); // open for read to start if (!private_data->fd) goto err_out; } // FSEEK is a macro defined in config/ for portability retval = -2; int ret = FSEEK(private_data->fd, offset, 0); if (ret) goto err_out; size_t recsRead = fread( buffer, length, 1, private_data->fd ); // TODO: handle short reads retval = -3; if ((1 != recsRead)) goto err_out; retval = 0; goto out; err_out: private_data->mem_errno = errno; out: // close on error, or if close hint if (private_data->fd && (memory_obj_should_close(this) || retval)) { fflush(private_data->fd); fclose(private_data->fd); private_data->fd = 0; } return retval; } static int UT_write_fn(const struct memory_access_obj *this, u8 *buffer, u64 offset, size_t length) { struct ut_data *private_data = (struct ut_data *)this->private_data; private_data->mem_errno = errno = 0; int retval = -1; if(!private_data->rw || !private_data->fd) { if(private_data->fd) fclose(private_data->fd); private_data->fd = fopen( private_data->filename, "r+b" ); // re-open for write if(!private_data->fd) goto err_out; private_data->rw=1; } // FSEEK is a macro defined in config/ for portability int ret = FSEEK(private_data->fd, offset, 0); if(ret) goto err_out; size_t recsWritten = fwrite( buffer, length, 1, private_data->fd ); if( 1 != recsWritten ) goto err_out; retval = 0; goto out; err_out: private_data->mem_errno = errno; out: // close on error, or if close hint if (private_data->fd && (memory_obj_should_close(this) || retval)) { fflush(private_data->fd); fclose(private_data->fd); private_data->fd = 0; } return retval; } static void UT_free(struct memory_access_obj *this) { struct ut_data *private_data = (struct ut_data *)this->private_data; if (private_data->filename) { free(private_data->filename); private_data->filename = 0; } if (private_data->fd) { fflush(private_data->fd); fclose(private_data->fd); } free(private_data); this->private_data = 0; } static void UT_cleanup(struct memory_access_obj *this) { struct ut_data *private_data = (struct ut_data *)this->private_data; if (private_data->fd) { fflush(private_data->fd); fclose(private_data->fd); private_data->fd = 0; } private_data->mem_errno = 0; private_data->rw = 0; } int init_mem_struct_filename(struct memory_access_obj *m, const char *fn) { struct ut_data *priv_ut = (struct ut_data *)calloc(1, sizeof(struct ut_data)); priv_ut->filename = (char *)calloc(1, strlen(fn) + 1); strcpy(priv_ut->filename, fn); m->private_data = priv_ut; m->free = UT_free; m->read_fn = UT_read_fn; m->write_fn = UT_write_fn; m->cleanup = UT_cleanup; m->close = 1; m->initialized = 1; return 0; }