Microsoft MVP성태의 닷넷 이야기
VC++: 92. C++ 생성자를 DLL로부터 동적 로드해 객체를 생성한다면? [링크 복사], [링크+제목 복사],
조회: 16899
글쓴 사람
정성태 (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)
12406정성태11/8/202012984.NET Framework: 966. C# 9.0 - (15) 최상위 문(Top-level statements) [5]파일 다운로드1
12405정성태11/8/202010476.NET Framework: 965. C# 9.0 - (14) 부분 메서드에 대한 새로운 기능(New features for partial methods)파일 다운로드1
12404정성태11/7/202010989.NET Framework: 964. C# 9.0 - (13) 모듈 이니셜라이저(Module initializers)파일 다운로드1
12403정성태11/7/202011046.NET Framework: 963. C# 9.0 - (12) foreach 루프에 대한 GetEnumerator 확장 메서드 지원(Extension GetEnumerator)파일 다운로드1
12402정성태11/7/202011626.NET Framework: 962. C# 9.0 - (11) 공변 반환 형식(Covariant return types) [1]파일 다운로드1
12401정성태11/5/202010550VS.NET IDE: 153. 닷넷 응용 프로그램에서의 "My Code" 범위와 "Enable Just My Code"의 역할 [1]
12400정성태11/5/20207576오류 유형: 679. Visual Studio - "Source Not Found" 창에 "Decompile source code" 링크가 없는 경우
12399정성태11/5/202011211.NET Framework: 961. C# 9.0 - (10) 대상으로 형식화된 조건식(Target-typed conditional expressions)파일 다운로드1
12398정성태11/4/20209687오류 유형: 678. Windows Server 2008 R2 환경에서 Powershell을 psexec로 원격 실행할 때 hang이 발생하는 문제
12397정성태11/4/20209818.NET Framework: 960. C# - 조건 연산자(?:)를 사용하는 경우 달라지는 메서드 선택 사례파일 다운로드1
12396정성태11/3/20208190VS.NET IDE: 152. Visual Studio - "Tools" / "External Tools..."에 등록된 외부 명령어에 대한 단축키 설정 방법
12395정성태11/3/20209507오류 유형: 677. SSMS로 DB 접근 시 The server principal "..." is not able to access the database "..." under the current security context.
12394정성태11/3/20207922오류 유형: 676. cacls - The Recycle Bin on ... is corrupted. Do you want to empty the Recycle Bin for this drive?
12393정성태11/3/20208395오류 유형: 675. Visual Studio - 닷넷 응용 프로그램 디버깅 시 Disassembly 창에서 BP 설정할 때 "Error while processing breakpoint." 오류
12392정성태11/2/202012545.NET Framework: 959. C# 9.0 - (9) 레코드(Records) [4]파일 다운로드1
12390정성태11/1/202010716디버깅 기술: 173. windbg - System.Configuration.ConfigurationErrorsException 예외 분석 방법
12389정성태11/1/202010585.NET Framework: 958. C# 9.0 - (8) 정적 익명 함수 (static anonymous functions)파일 다운로드1
12388정성태10/29/202010006오류 유형: 674. 어느 순간부터 닷넷 응용 프로그램 실행 시 System.Configuration.ConfigurationErrorsException 예외가 발생한다면?
12387정성태10/28/202010759.NET Framework: 957. C# - static 필드의 정보가 GC Heap에 저장될까요? [3]파일 다운로드1
12386정성태10/28/202010997Linux: 34. 사용자 정보를 함께 출력하는 리눅스의 ps 명령어 사용 방법
12385정성태10/28/20208778오류 유형: 673. openssl - req: No value provided for Subject Attribute CN, skipped
12384정성태10/27/202010011오류 유형: 672. AllowPartiallyTrustedCallers 특성이 적용된 어셈블리의 struct 멤버 메서드를 재정의하면 System.Security.VerificationException 예외 발생
12383정성태10/27/202010952.NET Framework: 956. C# 9.0 - (7) 패턴 일치 개선 사항(Pattern matching enhancements) [3]파일 다운로드1
12382정성태10/26/20208555오류 유형: 671. dotnet build - The local source '...' doesn't exist
12381정성태10/26/202010226VC++: 137. C++ stl map의 사용자 정의 타입을 key로 사용하는 방법 [1]파일 다운로드1
12380정성태10/26/20207699오류 유형: 670. Visual Studio - Squash_FailureCommitsReset
... 46  47  48  [49]  50  51  52  53  54  55  56  57  58  59  60  ...