Microsoft MVP성태의 닷넷 이야기
VC++: 92. C++ 생성자를 DLL로부터 동적 로드해 객체를 생성한다면? [링크 복사], [링크+제목 복사],
조회: 16897
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일

C++ 생성자를 DLL로부터 동적 로드해 객체를 생성한다면?

다음과 같은 질문이 있군요. ^^

C++ DLL로 class를 export후 LoadLibrary로 DLL을 불러와 new로 class 객체를 생성할 수 있는 방법 없을까요
; http://lab.gamecodi.com/board/zboard.php?id=GAMECODILAB_QnA_etc&no=3843&z=

질문의 요지는 이렇습니다. C++ 클래스를 DLL에 구현해 두었는데, 이 클래스의 인스턴스를 외부 EXE/DLL에서 접근해 생성하고 싶다는 것입니다. 검색해 보면 이를 위한 방법을 다음의 글에서 찾을 수 있습니다.

Using classes exported from a DLL using LoadLibrary
; http://www.codeproject.com/Articles/9405/Using-classes-exported-from-a-DLL-using-LoadLibrar

직접 실습을 해볼까요? ^^




우선, Visual Studio에서 C++ Win32 DLL 프로젝트를 "Export symbols" 옵션을 켜서 생성한 후, 기본 포함된 CWin32Project1 클래스의 코드에 다음과 같이 테스트를 위해 필드 n과 Print 함수를 포함시켜 둡니다.

#define WIN32PROJECT1_API __declspec(dllexport)

#include <stdio.h>

class WIN32PROJECT1_API CWin32Project1 {
public:
    int n;
    CWin32Project1(void);

    void Print()
    {
        printf("%d\r\n", n);
    }
};

CWin32Project1::CWin32Project1()
{
    n = 500;
    return;
}

컴파일하고 Visual Studio 명령 프롬프트를 실행시켜 dumpbin.exe를 실행하면 생성자가 export된 심볼을 구할 수 있습니다.

C:\temp\Win32Project1\x64\Debug>dumpbin /exports Win32Project1.dll
Microsoft (R) COFF/PE Dumper Version 14.00.23026.0
Copyright (C) Microsoft Corporation.  All rights reserved.

Dump of file Win32Project1.dll

File Type: DLL

  Section contains the following exports for Win32Project1.dll

    00000000 characteristics
    55FAAD26 time date stamp Thu Sep 17 21:08:06 2015
        0.00 version
           1 ordinal base
           6 number of functions
           6 number of names

    ordinal hint RVA      name

          1    0 0001100A ??0CWin32Project1@@QEAA@XZ = @ILT+5(??0CWin32Project1@@QEAA@XZ)
          2    1 00011069 ??4CWin32Project1@@QEAAAEAV0@$$QEAV0@@Z = @ILT+100(??4CWin32Project1@@QEAAAEAV0@$$QEAV0@@Z)
          3    2 000111B8 ??4CWin32Project1@@QEAAAEAV0@AEBV0@@Z = @ILT+435(??4CWin32Project1@@QEAAAEAV0@AEBV0@@Z)
          4    3 000112B2 ?Print@CWin32Project1@@QEAAXXZ = @ILT+685(?Print@CWin32Project1@@QEAAXXZ)
          5    4 000112CB ?fnWin32Project1@@YAHXZ = @ILT+710(?fnWin32Project1@@YAHXZ)
          6    5 0001C164 ?nWin32Project1@@3HA = ?nWin32Project1@@3HA (int nWin32Project1)

  Summary

        1000 .00cfg
        1000 .data
        1000 .idata
        1000 .pdata
        3000 .rdata
        1000 .reloc
        1000 .rsrc
        8000 .text
       10000 .textbss

이 값을 이용해 LoadLibrary/GetProcAddress로 함수 포인터를 구하는 코드는 이렇습니다.

#include "stdafx.h"
#include <Windows.h>

class CWin32Project1 {
public:
    int n;
    CWin32Project1(void);
    void Print();
};

typedef void(*CTORFUNC) (void *pThis);
typedef void(*PRINTFUNC) (void *pThis);

int main()
{
    HMODULE hModule = ::LoadLibrary(L"Win32Project1.dll");
    if (hModule == NULL)
    {
        printf("NOT FOUND: Module\r\n");
        return 1;
    }


    // Why can't I GetProcAddress a function I dllexport'ed?
    // 64비트와 32비트에서의 export symbol 이름이 다르다는 점!
#if defined(_AMD64_)
    char *ctorName = "??0CWin32Project1@@QEAA@XZ";
    char *printName = "?Print@CWin32Project1@@QEAAXXZ";
#else
    char *ctorName = "??0CWin32Project1@@QAE@XZ";
    char *printName = "?Print@CWin32Project1@@QAEXXZ";
#endif

    CTORFUNC ctorProc = (CTORFUNC)::GetProcAddress(hModule, ctorName);
    PRINTFUNC printProc = (PRINTFUNC)::GetProcAddress(hModule, printName);
                                                            
    if (ctorProc == NULL || printProc == NULL)
    {
        printf("NOT FOUND: ctor or print\r\n");
        return 1;
    }

    // 해당 클래스의 객체 크기만큼 미리 메모리를 할당
    int size = sizeof(CWin32Project1);
    char *pBytes = new char[size];

    // 할당된 메모리가 바로 this 포인터 역할을 함.
    // 생성자를 호출해 인스턴스를 초기화하고,
    ctorProc(pBytes);

    // 멤버 함수를 호출
    printProc(pBytes); // 출력 결과: 500

    delete [] pBytes;

    return 0;
}

