blob: 9b9187dae783f393531bb5515dcb7d243f989177 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#include <dirent.h>
#include "functionfilesin.h"
#include "plugger.h"
#include "build.h"
PluginInterface2(filesIn, FunctionFilesIn, Function, "Mike Buland", 0, 1 );
FunctionFilesIn::FunctionFilesIn()
{
}
FunctionFilesIn::~FunctionFilesIn()
{
}
void FunctionFilesIn::execute( Build *bld, const StringList &lInput, StringList &lOutput )
{
DIR *d = opendir( lParams.front().c_str() );
if( d == NULL )
throw BuildException(
"Can't open directory %s.",
lParams.front().c_str()
);
struct dirent *e;
std::string prefix;
if( lParams.size() >= 2 )
{
StringList::iterator i = lParams.begin();
i++;
prefix = *i;
}
else
{
prefix = lParams.front() + "/";
}
while( (e = readdir( d )) )
{
if( e->d_type != DT_DIR )
{
if( e->d_name[0] != '.')
lOutput.push_back( prefix + e->d_name );
}
}
closedir( d );
}
Function *FunctionFilesIn::duplicate( Build &bld, const StringList *cont, VarMap *mExtra )
{
Function *pRet = new FunctionFilesIn();
pRet->copyData( this, bld, cont, mExtra );
return pRet;
}
|