Mercurial > audlegacy-plugins
view src/modplug/archive/arch_bz2.cxx @ 136:6b5a52635b3b trunk
[svn] - like with so many other things, modplug is now maintained by us.
author | nenolod |
---|---|
date | Sun, 29 Oct 2006 01:04:52 -0700 |
parents | 3da1b8942b8b |
children | 9549fea94794 |
line wrap: on
line source
/* Modplug XMMS Plugin * Authors: Kenton Varda <temporal@gauge3d.org> * Colin DeVilbiss <crdevilb@mtu.edu> * * This source code is public domain. */ // BZ2 support added by Colin DeVilbiss <crdevilb@mtu.edu> //open() #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <stdio.h> #include "arch_bz2.h" #include <iostream> arch_Bzip2::arch_Bzip2(const string& aFileName) { //check if file exists int lFileDesc = open(aFileName.c_str(), O_RDONLY); if(lFileDesc == -1) { mSize = 0; return; } close(lFileDesc); //ok, continue string lCommand = "bzcat \'" + aFileName + "\' | wc -c"; //get info FILE *f = popen(lCommand.c_str(), "r"); if (f <= 0) { mSize = 0; return; } fscanf(f, "%u", &mSize); // this is the size. pclose(f); mMap = new char[mSize]; if(mMap == NULL) { mSize = 0; return; } lCommand = "bzcat \'" + aFileName + '\''; //decompress to stdout popen(lCommand.c_str(), "r"); if (f <= 0) { mSize = 0; return; } fread((char *)mMap, sizeof(char), mSize, f); pclose(f); } arch_Bzip2::~arch_Bzip2() { if(mSize != 0) delete [] (char*)mMap; } bool arch_Bzip2::ContainsMod(const string& aFileName) { string lName; int lFileDesc = open(aFileName.c_str(), O_RDONLY); if(lFileDesc == -1) return false; close(lFileDesc); lName = aFileName.substr(0, aFileName.find_last_of('.')); return IsOurFile(lName); }