/* AbiWord * Copyright (C) 1998 AbiSource, Inc. * * 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 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. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #include #include "string.h" #include "ie_exp_GZipAbiWord.h" #include "ut_assert.h" #include "ut_string.h" IE_Exp_GZipAbiWord::IE_Exp_GZipAbiWord(PD_Document * pDocument) : IE_Exp_AbiWord_1(pDocument), m_gzfp(0) { } IE_Exp_GZipAbiWord::~IE_Exp_GZipAbiWord() { } /*****************************************************************/ /*****************************************************************/ IE_Exp_GZipAbiWord_Sniffer::IE_Exp_GZipAbiWord_Sniffer () : IE_ExpSniffer(IE_IMPEXPNAME_AWML11GZ) { // } bool IE_Exp_GZipAbiWord_Sniffer::recognizeSuffix(const char * szSuffix) { return (!UT_stricmp(szSuffix,".zabw") || !UT_stricmp(szSuffix, ".abw.gz")); } UT_Error IE_Exp_GZipAbiWord_Sniffer::constructExporter(PD_Document * pDocument, IE_Exp ** ppie) { IE_Exp_GZipAbiWord * p = new IE_Exp_GZipAbiWord(pDocument); *ppie = p; return UT_OK; } bool IE_Exp_GZipAbiWord_Sniffer::getDlgLabels(const char ** pszDesc, const char ** pszSuffixList, IEFileType * ft) { *pszDesc = "GZipped AbiWord (.zabw)"; #ifdef WIN32 *pszSuffixList = "*.zabw" ; #else *pszSuffixList = "*.abw.gz; *.zabw"; #endif *ft = getFileType(); return true; } /*****************************************************************/ /*****************************************************************/ bool IE_Exp_GZipAbiWord::_openFile(const char * szFilename) { UT_return_val_if_fail(!m_gzfp, false); m_gzfp = static_cast(gzopen(szFilename, "wb6")); return (m_gzfp != 0); } UT_uint32 IE_Exp_GZipAbiWord::_writeBytes(const UT_Byte * pBytes, UT_uint32 length) { UT_return_val_if_fail(m_gzfp, 0); UT_return_val_if_fail(pBytes, 0); UT_return_val_if_fail(length, 0); return gzwrite(m_gzfp, const_cast(static_cast(pBytes)), sizeof(UT_Byte) * length); } bool IE_Exp_GZipAbiWord::_closeFile(void) { if (m_gzfp) gzclose(m_gzfp); m_gzfp = 0; return true; }