JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
DLLModuleTBL Class Reference

#include <WinDLLTool.h>

Collaboration diagram for DLLModuleTBL:

Public Member Functions

 DLLModuleTBL (LPCTSTR dirn)
 
 DLLModuleTBL ()
 
virtual ~DLLModuleTBL ()
 
void init (LPCTSTR dirn=NULL)
 
void free ()
 
BOOL load_module (LPCTSTR dirn=NULL)
 
void make_module_tbl (LPCTSTR fname, int n)
 

Public Attributes

int vnum
 
DLLModule ** dllmod
 
bool loaded
 

Protected Member Functions

tList * get_dir_module (LPCTSTR dirn)
 
virtual DLLModulenew_module (LPCTSTR fname, int n)
 
virtual void set_module_function ()
 

Protected Attributes

int tnum
 
tList * lp
 
CString dirname
 

Detailed Description

Definition at line 91 of file WinDLLTool.h.

Constructor & Destructor Documentation

◆ DLLModuleTBL() [1/2]

DLLModuleTBL ( LPCTSTR dirn)
inline

Definition at line 105 of file WinDLLTool.h.

105{ init(dirn);}
void init(LPCTSTR dirn=NULL)

References DLLModuleTBL::init().

Here is the call graph for this function:

◆ DLLModuleTBL() [2/2]

DLLModuleTBL ( )
inline

Definition at line 106 of file WinDLLTool.h.

106{ init(NULL);}

References DLLModuleTBL::init().

Here is the call graph for this function:

◆ ~DLLModuleTBL()

virtual ~DLLModuleTBL ( )
inlinevirtual

Definition at line 107 of file WinDLLTool.h.

107{ free();}

References DLLModuleTBL::free().

Here is the call graph for this function:

Member Function Documentation

◆ free()

void free ( )

機能:クラス中のデータを解放する.

Definition at line 186 of file WinDLLTool.cpp.

187{
188
189 if (dllmod!=NULL) {
190 for (int i=0; i<vnum; i++) {
191 if (dllmod[i]!=NULL) {
192 dllmod[i]->free();
193 delete(dllmod[i]);
194 dllmod[i] = NULL;
195 }
196 }
197 }
198
199 tList* lt = lp;
200 while (lt!=NULL) {
201 if (lt->ldat.ptr!=NULL) {
202 FreeLibrary((HMODULE)(lt->ldat.ptr)); // 関数へのハンドル
203 lt->ldat.ptr = NULL;
204 lt->ldat.sz = 0;
205 }
206 lt = lt->next;
207 }
208 del_all_tList(&lp);
209
210 tnum = vnum = 0;
211 if (dllmod!=NULL) ::free(dllmod);
212 dllmod = NULL;
213 loaded = false;
214}
DLLModule ** dllmod
Definition WinDLLTool.h:95

References DLLModuleTBL::dllmod, DLLModule::free(), DLLModuleTBL::free(), DLLModuleTBL::loaded, DLLModuleTBL::lp, DLLModuleTBL::tnum, and DLLModuleTBL::vnum.

Referenced by DLLModuleTBL::free(), and DLLModuleTBL::~DLLModuleTBL().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ get_dir_module()

tList * get_dir_module ( LPCTSTR dirn)
protected

機能:ディレクトリ dirn にあるファイルを検索して,DLLファイルなら読み込みを行いリストに格納する. DLLのチェックは行わない.

引数:dirn – 読み込むDLLがあるディレクトリ.通常はアプリケーションからの相対パス. NULL の場合は,読み込みを行わない.

戻り値:情報を格納したリストへのポインタ.エラーの場合は NULL. lp->ldat.key.buf : DLL名 lp->ldat.val.buf : DLLファイル名(ディレクトリを含む) lp->ldat.ptr : モジュールハンドラ

Definition at line 261 of file WinDLLTool.cpp.

262{
263 tList* lm;
264 tList* lt;
265
266 if (dirn==NULL) return NULL;
267 lm = lt = get_dir_files_t(dirn);
268 if (lm==NULL) return NULL;
269
270 while (lt!=NULL) {
271 HMODULE hmod = LoadLibrary((LPCTSTR)mbs2ts((char*)(lt->ldat.val.buf)));
272 lt->ldat.ptr = (void*)hmod;
273 char* fn = get_file_name((char*)(lt->ldat.val.buf));
274 lt->ldat.key = make_Buffer_bystr(fn);
275 lt = lt->next;
276 }
277
278 // ハンドラが NULLの場合は削除
279 lt = lm;
280 while (lt!=NULL) {
281 if (lt->ldat.ptr==NULL) {
282 tList* ln = lt;
283 if (lm==lt) lm = lt->next;
284 lt = lt->next;
285 del_tList_node(&ln);
286 }
287 else lt = lt->next;
288 }
289
290 return lm;
291}
CString mbs2ts(char *str)
Definition WinTools.cpp:79
tList * get_dir_files_t(LPCTSTR dirn)
Definition WinTools.cpp:338

References jbxwl::get_dir_files_t(), and jbxwl::mbs2ts().

Referenced by DLLModuleTBL::load_module().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ init()

void init ( LPCTSTR dirn = NULL)

