File: extensionloader.cc

package info (click to toggle)
arts 1.5.5-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 9,416 kB
  • ctags: 9,854
  • sloc: ansic: 44,665; cpp: 33,742; sh: 10,486; perl: 3,431; makefile: 372; yacc: 347; lex: 160
file content (116 lines) | stat: -rw-r--r-- 2,731 bytes parent folder | download | duplicates (6)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
    /*

    Copyright (C) 2000 Stefan Westerfeld
                       stefan@space.twc.de

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.
  
    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.
   
    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.

    */

#include <config.h>
#include "extensionloader.h"
#include "startupmanager.h"
#include "mcoputils.h"
#include "debug.h"
#include <unistd.h>
#include <assert.h>

using namespace std;
using namespace Arts;

ExtensionLoader::ExtensionLoader(const string& filename) :handle(0)
{
	string dlfilename;

	assert(filename.size());
	if(filename[0] == '/')
		dlfilename = filename;
	else
	{
		const vector<string> *path = MCOPUtils::extensionPath();

		vector<string>::const_iterator pi;
		for(pi = path->begin(); pi != path->end(); pi++)
		{
			dlfilename = *pi + "/" + filename;

			if(access(dlfilename.c_str(),F_OK) == 0)
				break;
		}
	}


	/* this will catch all startup classes here */
	StartupManager::setExtensionLoader(this);

    lt_dlinit();
	handle = lt_dlopen(dlfilename.c_str());

	StartupManager::setExtensionLoader(0);

	if(handle)
	{
		/* now process all startup classes of the loaded extension */
		list<StartupClass *>::iterator i;

		for(i = startupClasses.begin(); i != startupClasses.end(); i++)
			(*i)->startup();
		needShutdown = true;
	}
	else
	{
		arts_warning("loading extension from '%s' failed: %s",
						dlfilename.c_str(), lt_dlerror());
	}
}

bool ExtensionLoader::success()
{
	return (handle != 0);
}

void ExtensionLoader::shutdown()
{
	if(handle && needShutdown)
	{
		/* shutdown the loaded extension properly */
		list<StartupClass *>::iterator i;

		for(i = startupClasses.begin(); i != startupClasses.end(); i++)
			(*i)->shutdown();
		needShutdown = false;
	}
}

ExtensionLoader::~ExtensionLoader()
{
	if(handle)
	{
		shutdown();
		lt_dlclose(handle);

		/*
		 * lt_dlexit & lt_dlinit have a counter, so there is no harm in
		 * calling one lt_dlinit in the constructor and one lt_dlexit here
		 */
		lt_dlexit();
	}
}

void ExtensionLoader::addStartupClass(class StartupClass *sc)
{
	startupClasses.push_back(sc);
}