2008-01-22 15:49:24 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2008-08-28 15:53:15 -04:00
|
|
|
/// \file stream_flags_common.c
|
|
|
|
/// \brief Common stuff for Stream flags coders
|
2008-01-22 15:49:24 -05:00
|
|
|
//
|
2008-08-28 15:53:15 -04:00
|
|
|
// Copyright (C) 2007-2008 Lasse Collin
|
2008-01-22 15:49:24 -05:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-08-28 15:53:15 -04:00
|
|
|
#include "stream_flags_common.h"
|
|
|
|
|
|
|
|
|
2008-09-27 16:37:13 -04:00
|
|
|
const uint8_t lzma_header_magic[6] = { 0xFD, 0x37, 0x7A, 0x58, 0x5A, 0x00 };
|
2008-08-28 15:53:15 -04:00
|
|
|
const uint8_t lzma_footer_magic[2] = { 0x59, 0x5A };
|
2008-01-22 15:49:24 -05:00
|
|
|
|
|
|
|
|
2008-09-12 15:41:40 -04:00
|
|
|
extern LZMA_API lzma_ret
|
|
|
|
lzma_stream_flags_compare(
|
|
|
|
const lzma_stream_flags *a, const lzma_stream_flags *b)
|
2008-06-18 11:02:10 -04:00
|
|
|
{
|
2008-09-12 15:41:40 -04:00
|
|
|
// We can compare only version 0 structures.
|
|
|
|
if (a->version != 0 || b->version != 0)
|
2008-09-13 05:10:43 -04:00
|
|
|
return LZMA_OPTIONS_ERROR;
|
2008-09-12 15:41:40 -04:00
|
|
|
|
|
|
|
// Check type
|
|
|
|
if ((unsigned int)(a->check) > LZMA_CHECK_ID_MAX
|
|
|
|
|| (unsigned int)(b->check) > LZMA_CHECK_ID_MAX)
|
|
|
|
return LZMA_PROG_ERROR;
|
|
|
|
|
2008-06-18 11:02:10 -04:00
|
|
|
if (a->check != b->check)
|
2008-09-12 15:41:40 -04:00
|
|
|
return LZMA_DATA_ERROR;
|
2008-01-22 15:49:24 -05:00
|
|
|
|
2008-06-18 11:02:10 -04:00
|
|
|
// Backward Sizes are compared only if they are known in both.
|
2008-09-13 05:10:43 -04:00
|
|
|
if (a->backward_size != LZMA_VLI_UNKNOWN
|
|
|
|
&& b->backward_size != LZMA_VLI_UNKNOWN) {
|
2008-09-12 15:41:40 -04:00
|
|
|
if (!is_backward_size_valid(a) || !is_backward_size_valid(b))
|
|
|
|
return LZMA_PROG_ERROR;
|
|
|
|
|
|
|
|
if (a->backward_size != b->backward_size)
|
|
|
|
return LZMA_DATA_ERROR;
|
|
|
|
}
|
2008-06-18 11:02:10 -04:00
|
|
|
|
2008-09-12 15:41:40 -04:00
|
|
|
return LZMA_OK;
|
2008-06-18 11:02:10 -04:00
|
|
|
}
|