Skip to Content
이펙티브 러스트
book

이펙티브 러스트

by 데이비드 드라이스데일, 남기혁
October 2024
Beginner to intermediate
344 pages
7h 44m
Korean
Hanbit Media, Inc.
Content preview from 이펙티브 러스트
328
이펙티브 러스트
할당과 해제가 항상 짝을 이루게 하려면,
C
에서 할당한 메모리가 유출(누수
leak
)되는 것을 자동
으로 막아주는
RAII
래퍼를 구현한다(아이템
11
). 이런 래퍼 구조체는
C
할당 메모리를 소유
한다.
/// C 라이브러리에서 할당한 메모리를 소유하는 래퍼 구조체
struct FfiWrapper {
// 불변성: inner는 NULL이 아님
inner: *mut FfiStruct,
}
또한
Drop
구현은 누수 가능성을 방지하도록 이 메모리를
C
라이브러리로 반환한다.
/// 직접 구현한 [`Drop`]:
/// C 라이브러리에서 할당한 메모리를 반드시 해제시킨다.
impl Drop for FfiWrapper {
fn drop(&mut self) {
// 안전성: `inner`는 NULL이 아닐 뿐만 아니라,
// `free_struct()`는 NULL 포인터에 대처한다.
unsafe { free_struct(self.inner) }
}
}
이 원리는 힙 메모리뿐만 아니라 다른 곳에도 똑같이 적용된다.
Drop
을 구현해
FFI
파생 리소스
(예: 열린 파일, 데이터베이스 연결 등)
RAII
를 적용한다
(아이템
11
).
C
라이브러리와의 상호 작용을 래퍼 구조체로 캡슐화하면 다른 잠재적 문제도 막을 수 있다.
예를 들어 ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

이펙티브 타입스크립트

이펙티브 타입스크립트

Dan Vanderkam
파이썬으로 살펴보는 아키텍처 패턴

파이썬으로 살펴보는 아키텍처 패턴

오현석, 해리 퍼시벌, 밥 그레고리

Publisher Resources

ISBN: 9791169212946