기초적인 C문법에 관한 질문입니다.

Jdimension의 이미지

fork랑 execv를 쓰려고 사전작업을 하는 내용인데요,

fork랑 execv자체는 쉽게 해결했는데 기초적인 C 부분에서 막히네요;

먼저 execv에 넘겨 줄 다음과 같은 구조체를 만들었습니다.

struct command_t {
	char name[BUFSIZE];
	char *argv[256];
} command;

그리고 이 아래 부분은 사용자에게 입력 받은 문자열을 잘라서 위의 구조체의 argv에 넣어 주는 내용입니다.

void argumentParsing(char input[])
{
	int	index=0,
		tempindex=0,
		argvindex=0;
	char temp[BUFSIZE];

	cout << "input : " << input << endl;

	while(input[index] != '\0')
	{
		if(input[index] != ' ')
		{
			temp[tempindex++] = input[index++];
		}
		else if(input[index] == ' ')
		{
			command.argv[argvindex] = temp;
			argvindex++;
			tempindex=0;
			index++;
//			temp초기화
		}
	}
	command.argv[argvindex] = temp;
	argvindex++;
	tempindex=0;
	index++;
//	temp초기화 

	command.argv[argvindex] = (char *)0;
}

그런데 이걸 다 돌리고 command.argv를 확인해보면

command.argv[0]부터 끝까지 전부 마지막 배열에 들어갔어야 할 문자로 채워져있네요.

예를 들어 저 함수에 "ls -a -l"이란 걸 넘겨줬을 경우
command.argv[0]에는 ls
[1] -a
[2] -l
이렇게 들어가야 하는데 [0] [1] [2] 전부 -l이 들어가 있는데요..

아무리 쳐다봐도 문제를 모르겠네요. 중간중간에 cout << argvindex 도 해 봤는데 argvindex에는 문제가 없던데... 뭐가 문제인지...

몇시간째 낑낑대고 있습니다. 이제 슬슬 화가나네요 T_T

seoleda의 이미지

다음의 코드는 command.argv[argvindex] 가 포인터라서, 문자열이 복사 되는게 아니라 temp의 주소가 들어 갑니다.

command.argv[argvindex] = temp; 

를 다음과 같이 문자열을 저장할 공간을 할당 받고, 문자열 복사 함수를 이용해야 복사가 됩니다.

command.argv[argvindex] = malloc(strlen(temp));
strncpy (command.argv[argvindex], temp, strlen(temp));

한번 command.argv[argvindex]가 가진 값을 확인해 보면 temp의 주소가 들어 있는 것을 확인하실수 있습니다.

p.s. 제가 제데로 설명했는지 모르겠네요.

Jdimension의 이미지

앗... 잘 되는군요. 감사합니다. 아직도 포인터 개념이 가물가물해서요;;; 부끄럽습니다. 흐흐

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.