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
|
/*
* Copyright (C) 2010 Regents of the University of Michigan
*
* This program is free software: 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 3 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "GzipHeader.h"
#include <iostream>
#include <cstring>
// Constructor to initialize member data to 0.
GzipHeader::GzipHeader()
{
// clear the union via memset:
memset(headerBuffer, 0, sizeof(headerBuffer));
}
// Desctructor - nothing to do.
GzipHeader::~GzipHeader()
{
}
// Method to read the gzip header from a file.
// Returns true if the file is a gzip file, false, otherwise.
bool GzipHeader::readHeader(FILE* filePtr)
{
bool isGzip = false;
// If the file is not already open, return false.
if (filePtr == NULL)
{
// File is not open, so return false - not a gzip file.
return(false);
}
// Try to read a header from the file.
// if(144 == fread(buffer, 1, 144, filePtr))
if (GZIP_HEADER_SIZE == fread(buffer, 1, GZIP_HEADER_SIZE, filePtr))
{
memcpy(headerBuffer, buffer, GZIP_HEADER_SIZE);
// Successfully read enough bytes, so check to see if it is a GzipFile.
if (isGzipFile())
{
// It is a gzip file.
isGzip = true;
}
}
return isGzip;
}
// Method to read the gzip header from a file.
// Returns true if the file is a gzip file, false, otherwise.
bool GzipHeader::readHeader(UncompressedFileType& file)
{
bool isGzip = false;
// If the file is not already open, return false.
if (!file.isOpen())
{
// File is not open, so return false - not a gzip file.
return(false);
}
// Try to read a header from the file.
// if(144 == file.read(buffer, 1, 144, filePtr))
if ((int)GZIP_HEADER_SIZE == file.read(buffer, GZIP_HEADER_SIZE))
{
memcpy(headerBuffer, buffer, GZIP_HEADER_SIZE);
// Successfully read enough bytes, so check to see if it is a GzipFile.
if (isGzipFile())
{
// It is a gzip file.
isGzip = true;
}
}
return isGzip;
}
// Determine if the file is a gzip file.
bool GzipHeader::isGzipFile()
{
if ((id1 == 31) && (id2 == 139))
{
return true;
}
return false;
}
// Determine if the file is a BGZF compressed file.
bool GzipHeader::isBgzfFile()
{
if (isGzipFile() && (si1 == 66) && (si2 == 67))
{
return true;
}
return false;
}
|