step 3/4: Move linuxport to trunk. How'd I get roped into this?
[vuplus_xbmc] / xbmc / DynamicDll.cpp
1 /*
2  *      Copyright (C) 2005-2008 Team XBMC
3  *      http://www.xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, write to
17  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18  *  http://www.gnu.org/copyleft/gpl.html
19  *
20  */
21
22 #include "DynamicDll.h"
23 #include "SectionLoader.h"
24 #include "FileSystem/File.h"
25 #include "utils/log.h"
26
27 using namespace XFILE;
28
29 DllDynamic::DllDynamic()
30 {
31   m_dll=NULL;
32   m_DelayUnload=true;
33 }
34
35 DllDynamic::DllDynamic(const CStdString& strDllName)
36 {
37   m_strDllName=strDllName;
38   m_dll=NULL;
39   m_DelayUnload=true;
40 }
41
42 DllDynamic::~DllDynamic()
43 {
44   Unload();
45 }
46
47 bool DllDynamic::Load()
48 {
49   if (m_dll)
50     return true;
51
52   if (!(m_dll=CSectionLoader::LoadDLL(m_strDllName, m_DelayUnload, LoadSymbols())))
53     return false;
54
55   if (!ResolveExports())
56   {
57     CLog::Log(LOGERROR, "Unable to resolve exports from dll %s", m_strDllName.c_str());
58     Unload();
59     return false;
60   }
61
62   return true;
63 }
64
65 void DllDynamic::Unload()
66 {
67   if(m_dll)
68     CSectionLoader::UnloadDLL(m_strDllName);
69   m_dll=NULL;
70 }
71
72 bool DllDynamic::CanLoad()
73 {
74   return CFile::Exists(m_strDllName);
75 }
76
77 bool DllDynamic::EnableDelayedUnload(bool bOnOff)
78 {
79   if (m_dll)
80     return false;
81
82   m_DelayUnload=bOnOff;
83
84   return true;
85 }
86
87 bool DllDynamic::SetFile(const CStdString& strDllName)
88 {
89   if (m_dll)
90     return false;
91
92   m_strDllName=strDllName;
93   return true;
94 }
95