Mercurial > audlegacy-plugins
view src/modplug/archive/arch_bz2.cxx @ 2975:4d778b7a19c6
now sndfile can display Japanese file name.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Thu, 12 Feb 2009 01:50:09 +0900 |
parents | feb7baf8da52 |
children |
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; } if(fscanf(f, "%u", &mSize) != 1) // this is the size. { mSize = 0; return; } pclose(f); mMap = new char[mSize]; if(mMap == NULL) { mSize = 0; return; } lCommand = "bzcat \'" + aFileName + '\''; //decompress to stdout f = popen(lCommand.c_str(), "r"); if (f <= 0) { mSize = 0; return; } if(fread((char *)mMap, sizeof(char), mSize, f) != mSize) { mSize = 0; return; } 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); }