blob: b87c07582b55f4d5842948ea0d757b2667f55732 (
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
|
/*
* Copyright (C) 2007-2014 Xagasoft, All rights reserved.
*
* This file is part of the Xagasoft Build and is released under the
* terms of the license contained in the file LICENSE.
*/
#include "viewplugger.h"
#include <sys/types.h>
#include <dirent.h>
extern Bu::PluginInfo pluginViewDefault;
extern Bu::PluginInfo pluginViewMake;
ViewPlugger::ViewPlugger()
{
registerBuiltinPlugin( &pluginViewDefault );
registerBuiltinPlugin( &pluginViewMake );
DIR *dir = opendir("/usr/lib/build");
if( !dir )
return;
struct dirent *de;
while( (de = readdir( dir )) )
{
if( strncmp("pluginView", de->d_name, 15 ) )
continue;
Bu::String sFile("/usr/lib/build/");
sFile += de->d_name;
char *s = de->d_name;
for(; *s && *s != '.'; s++ ) { }
registerExternalPlugin(
sFile,
Bu::String( de->d_name, (ptrdiff_t)s-(ptrdiff_t)de->d_name )
);
}
closedir( dir );
}
ViewPlugger::~ViewPlugger()
{
}
|