aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/pool
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-01-04 05:00:39 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-01-04 05:00:39 +0000
commit24184881081ede89625dbe760a84464057a01e3d (patch)
treedcf737fa88449eaa2fc9614fddd23f72bd5ea516 /externals/grill/pool
parent34fadc070e65a014e2a42b10e1ac49e493b3cc30 (diff)
fixes for Max 4.5 SDK headers
fixes for Max/OSX cleanups preparing the release 0.1.2 update for flext build system roll back to working version svn path=/trunk/; revision=2460
Diffstat (limited to 'externals/grill/pool')
-rw-r--r--externals/grill/pool/package.txt4
-rwxr-xr-xexternals/grill/pool/pool.mcp (renamed from externals/grill/pool/pool.cw)bin202236 -> 202236 bytes
-rw-r--r--externals/grill/pool/source/data.cpp136
-rw-r--r--externals/grill/pool/source/main.cpp30
-rw-r--r--externals/grill/pool/source/pool.cpp2
-rw-r--r--externals/grill/pool/source/pool.h2
6 files changed, 38 insertions, 136 deletions
diff --git a/externals/grill/pool/package.txt b/externals/grill/pool/package.txt
index a873f5c9..93df3011 100644
--- a/externals/grill/pool/package.txt
+++ b/externals/grill/pool/package.txt
@@ -1,9 +1,5 @@
NAME=pool
-BUILDCLASS=ext
-BUILDMODE=release
-BUILDTYPE=single
-
SRCDIR=source
PRECOMPILE=pool.h
diff --git a/externals/grill/pool/pool.cw b/externals/grill/pool/pool.mcp
index 91fcb1fe..91fcb1fe 100755
--- a/externals/grill/pool/pool.cw
+++ b/externals/grill/pool/pool.mcp
Binary files differ
diff --git a/externals/grill/pool/source/data.cpp b/externals/grill/pool/source/data.cpp
index 2bccee41..aaf9b817 100644
--- a/externals/grill/pool/source/data.cpp
+++ b/externals/grill/pool/source/data.cpp
@@ -2,7 +2,7 @@
pool - hierarchical storage object for PD and Max/MSP
-Copyright (c) 2002-2004 Thomas Grill
+Copyright (c) 2002-2005 Thomas Grill
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
@@ -32,92 +32,6 @@ pooldata::~pooldata()
const A pooldata::nullatom = { A_NULL };
-/*
-V pooldata::Reset()
-{
- root.Reset();
-}
-
-BL pooldata::MkDir(const AtomList &d,I vcnt,I dcnt)
-{
- root.AddDir(d,vcnt,dcnt);
- return true;
-}
-
-
-BL pooldata::ChkDir(const AtomList &d)
-{
- return root.GetDir(d) != NULL;
-}
-
-BL pooldata::RmDir(const AtomList &d)
-{
- return root.DelDir(d);
-}
-
-BL pooldata::Set(const AtomList &d,const A &key,AtomList *data,BL over)
-{
- pooldir *pd = root.GetDir(d);
- if(!pd) return false;
- pd->SetVal(key,data,over);
- return true;
-}
-
-BL pooldata::Clr(const AtomList &d,const A &key)
-{
- pooldir *pd = root.GetDir(d);
- if(!pd) return false;
- pd->ClrVal(key);
- return true;
-}
-
-V pooldata::Clri(const AtomList &d,I ix)
-{
- pooldir *pd = root.GetDir(d);
- if(!pd) return false;
- pd->ClrVali(ix);
- return true;
-}
-
-BL pooldata::ClrAll(const AtomList &d,BL rec,BL dironly)
-{
- pooldir *pd = root.GetDir(d);
- if(!pd) return false;
- pd->Clear(rec,dironly);
- return true;
-}
-
-flext::AtomList *pooldata::Peek(const AtomList &d,const A &key)
-{
- pooldir *pd = root.GetDir(d);
- return pd?pd->PeekVal(key):NULL;
-}
-
-poolval *pooldata::Ref(const AtomList &d,const A &key)
-{
- pooldir *pd = root.GetDir(d);
- return pd?pd->RefVal(key):NULL;
-}
-
-poolval *pooldata::Refi(const AtomList &d,I ix)
-{
- pooldir *pd = root.GetDir(d);
- return pd?pd->RefVali(ix):NULL;
-}
-
-flext::AtomList *pooldata::Get(const AtomList &d,const A &key)
-{
- pooldir *pd = root.GetDir(d);
- return pd?pd->GetVal(key):NULL;
-}
-
-I pooldata::CntAll(const AtomList &d)
-{
- pooldir *pd = root.GetDir(d);
- return pd?pd->CntAll():0;
-}
-*/
-
I pooldata::GetAll(const AtomList &d,A *&keys,AtomList *&lst)
{
pooldir *pd = root.GetDir(d);
@@ -138,14 +52,6 @@ I pooldata::PrintAll(const AtomList &d)
return pd?pd->PrintAll(tmp,sizeof tmp):0;
}
-/*
-I pooldata::CntSub(const AtomList &d)
-{
- pooldir *pd = root.GetDir(d);
- return pd?pd->CntSub():0;
-}
-*/
-
I pooldata::GetSub(const AtomList &d,const t_atom **&dirs)
{
pooldir *pd = root.GetDir(d);
@@ -199,10 +105,10 @@ pooldir *pooldata::CopyAll(const AtomList &d,I depth,BL cut)
}
-static const C *CnvFlnm(C *dst,const C *src,I sz)
+static const char *CnvFlnm(char *dst,const char *src,int sz)
{
#if FLEXT_SYS == FLEXT_SYS_PD && FLEXT_OS == FLEXT_OS_WIN
- I i,cnt = strlen(src);
+ int i,cnt = strlen(src);
if(cnt >= sz-1) return NULL;
for(i = 0; i < cnt; ++i)
dst[i] = src[i] != '/'?src[i]:'\\';
@@ -213,15 +119,15 @@ static const C *CnvFlnm(C *dst,const C *src,I sz)
#endif
}
-BL pooldata::LdDir(const AtomList &d,const C *flnm,I depth,BL mkdir)
+bool pooldata::LdDir(const AtomList &d,const char *flnm,int depth,bool mkdir)
{
pooldir *pd = root.GetDir(d);
if(pd) {
- C tmp[1024];
- const C *t = CnvFlnm(tmp,flnm,sizeof tmp);
+ char tmp[1024];
+ const char *t = CnvFlnm(tmp,flnm,sizeof tmp);
if(t) {
- ifstream fl(t);
- return fl.good() && pd->LdDir(fl,depth,mkdir);
+ ifstream file(t);
+ return file.good() && pd->LdDir(file,depth,mkdir);
}
else return false;
}
@@ -236,10 +142,10 @@ BL pooldata::SvDir(const AtomList &d,const C *flnm,I depth,BL absdir)
C tmp[1024];
const C *t = CnvFlnm(tmp,flnm,sizeof tmp);
if(t) {
- ofstream fl(t);
+ ofstream file(t);
AtomList tmp;
if(absdir) tmp = d;
- return fl.good() && pd->SvDir(fl,depth,tmp);
+ return file.good() && pd->SvDir(file,depth,tmp);
}
else return false;
}
@@ -254,10 +160,10 @@ BL pooldata::LdDirXML(const AtomList &d,const C *flnm,I depth,BL mkdir)
C tmp[1024];
const C *t = CnvFlnm(tmp,flnm,sizeof tmp);
if(t) {
- ifstream fl(t);
- BL ret = fl.good() != 0;
+ ifstream file(t);
+ BL ret = file.good() != 0;
if(ret) {
- fl.getline(tmp,sizeof tmp);
+ file.getline(tmp,sizeof tmp);
ret = !strncmp(tmp,"<?xml",5);
}
/*
@@ -268,7 +174,7 @@ BL pooldata::LdDirXML(const AtomList &d,const C *flnm,I depth,BL mkdir)
}
*/
if(ret)
- ret = pd->LdDirXML(fl,depth,mkdir);
+ ret = pd->LdDirXML(file,depth,mkdir);
return ret;
}
}
@@ -283,15 +189,15 @@ BL pooldata::SvDirXML(const AtomList &d,const C *flnm,I depth,BL absdir)
C tmp[1024];
const C *t = CnvFlnm(tmp,flnm,sizeof tmp);
if(t) {
- ofstream fl(t);
+ ofstream file(t);
AtomList tmp;
if(absdir) tmp = d;
- if(fl.good()) {
- fl << "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>" << endl;
- fl << "<!DOCTYPE pool SYSTEM \"http://www.parasitaere-kapazitaeten.net/ext/pool/pool-0.2.dtd\">" << endl;
- fl << "<pool>" << endl;
- BL ret = pd->SvDirXML(fl,depth,tmp);
- fl << "</pool>" << endl;
+ if(file.good()) {
+ file << "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>" << endl;
+ file << "<!DOCTYPE pool SYSTEM \"http://grrrr.org/ext/pool/pool-0.2.dtd\">" << endl;
+ file << "<pool>" << endl;
+ BL ret = pd->SvDirXML(file,depth,tmp);
+ file << "</pool>" << endl;
return ret;
}
}
diff --git a/externals/grill/pool/source/main.cpp b/externals/grill/pool/source/main.cpp
index d3d09c09..8dfa06e8 100644
--- a/externals/grill/pool/source/main.cpp
+++ b/externals/grill/pool/source/main.cpp
@@ -2,7 +2,7 @@
pool - hierarchical storage object for PD and Max/MSP
-Copyright (c) 2002-2004 Thomas Grill
+Copyright (c) 2002-2005 Thomas Grill
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
@@ -153,7 +153,7 @@ private:
static pooldata *GetPool(const S *s);
static V RmvPool(pooldata *p);
- std::string MakeFilename(const C *fn) const;
+ string MakeFilename(const C *fn) const;
FLEXT_CALLVAR_V(mg_pool,ms_pool)
FLEXT_ATTRVAR_B(absdir)
@@ -975,8 +975,8 @@ V pool::load(I argc,const A *argv,BL xml)
if(!flnm)
post("%s - %s: no filename given",thisName(),GetString(thisTag()));
else {
- string fl(MakeFilename(flnm));
- if(!(xml?pl->LoadXML(fl.c_str()):pl->Load(fl.c_str())))
+ string file(MakeFilename(flnm));
+ if(!(xml?pl->LoadXML(file.c_str()):pl->Load(file.c_str())))
post("%s - %s: error loading data",thisName(),GetString(thisTag()));
}
@@ -994,8 +994,8 @@ V pool::save(I argc,const A *argv,BL xml)
if(!flnm)
post("%s - %s: no filename given",thisName(),GetString(thisTag()));
else {
- string fl(MakeFilename(flnm));
- if(!(xml?pl->SaveXML(fl.c_str()):pl->Save(fl.c_str())))
+ string file(MakeFilename(flnm));
+ if(!(xml?pl->SaveXML(file.c_str()):pl->Save(file.c_str())))
post("%s - %s: error saving data",thisName(),GetString(thisTag()));
}
@@ -1013,8 +1013,8 @@ V pool::lddir(I argc,const A *argv,BL xml)
if(!flnm)
post("%s - %s: invalid filename",thisName(),GetString(thisTag()));
else {
- string fl(MakeFilename(flnm));
- if(!(xml?pl->LdDirXML(curdir,fl.c_str(),0):pl->LdDir(curdir,fl.c_str(),0)))
+ string file(MakeFilename(flnm));
+ if(!(xml?pl->LdDirXML(curdir,file.c_str(),0):pl->LdDir(curdir,file.c_str(),0)))
post("%s - %s: directory couldn't be loaded",thisName(),GetString(thisTag()));
}
@@ -1047,8 +1047,8 @@ V pool::ldrec(I argc,const A *argv,BL xml)
if(!flnm)
post("%s - %s: invalid filename",thisName(),GetString(thisTag()));
else {
- string fl(MakeFilename(flnm));
- if(!(xml?pl->LdDirXML(curdir,fl.c_str(),depth,mkdir):pl->LdDir(curdir,fl.c_str(),depth,mkdir)))
+ string file(MakeFilename(flnm));
+ if(!(xml?pl->LdDirXML(curdir,file.c_str(),depth,mkdir):pl->LdDir(curdir,file.c_str(),depth,mkdir)))
post("%s - %s: directory couldn't be saved",thisName(),GetString(thisTag()));
}
@@ -1066,8 +1066,8 @@ V pool::svdir(I argc,const A *argv,BL xml)
if(!flnm)
post("%s - %s: invalid filename",thisName(),GetString(thisTag()));
else {
- string fl(MakeFilename(flnm));
- if(!(xml?pl->SvDirXML(curdir,fl.c_str(),0,absdir):pl->SvDir(curdir,fl.c_str(),0,absdir)))
+ string file(MakeFilename(flnm));
+ if(!(xml?pl->SvDirXML(curdir,file.c_str(),0,absdir):pl->SvDir(curdir,file.c_str(),0,absdir)))
post("%s - %s: directory couldn't be saved",thisName(),GetString(thisTag()));
}
@@ -1085,8 +1085,8 @@ V pool::svrec(I argc,const A *argv,BL xml)
if(!flnm)
post("%s - %s: invalid filename",thisName(),GetString(thisTag()));
else {
- string fl(MakeFilename(flnm));
- if(!(xml?pl->SvDirXML(curdir,fl.c_str(),-1,absdir):pl->SvDir(curdir,fl.c_str(),-1,absdir)))
+ string file(MakeFilename(flnm));
+ if(!(xml?pl->SvDirXML(curdir,file.c_str(),-1,absdir):pl->SvDir(curdir,file.c_str(),-1,absdir)))
post("%s - %s: directory couldn't be saved",thisName(),GetString(thisTag()));
}
@@ -1158,7 +1158,7 @@ V pool::RmvPool(pooldata *p)
}
}
-std::string pool::MakeFilename(const C *fn) const
+string pool::MakeFilename(const C *fn) const
{
#if FLEXT_SYS == FLEXT_SYS_PD
// / and \ must not be mixed!
diff --git a/externals/grill/pool/source/pool.cpp b/externals/grill/pool/source/pool.cpp
index 39ec568d..35dfa2fe 100644
--- a/externals/grill/pool/source/pool.cpp
+++ b/externals/grill/pool/source/pool.cpp
@@ -2,7 +2,7 @@
pool - hierarchical storage object for PD and Max/MSP
-Copyright (c) 2002-2004 Thomas Grill
+Copyright (c) 2002-2005 Thomas Grill
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
diff --git a/externals/grill/pool/source/pool.h b/externals/grill/pool/source/pool.h
index 64fa1507..844ba4d8 100644
--- a/externals/grill/pool/source/pool.h
+++ b/externals/grill/pool/source/pool.h
@@ -2,7 +2,7 @@
pool - hierarchical storage object for PD and Max/MSP
-Copyright (c) 2002-2004 Thomas Grill
+Copyright (c) 2002-2005 Thomas Grill
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.