Mercurial > audlegacy-plugins
view src/modplug/archive/arch_gzip.cxx @ 914:d12d27887bf0 trunk
[svn] - statusicon: smarter show/hide on statusicon click (plugin will now correctly handle the situation where the player window is always hidden and the playlist window should be shown/hidden)
author | giacomo |
---|---|
date | Wed, 04 Apr 2007 11:49:12 -0700 |
parents | 3da1b8942b8b |
children | 9549fea94794 |
line wrap: on
line source
/* Modplug XMMS Plugin * Authors: Kenton Varda <temporal@gauge3d.org> * * This source code is public domain. */ //open() #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <stdio.h> #include "arch_gzip.h" arch_Gzip::arch_Gzip(const string& aFileName) { //check if file exists int lFileDesc = open(aFileName.c_str(), O_RDONLY); if(lFileDesc == -1) { mSize = 0; return; } close(lFileDesc); // file exists. string lCommand = "gunzip -l \"" + aFileName + '\"'; //get info FILE *f = popen(lCommand.c_str(), "r"); if (f <= 0) { mSize = 0; return; } char line[81]; fgets(line, 80, f); // ignore a line. fscanf(f, "%u", &mSize); // ignore first number. fscanf(f, "%u", &mSize); // keep second number. pclose(f); mMap = new char[mSize]; if(mMap == NULL) { mSize = 0; return; } lCommand = "gunzip -c \"" + aFileName + '\"'; //decompress to stdout f = popen(lCommand.c_str(), "r"); if (f <= 0) { mSize = 0; return; } fread((char *)mMap, sizeof(char), mSize, f); pclose(f); } arch_Gzip::~arch_Gzip() { if(mSize != 0) delete [] (char*)mMap; } bool arch_Gzip::ContainsMod(const string& aFileName) { string lName; int lFileDesc = open(aFileName.c_str(), O_RDONLY); uint32 num; float fnum; if(lFileDesc == -1) return false; close(lFileDesc); // file exists. string lCommand = "gunzip -l \"" + aFileName + '\"'; //get info FILE *f = popen(lCommand.c_str(),"r"); if (f <= 0) { pclose(f); return false; } char line[300]; fgets(line, 80, f); // ignore a line. fscanf(f, "%i", &num); // ignore first number fscanf(f, "%i", &num); // ignore second number fscanf(f, "%f%%", &fnum); // ignore ratio fgets(line, 300, f); // read in correct line safely. if (strlen(line) > 1) line[strlen(line)-1] = 0; lName = line; pclose(f); return IsOurFile(lName); }