機能:クラスの初期化.ディレクトリdirnにある DLLを自動的に読み込む. dirn に NULLを指定した場合は DLLを読み込まないので,load_module() を改めて実行しなければならない.

引数:dirn – 読み込むDLLがあるディレクトリ.通常はアプリケーションからの相対パス.

Definition at line 170 of file WinDLLTool.cpp.

171{
172 tnum = vnum = 0;
173 loaded = false;
174 lp = NULL;
175 dllmod = NULL;
176 dirname = _T("");
177
178 if (dirn!=NULL) load_module(dirn);
179}
BOOL load_module(LPCTSTR dirn=NULL)

References DLLModuleTBL::dirname, DLLModuleTBL::dllmod, DLLModuleTBL::load_module(), DLLModuleTBL::loaded, DLLModuleTBL::lp, DLLModuleTBL::tnum, and DLLModuleTBL::vnum.

Referenced by DLLModuleTBL::DLLModuleTBL(), and DLLModuleTBL::DLLModuleTBL().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ load_module()

BOOL load_module ( LPCTSTR dirn = NULL)

機能:ディレクトリdirnにある DLLを読み込む.DLLのチェック(使用できるものかどうか)は行わない. dirn に NULLを指定した場合は カレントディレクトリのDLLを読み込む.

引数:dirn – 読み込むDLLがあるディレクトリ.通常はアプリケーションからの相対パス. NULL の場合は,カレント "."を指定したことになる.

戻り値:TRUE – 読み込み完了.tnum に読み込んだDLLの数が入る. FLASE – DLLは存在しない.または読み込み失敗.

Definition at line 228 of file WinDLLTool.cpp.

229{
230 if (dirn!=NULL) dirname = dirn;
231 else dirname = _T(".");
232
233 lp = get_dir_module((LPCTSTR)dirname);
234 if (lp==NULL) return FALSE;
235
236 tnum = 0;
237 tList* lt = lp;
238 while (lt!=NULL) {
239 tnum++;
240 lt = lt->next;
241 }
242 loaded = true;
243
244 return TRUE;
245}
tList * get_dir_module(LPCTSTR dirn)

References DLLModuleTBL::dirname, DLLModuleTBL::get_dir_module(), DLLModuleTBL::loaded, DLLModuleTBL::lp, and DLLModuleTBL::tnum.

Referenced by DLLModuleTBL::init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ make_module_tbl()

void make_module_tbl ( LPCTSTR fname,
int m )

機能:モジュールの一覧を格納したリストlp から,モジュールテーブル(配列)を作成する. 関数名fname で示した関数 fname(0) からタイトル名が獲得できない場合は,テーブル から削除する.

引数:fname – モジュールの情報を返す関数名.引数 (int)0 でタイトル(char*)を返えさなければならない. m – 読み込むDLL中の使用できる関数の数

Definition at line 303 of file WinDLLTool.cpp.

304{
305 tList* lm = lp;
306
307 vnum = 0;
308 if (fname==NULL) return;
309
310 dllmod = (DLLModule**)malloc(sizeof(DLLModule*)*tnum);
311 if (dllmod==NULL) return;
312
313 int n = 0;
314 if (m<=0) m = 1;
315 while (lm!=NULL) {
316 dllmod[n] = this->new_module(fname, m);
317 int ret = dllmod[n]->get_module_info(lm);
318 if (ret) {
319 n++;
320 if (n>=tnum) break;
321 }
322 else {
323 delete(dllmod[n]);
324 dllmod[n] = NULL;
325 }
326 lm = lm->next;
327 }
328 vnum = n;
329
330 this->set_module_function();
331 return;
332}
virtual void set_module_function()
Definition WinDLLTool.h:119
virtual DLLModule * new_module(LPCTSTR fname, int n)
Definition WinDLLTool.h:118
BOOL get_module_info(tList *lp)

References DLLModuleTBL::dllmod, DLLModule::get_module_info(), DLLModuleTBL::lp, DLLModuleTBL::new_module(), DLLModuleTBL::set_module_function(), DLLModuleTBL::tnum, and DLLModuleTBL::vnum.

Here is the call graph for this function:

◆ new_module()

virtual DLLModule * new_module ( LPCTSTR fname,
int n )
inlineprotectedvirtual

Definition at line 118 of file WinDLLTool.h.

118{ return new DLLModule(fname, n);}

Referenced by DLLModuleTBL::make_module_tbl().

Here is the caller graph for this function:

◆ set_module_function()

virtual void set_module_function ( )
inlineprotectedvirtual

Definition at line 119 of file WinDLLTool.h.

119{}

Referenced by DLLModuleTBL::make_module_tbl().

Here is the caller graph for this function:

Member Data Documentation

◆ dirname

CString dirname
protected

Definition at line 102 of file WinDLLTool.h.

Referenced by DLLModuleTBL::init(), and DLLModuleTBL::load_module().

◆ dllmod

DLLModule** dllmod

◆ loaded

bool loaded

Definition at line 97 of file WinDLLTool.h.

Referenced by DLLModuleTBL::free(), DLLModuleTBL::init(), and DLLModuleTBL::load_module().

◆ lp

tList* lp
protected

◆ tnum

int tnum
protected

◆ vnum

int vnum

The documentation for this class was generated from the following files: