mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 19:31:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			286 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			286 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| {
 | |
|     $Id$
 | |
|     Copyright (c) 1998-2000 by Peter Vreman
 | |
| 
 | |
|     This unit implements an uniform import object
 | |
| 
 | |
|     This program is free software; you can redistribute it and/or modify
 | |
|     it under the terms of the GNU General Public License as published by
 | |
|     the Free Software Foundation; either version 2 of the License, or
 | |
|     (at your option) any later version.
 | |
| 
 | |
|     This program 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 General Public License for more details.
 | |
| 
 | |
|     You should have received a copy of the GNU General Public License
 | |
|     along with this program; if not, write to the Free Software
 | |
|     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | |
| 
 | |
|  ****************************************************************************}
 | |
| unit import;
 | |
| 
 | |
| {$i defines.inc}
 | |
| 
 | |
| interface
 | |
| 
 | |
| uses
 | |
|   cutils,cclasses,
 | |
|   systems,
 | |
|   aasm;
 | |
| 
 | |
| type
 | |
|    timported_item = class(tlinkedlistitem)
 | |
|       ordnr  : word;
 | |
|       name,
 | |
|       func   : pstring;
 | |
|       lab    : tasmlabel;
 | |
|       is_var : boolean;
 | |
|       constructor Create(const n,s : string;o : word);
 | |
|       constructor Create_var(const n,s : string);
 | |
|       destructor Destroy;override;
 | |
|    end;
 | |
| 
 | |
|    timportlist = class(tlinkedlistitem)
 | |
|       dllname : pstring;
 | |
|       imported_items : tlinkedlist;
 | |
|       constructor Create(const n : string);
 | |
|       destructor Destroy;Override;
 | |
|    end;
 | |
| 
 | |
|    timportlib=class
 | |
|    private
 | |
|       notsupmsg : boolean;
 | |
|       procedure NotSupported;
 | |
|    public
 | |
|       constructor Create;virtual;
 | |
|       destructor Destroy;override;
 | |
|       procedure preparelib(const s:string);virtual;
 | |
|       procedure importprocedure(const func,module:string;index:longint;const name:string);virtual;
 | |
|       procedure importvariable(const varname,module:string;const name:string);virtual;
 | |
|       procedure generatelib;virtual;
 | |
|       procedure generatesmartlib;virtual;
 | |
|    end;
 | |
| 
 | |
|    TDLLScanner=class
 | |
|    public
 | |
|      f:file;
 | |
|      impname:string;
 | |
|      TheWord:array[0..1]of char;
 | |
|      HeaderOffset:cardinal;
 | |
|      loaded:integer;
 | |
|      function isSuitableFileType(x:cardinal):longbool;virtual;abstract;
 | |
|      function GetEdata(HeaderEntry:cardinal):longbool;virtual;abstract;
 | |
|      function Scan(const binname:string):longbool;virtual;abstract;
 | |
|    end;
 | |
| 
 | |
|    TImportLibClass=class of TImportLib;
 | |
|    TDLLScannerClass=class of TDLLScanner;
 | |
| 
 | |
| var
 | |
|   CImportLib  : array[ttarget] of TImportLibClass;
 | |
|   CDLLScanner : array[ttarget] of TDLLScannerClass;
 | |
|   ImportLib   : TImportLib;
 | |
| 
 | |
| procedure RegisterImport(t:ttarget;c:TImportLibClass);
 | |
| procedure RegisterDLLScanner(t:ttarget;c:TDLLScannerClass);
 | |
| procedure InitImport;
 | |
| procedure DoneImport;
 | |
| 
 | |
| 
 | |
| implementation
 | |
| 
 | |
| uses
 | |
|   verbose,globals;
 | |
| 
 | |
| {****************************************************************************
 | |
|                            Timported_item
 | |
| ****************************************************************************}
 | |
| 
 | |
| constructor timported_item.Create(const n,s : string;o : word);
 | |
| begin
 | |
|   inherited Create;
 | |
|   func:=stringdup(n);
 | |
|   name:=stringdup(s);
 | |
|   ordnr:=o;
 | |
|   lab:=nil;
 | |
|   is_var:=false;
 | |
| end;
 | |
| 
 | |
| 
 | |
| constructor timported_item.create_var(const n,s : string);
 | |
| begin
 | |
|   inherited Create;
 | |
|   func:=stringdup(n);
 | |
|   name:=stringdup(s);
 | |
|   ordnr:=0;
 | |
|   lab:=nil;
 | |
|   is_var:=true;
 | |
| end;
 | |
| 
 | |
| 
 | |
| destructor timported_item.destroy;
 | |
| begin
 | |
|   stringdispose(name);
 | |
|   stringdispose(func);
 | |
|   inherited destroy;
 | |
| end;
 | |
| 
 | |
| 
 | |
| {****************************************************************************
 | |
|                               TImportlist
 | |
| ****************************************************************************}
 | |
| 
 | |
| constructor timportlist.Create(const n : string);
 | |
| begin
 | |
|   inherited Create;
 | |
|   dllname:=stringdup(n);
 | |
|   imported_items:=Tlinkedlist.Create;
 | |
| end;
 | |
| 
 | |
| 
 | |
