php와 C사이 에서 message Queue사용시..구조체전달?

MackTheKnife의 이미지

담과 같은 php로 큐에 데이터를 입력하면

$arr=array();
$arr["mtype"]=1;
$arr["processName"]="httpd";
$arr["logTime"]=strftime("%Y%m%d%H%M%S",time());


$result=msg_send($msg_key,1,$arr,true,false,$error_code);
echo "msg_key=".$msg_key."   msg_send result=".$result."<br>";

C에서는 담과 같은 구조체로 데이터를 받습니다.

typedef struct
{
        long mtype; //필수구현
        union
        {
            BYTE partnerID;//소켓통신시에만 적용
            struct
            {
                BYTE  partnerFID :4;     // Low  
                BYTE  partnerPID :4;     // High 
            };      
        };
        BYTE errorLevel;//에러 레벨
        BYTE errorType;//에러의 타입(SYSINIT.....)
        BYTE option1;
        BYTE option2;
        BYTE errorCode;//사용자 define 코드
        long systemErrorCode;//시스템 에러코드
        char message[513];//사용자 define Message + 시스템 에러메세지
        char processName[17];//로그를 발생시킨 프로세스이름
        char logTime[15]; //로그가 발생한 시간
}LOGMSG_MON,*PLOGMSG_MON;

문제는 데이터를 큐에서 읽어오지만 내용이 이상해지네여..
message변수에 Php에서 입력한 모든값들이 들어갑니다.
message="ype\";i:1;s:11:\"processName\";s:5:\"httpd\";s:7:\"logTime\";s:14:\"20040119150309\"

MackTheKnife의 이미지

이것때문에 반나절 소비했네여..

php에서 pack이라는 함수를 써서 구조체의 변수순서에 맞게 바이너러로 변환하여 queue에 넣음 됩니다.

class LOGMSG_MON
{
    var $mtype;
    var $partnerID;
    var $errorLevel;
    var $errorType;
    var $option1;
    var $option2;
    var $errorCode;
    var $systemErrorCode;
    var $message;
    var $processName;
    var $logTime;

    function LOGMSG_MON()
    {
        $this->mtype=2; //php에서 로그는 2로함
        $this->partnerID=0x70;
        $this->errorLevel=0x11;
        $this->errorType=0x12;
        $this->option1=0x00;
        $this->option2=0x00;
        $this->errorCode=0x01;

        $this->systemErrorCode=1234;
        $this->processName="httpd";
        $this->logTime=strftime("%Y%m%d%H%M%S",time());
    }

    function setMessage($msg)
    {
        $this->message=$msg;
    }

    function getBinary()
    {
        //$result.=pack("I",$this->mtype);
        $result.=pack("C",$this->partnerID);
        $result.=pack("C",$this->errorLevel);
        $result.=pack("C",$this->errorType);
        $result.=pack("C",$this->option1);
        $result.=pack("C",$this->option2);
        $result.=pack("C",$this->errorCode);
        $result.=pack("L",$this->systemErrorCode);
        $result.=pack("a513",$this->message);
        $result.=pack("a17",$this->processName);
        $result.=pack("a15",$this->logTime);

        return $result;
    }
}


$logMsg=new LOGMSG_MON();
$logMsg->setMessage("test message from php");

$msg_key=msg_get_queue(1215,0666);
$result=msg_send($msg_key,1,$logMsg->getBinary(),false,false,$error_code);
익명 사용자의 이미지

감사합니다. 잘 쓰겠습니다.

댓글 달기

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