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
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* libdatrie - Double-Array Trie Library
* Copyright (C) 2006 Theppitak Karoonboonyanan <theppitak@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* fileutils.h - File utility functions
* Created: 2006-08-15
* Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
*/
#include <string.h>
#include <stdlib.h>
#include "fileutils.h"
/* ==================== BEGIN IMPLEMENTATION PART ==================== */
/*--------------------------------*
* FUNCTIONS IMPLEMENTATIONS *
*--------------------------------*/
static int32
parse_int32_be (const uint8 *buff)
{
return (buff[0] << 24) | (buff[1] << 16) | (buff[2] << 8) | buff[3];
}
Bool
file_read_int32 (FILE *file, int32 *o_val)
{
uint8 buff[4];
if (fread (buff, 4, 1, file) == 1) {
*o_val = parse_int32_be (buff);
return TRUE;
}
return FALSE;
}
static void
serialize_int32_be (uint8 *buff, int32 val)
{
buff[0] = (val >> 24) & 0xff;
buff[1] = (val >> 16) & 0xff;
buff[2] = (val >> 8) & 0xff;
buff[3] = val & 0xff;
}
void
serialize_int32_be_incr (uint8 **buff, int32 val)
{
serialize_int32_be (*buff, val);
*buff += 4; /* don't sizeof! */
}
Bool
file_write_int32 (FILE *file, int32 val)
{
uint8 buff[4];
serialize_int32_be (buff, val);
return (fwrite (buff, 4, 1, file) == 1);
}
static int16
parse_int16_be (const uint8 *buff)
{
return (buff[0] << 8) | buff[1];
}
Bool
file_read_int16 (FILE *file, int16 *o_val)
{
uint8 buff[2];
if (fread (buff, 2, 1, file) == 1) {
*o_val = parse_int16_be (buff);
return TRUE;
}
return FALSE;
}
static void
serialize_int16_be (uint8 *buff, int16 val)
{
buff[0] = val >> 8;
buff[1] = val & 0xff;
}
void
serialize_int16_be_incr (uint8 **buff, int16 val)
{
serialize_int16_be (*buff, val);
*buff += 2; /* don't sizeof! */
}
Bool
file_write_int16 (FILE *file, int16 val)
{
uint8 buff[2];
serialize_int16_be (buff, val);
return (fwrite (buff, 2, 1, file) == 1);
}
Bool
file_read_int8 (FILE *file, int8 *o_val)
{
return (fread (o_val, sizeof (int8), 1, file) == 1);
}
Bool
file_write_int8 (FILE *file, int8 val)
{
return (fwrite (&val, sizeof (int8), 1, file) == 1);
}
Bool
file_read_chars (FILE *file, char *buff, int len)
{
return (fread (buff, sizeof (char), len, file) == len);
}
Bool
file_write_chars (FILE *file, const char *buff, int len)
{
return (fwrite (buff, sizeof (char), len, file) == len);
}
/*
vi:ts=4:ai:expandtab
*/
|