| destructor timportlist.destroy;
 | |
| begin
 | |
|   imported_items.free;
 | |
|   stringdispose(dllname);
 | |
| end;
 | |
| 
 | |
| 
 | |
| {****************************************************************************
 | |
|                               TImportLib
 | |
| ****************************************************************************}
 | |
| 
 | |
| constructor timportlib.Create;
 | |
| begin
 | |
|   notsupmsg:=false;
 | |
| end;
 | |
| 
 | |
| 
 | |
| destructor timportlib.Destroy;
 | |
| begin
 | |
| end;
 | |
| 
 | |
| 
 | |
| procedure timportlib.NotSupported;
 | |
| begin
 | |
|   { show the message only once }
 | |
|   if not notsupmsg then
 | |
|    begin
 | |
|      Message(exec_e_dll_not_supported);
 | |
|      notsupmsg:=true;
 | |
|    end;
 | |
| end;
 | |
| 
 | |
| 
 | |
| procedure timportlib.preparelib(const s:string);
 | |
| begin
 | |
|   NotSupported;
 | |
| end;
 | |
| 
 | |
| 
 | |
| procedure timportlib.importprocedure(const func,module:string;index:longint;const name:string);
 | |
| begin
 | |
|   NotSupported;
 | |
| end;
 | |
| 
 | |
| 
 | |
| procedure timportlib.importvariable(const varname,module:string;const name:string);
 | |
| begin
 | |
|   NotSupported;
 | |
| end;
 | |
| 
 | |
| 
 | |
| procedure timportlib.generatelib;
 | |
| begin
 | |
|   NotSupported;
 | |
| end;
 | |
| 
 | |
| 
 | |
| procedure timportlib.generatesmartlib;
 | |
| begin
 | |
|   NotSupported;
 | |
| end;
 | |
| 
 | |
| 
 | |
| {*****************************************************************************
 | |
|                                  Init/Done
 | |
| *****************************************************************************}
 | |
| 
 | |
| procedure RegisterImport(t:ttarget;c:TImportLibClass);
 | |
| begin
 | |
|   CImportLib[t]:=c;
 | |
| end;
 | |
| 
 | |
| 
 | |
| procedure RegisterDLLScanner(t:ttarget;c:TDLLScannerClass);
 | |
| begin
 | |
|   CDLLScanner[t]:=c;
 | |
| end;
 | |
| 
 | |
| 
 | |
| procedure InitImport;
 | |
| begin
 | |
|   if assigned(CImportLib[target_info.target]) then
 | |
|    importlib:=CImportLib[target_info.target].Create
 | |
|   else
 | |
|    importlib:=TImportLib.Create;
 | |
| end;
 | |
| 
 | |
| 
 | |
| procedure DoneImport;
 | |
| begin
 | |
|   if assigned(importlib) then
 | |
|     importlib.free;
 | |
| end;
 | |
| 
 | |
| end.
 | |
| {
 | |
|   $Log$
 | |
|   Revision 1.14  2001-06-28 19:46:25  peter
 | |
|     * added override and virtual for constructors
 | |
| 
 | |
|   Revision 1.13  2001/04/18 22:01:54  peter
 | |
|     * registration of targets and assemblers
 | |
| 
 | |
|   Revision 1.12  2001/04/13 01:22:08  peter
 | |
|     * symtable change to classes
 | |
|     * range check generation and errors fixed, make cycle DEBUG=1 works
 | |
|     * memory leaks fixed
 | |
| 
 | |
|   Revision 1.11  2001/03/06 18:28:02  peter
 | |
|     * patch from Pavel with a new and much faster DLL Scanner for
 | |
|       automatic importing so $linklib works for DLLs. Thanks Pavel!
 | |
| 
 | |
|   Revision 1.10  2001/02/26 19:44:52  peter
 | |
|     * merged generic m68k updates from fixes branch
 | |
| 
 | |
|   Revision 1.9  2001/02/03 00:09:02  peter
 | |
|     * fixed netware typo in previous commit
 | |
| 
 | |
|   Revision 1.8  2001/02/02 22:43:39  peter
 | |
|     * add notarget defines
 | |
| 
 | |
|   Revision 1.7  2000/12/25 00:07:26  peter
 | |
|     + new tlinkedlist class (merge of old tstringqueue,tcontainer and
 | |
|       tlinkedlist objects)
 | |
| 
 | |
|   Revision 1.6  2000/09/24 15:06:18  peter
 | |
|     * use defines.inc
 | |
| 
 | |
|   Revision 1.5  2000/09/16 12:22:52  peter
 | |
|     * freebsd support merged
 | |
| 
 | |
|   Revision 1.4  2000/09/11 17:00:23  florian
 | |
|     + first implementation of Netware Module support, thanks to
 | |
|       Armin Diehl (diehl@nordrhein.de) for providing the patches
 | |
| 
 | |
|   Revision 1.3  2000/08/27 16:11:51  peter
 | |
|     * moved some util functions from globals,cobjects to cutils
 | |
|     * splitted files into finput,fmodule
 | |
| 
 | |
|   Revision 1.2  2000/07/13 11:32:43  michael
 | |
|   + removed logs
 | |
| 
 | |
| }
 | 
