memcpy 복사시 구조체 위치 지정

bresting의 이미지

typedef struct
{
    char type   [  1+1]; // 인풋유형
    char name   [ 20+1];
    int  age           ;
    char address[100+1];
    int  val1          ;
    char val2   [ 10+1];
    char val3   [ 10+1];
} Input;
 
typedef struct
{
    char name   [ 20+1];
    int  age           ;
    char address[100+1];
    int  val1          ;
    char val2   [ 10+1];
    char val3   [ 10+1];
} Output;
 
 
int main(int argc, char **argv) {
 
	Input  Select_Input ;
	Input  Update_Input ;
	Output Module_Output;
 
	memset(&Select_Input , 0x00, sizeof(Input ));
	memset(&Update_Input , 0x00, sizeof(Input ));
	memset(&Module_Output, 0x00, sizeof(Output));
 
	// Input
	strncpy(Select_Input.type, "S"  , sizeof(Select_Input.type) -1 );
	strncpy(Select_Input.name, "ABC", sizeof(Select_Input.name) -1 );
 
	// MODULE_CALL(&Select_Input, &Module_Output);
	// 리턴값 Module_Output: [ABC, 35, SOME ADDRESS..., val1, val2, val3]
 
 
	// Input.type 이후부터 구조체 복사 할 수 있나요?
	memcpy(&Update_Input + 2    , &Module_Output, sizeof(Output));
	strncpy(Select_Input.type   , "U"             , sizeof(Select_Input.type   ) -1 );
	strncpy(Select_Input.address, "Change address", sizeof(Select_Input.address) -1 );
 
	// MODULE_CALL(&Update_Input, &Module_Output);
}

저기 인풋, 아웃풋 구조체가 첫번째 컬럼 있고 없고 차이 입니다.
아웃풋 받은 구조체를 인풋에 memcpy할때 첫번째 필드 사이즈 이후부터 복사 하고 싶은데요.

단순 문자열이면 + 위치 해서 하면 되는데... 구조체는 어떻게 해야 하나요?
구조체.필드 이렇게 해도 잘 안되구요.

익명 사용자의 이미지

시작 위치는 &Update_Input.name으로 지정할 수 있는데, 구조체 패딩 때문에 보통의 상황에서는 두 구조체의 레이아웃이 달라서 원하는 대로 복사가 안될겁니다.
구조체 패딩, 구조체 정렬, 구조체 얼라인 등으로 검색해보시면 좀 더 자세히 알 수 있을 겁니다.

많은 컴파일러에서 강제로 구조체 패딩을 없애는 패킹을 지원하는데 이걸 사용하거나, 아래와 같이 Input의 type과 name 사이에 char[2] 멤버를 새로 만들어주면 대개의 상황에서는 두 구조체의 레이아웃을 동일하게 만들 수 있습니다.

typedef struct {
    char type   [  1+1]; // 인풋유형
    char __unused [2];
    char name   [ 20+1];
    ...
} Input;
아이온@Naver의 이미지

"강제로 구조체 패딩을 없애는"이라고 하셨는데, 이게 패딩 자체를 없앤다는 말씀이시라면, alignment가 중요한 머신에서는 오류가 발생할 수도 있을 것 같습니다. 그게 아니라 컴파일러가 자기 나름대로 쓰던 alignment 대신 강제로 alignment를 부여하는 방식이라면 가능할 거 같은데 그런 경우엔 보통 메모리 소모가 더 커진다고 생각되고요. __unused를 2개 넣는 건, char name[]의 alignment가 sizeof(char) * 4바이트라는 가정인 것 같은데 항상 표준에 의해 성립하는지 확실하지 않습니다.

다른 분이 말씀하신대로 char name[] 이하 공통된 field 전체를 하나의 struct에 넣는 게 좋아 보입니다.

tip의 이미지

구조체 패킹을 건드리는 옵션을 사용하는 것도 방법이지만, 애초에 Input과 Output 구조체가 공유하는 필드들을 묶을 수 있는 어떤 의미가 있다면 그걸 활용하는 것도 괜찮은 방법입니다.

저는 주어진 구조체들이 어떤 의미를 가지는지 잘 모르니 무난한 이름인 CommonInfo로 정했습니다만, 뭐 이렇게.

typedef struct
{
    char name   [ 20+1];
    int  age           ;
    char address[100+1];
    int  val1          ;
    char val2   [ 10+1];
    char val3   [ 10+1];
} CommonInfo;
 
typedef struct
{
    char type   [  1+1]; // 인풋유형
    CommonInfo common_info;
} Input;
 
typedef struct
{
    CommonInfo common_info;
} Output;
 
int main(int argc, char **argv) {
    Input  Select_Input ;
    Input  Update_Input ;
    Output Module_Output;
 
    memset(&Select_Input , 0x00, sizeof(Input ));
    memset(&Update_Input , 0x00, sizeof(Input ));
    memset(&Module_Output, 0x00, sizeof(Output));
 
    // Input
    strncpy(Select_Input.type, "S"  , sizeof(Select_Input.type) -1 );
    strncpy(Select_Input.common_info.name, "ABC", sizeof(Select_Input.common_info.name) -1 );
 
    // MODULE_CALL(&Select_Input, &Module_Output);
    // 리턴값 Module_Output: [ABC, 35, SOME ADDRESS..., val1, val2, val3]
 
    // Input.type 이후부터 구조체 복사 할 수 있나요?
    Module_Output.common_info = Update_Input.common_info;
    // memcpy(&Update_Input + 2    , &Module_Output, sizeof(Output));
    strncpy(Select_Input.type   , "U"             , sizeof(Select_Input.type   ) -1 );
    strncpy(Select_Input.common_info.address, "Change address", sizeof(Select_Input.common_info.address) -1 );
 
    // MODULE_CALL(&Update_Input, &Module_Output);
}

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.