첨부한 파일은 위의 코드를 포함하고 있습니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 4/1/2024]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2020-06-08 03시31분
[4567] 그냥 DLL 내부에서 new 로 자기자신 생성해서 리턴하고 메인에서 그 함수 포인터 가져와서 호출하면안되나요?
[guest]
2020-06-08 03시48분
@4567 음... 글의 초반에 링크한 원본 질문을 읽어보셨다면 그런 질문을 하지 않으셨을 텐데요.
정성태

... 46  47  48  49  50  51  52  53  54  55  56  [57]  58  59  60  ...
NoWriterDateCnt.TitleFile(s)
12202정성태3/18/202013032개발 환경 구성: 486. .NET Framework 프로젝트를 위한 GitLab CI/CD Runner 구성
12201정성태3/18/202010843오류 유형: 611. git-credential-manager.exe: Using credentials for username "Personal Access Token". [1]
12200정성태3/18/202011292VS.NET IDE: 145. NuGet + Github 라이브러리 디버깅 관련 옵션 3가지 - "Enable Just My Code" / "Enable Source Link support" / "Suppress JIT optimization on module load (Managed only)"
12199정성태3/17/20209155오류 유형: 610. C# - CodeDomProvider 사용 시 Unhandled Exception: System.IO.DirectoryNotFoundException: Could not find a part of the path '...\f2_6uod0.tmp'.
12198정성태3/17/202011866오류 유형: 609. SQL 서버 접속 시 "Cannot open user default database. Login failed."
12197정성태3/17/202011006VS.NET IDE: 144. .NET Core 콘솔 응용 프로그램을 배포(publish) 시 docker image 자동 생성 - 두 번째 이야기 [1]
12196정성태3/17/20208934오류 유형: 608. The ServicedComponent being invoked is not correctly configured (Use regsvcs to re-register).
12195정성태3/16/202010659.NET Framework: 902. C# - 프로세스의 모든 핸들을 열람 - 세 번째 이야기
12194정성태3/16/202012990오류 유형: 607. PostgreSQL - Npgsql.NpgsqlException: sorry, too many clients already
12193정성태3/16/20209610개발 환경 구성: 485. docker - SAP Adaptive Server Enterprise 컨테이너 실행 [1]
12192정성태3/14/202012077개발 환경 구성: 484. docker - Sybase Anywhere 16 컨테이너 실행
12191정성태3/14/202012458개발 환경 구성: 483. docker - OracleXE 컨테이너 실행 [1]
12190정성태3/14/20208609오류 유형: 606. Docker Desktop 업그레이드 시 "The process cannot access the file 'C:\Program Files\Docker\Docker\resources\dockerd.exe' because it is being used by another process."
12189정성태3/13/202013444개발 환경 구성: 482. Facebook OAuth 처리 시 상태 정보 전달 방법과 "유효한 OAuth 리디렉션 URI" 설정 규칙
12188정성태3/13/202015665Windows: 169. 부팅 시점에 실행되는 chkdsk 결과를 확인하는 방법
12187정성태3/12/20208415오류 유형: 605. NtpClient was unable to set a manual peer to use as a time source because of duplicate error on '...'.
12186정성태3/12/20209474오류 유형: 604. The SysVol Permissions for one or more GPOs on this domain controller and not in sync with the permissions for the GPOs on the Baseline domain controller.
12185정성태3/11/202010137오류 유형: 603. The browser service was unable to retrieve a list of servers from the browser master...
12184정성태3/11/202011589오류 유형: 602. Automatic certificate enrollment for local system failed (0x800706ba) The RPC server is unavailable. [3]
12183정성태3/11/20209945오류 유형: 601. Warning: DsGetDcName returned information for \\[...], when we were trying to reach [...].
12182정성태3/11/202011157.NET Framework: 901. C# Windows Forms - Vista/7 이후의 Progress Bar 업데이트가 느린 문제파일 다운로드1
12181정성태3/11/202011962기타: 76. 재현 가능한 최소한의 예제 프로젝트란? - 두 번째 예제파일 다운로드1
12180정성태3/10/20208581오류 유형: 600. "Docker Desktop for Windows" - EXPOSE 포트가 LISTENING 되지 않는 문제
12179정성태3/10/202019987개발 환경 구성: 481. docker - PostgreSQL 컨테이너 실행
12178정성태3/10/202011471개발 환경 구성: 480. Linux 운영체제의 docker를 위한 tcp 바인딩 추가 [1]
12177정성태3/9/202011121개발 환경 구성: 479. docker - MySQL 컨테이너 실행
... 46  47  48  49  50  51  52  53  54  55  56  [57]  58  59  60  ...