ipc摄像头的搜索

关于 gsoap的安装及生产.c .h文件 参考 Croxd大神的文章 这里贴上链接 https://blog.csdn.net/weixin_42432281/article/details/84818575

1. 在复制 Croxd大神 关于ipc摄像头搜索的代码时,发现编译不通过,一直报段错误,所以这里对大神的代码进行了一点小小的修改。大神原文链接:https://blog.csdn.net/weixin_42432281/article/details/88698723

2. 给出大神文章报错的地方。

原因是因为没有考虑 resp.wsdd__ProbeMatches == NULL 的情况。所以虽然程序运行结果是正确的,但是会因为操作了空指针导致程序崩溃。

3. 对代码的一点小小改进

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
#include "soapH.h"
#include "stdsoap2.h"
#include "soapStub.h"
 
#include "wsdd.nsmap" //命名空间
 
 
static struct soap* ONVIF_Initsoap(struct SOAP_ENV__Header *header, const char *was_To, const char *was_Action, int timeout)
{
    struct soap *soap = NULL;    // soap环境变量
    unsigned char macaddr[6];
    char _HwId[1024];
    unsigned int Flagrand;
 
    soap = soap_new();
    if(soap == NULL)
    {
        printf("[%d]soap = NULL\n", __LINE__);
        return NULL;
    }
 
    soap_set_namespaces(soap, namespaces);   // 设置soap的namespaces,即设置命名空间
 
    // 设置超时(超过指定时间没有数据就退出)
    if(timeout > 0)
    {
        soap->recv_timeout = timeout;
        soap->send_timeout = timeout;
        soap->connect_timeout = timeout;
    }
    else
    {
        //Maximum waittime : 20s
        soap->recv_timeout  = 20;
        soap->send_timeout  = 20;
        soap->connect_timeout = 20;
    }
 
    soap_default_SOAP_ENV__Header(soap, header);
 
    //Create SessionID randomly,生成uuid(windows下叫guid,linux下叫uuid),格式为urn:uuid:8-4-4-4-12,由系统随机产生
    srand((int)time(0));
    Flagrand = rand()%9000 + 8888;
    macaddr[0] = 0x1;
    macaddr[1] = 0x2;
    macaddr[2] = 0x3;
    macaddr[3] = 0x4;
    macaddr[4] = 0x5;
    macaddr[5] = 0x6;
    sprintf(_HwId, "urn:uuid:%ud68a-1dd2-11b2-a105-%02X%02X%02X%02X%02X%02X", Flagrand, macaddr[0], macaddr[1], macaddr[2],macaddr[3],macaddr[4],macaddr[5]);
    header->wsa__MessageID = (char *)malloc(100);  
    memset(header->wsa__MessageID, 0, 100);
    strncpy(header->wsa__MessageID, _HwId, strlen(_HwId));    //wsa__MessageID存放的是uuid
 
    if(was_Action != NULL)
    {
        header->wsa__Action = (char*)malloc(1024);
        memset(header->wsa__Action, '\0', 1024);
        strncpy(header->wsa__Action, was_Action, 1024); //
    }
    if(was_To != NULL)
    {
        header->wsa__To = (char *)malloc(1024);
        memset(header->wsa__To, '\0', 1024);
        strncpy(header->wsa__To, was_To, 1024);//"urn:schemas-xmlsoap-org:ws:2005:04:discovery";
    }
    soap->header = header;
    return soap;
}
 
 
//释放函数
void ONVIF_soap_delete(struct soap *soap)
{
    soap_destroy(soap);                                                         // remove deserialized class instances (C++ only)
    soap_end(soap);                                                             // Clean up deserialized data (except class instances) and temporary data
    soap_free(soap);                                                            // Reset and deallocate the context created with soap_new or soap_copy
}
 
 
int ONVIF_ClientDiscovery()
{
    int FoundDevNo = 0; 
    int retval = SOAP_OK;
    struct wsdd__ProbeType req;    // 用于发送Probe消息
    struct __wsdd__ProbeMatches resp;   // 用于接收Probe应答
    struct wsdd__ScopesType sScope;
    struct SOAP_ENV__Header header;
    struct soap* soap;
 
    const char *was_To = "urn:schemas-xmlsoap-org:ws:2005:04:discovery";
    const char *was_Action = "http://schemas.xmlsoap.org/ws/2005/04/discovery/Probe";
 
    //IP Adress and PortNo, broadCast
    const char *soap_endpoint = "soap.udp://239.255.255.250:3702/"; //设备上服务器监听239.255.255.250的3702端口
 
    //Create new soap object with info
    soap = ONVIF_Initsoap(&header, was_To, was_Action, 10);
 
    soap_default_SOAP_ENV__Header(soap, &header);
    soap->header = &header;
 
    soap_default_wsdd__ScopesType(soap, &sScope);  // 设置寻找设备的范围
    sScope.__item = NULL;
    soap_default_wsdd__ProbeType(soap, &req);  // 设置寻找设备的类型
    req.Scopes = &sScope;
    req.Types = NULL; //"dn:NetworkVideoTransmitter";
 
    //sent the message broadcast and wait
    retval = soap_send___wsdd__Probe(soap, soap_endpoint, NULL, &req);   // 向组播地址广播Probe消息
 
    while(retval == SOAP_OK)
    {
        retval = soap_recv___wsdd__ProbeMatches(soap, &resp);
        if(retval == SOAP_OK)
        {
            if(soap->error)
            {
                printf("[%d]:recv soap error :%d, %s, %s\n", __LINE__, soap->error, *soap_faultcode(soap), *soap_faultstring(soap));
                retval = soap->error;
            }
            else //we find a device
            {
                //FoundDevNo++;
                if(resp.wsdd__ProbeMatches != NULL && resp.wsdd__ProbeMatches->ProbeMatch != NULL && resp.wsdd__ProbeMatches->ProbeMatch->XAddrs != NULL)
                {
                    FoundDevNo++; 
                    printf("***** No %d Devices Information *****\n", FoundDevNo);
                    printf("Device Service Address : %s\r\n", resp.wsdd__ProbeMatches->ProbeMatch->XAddrs);
                    printf("Device EP Address      : %s\r\n", resp.wsdd__ProbeMatches->ProbeMatch->wsa__EndpointReference.Address);
                    printf("Device Type            : %s\r\n", resp.wsdd__ProbeMatches->ProbeMatch->Types);
                    printf("Device Metadata Version: %d\r\n", resp.wsdd__ProbeMatches->ProbeMatch->MetadataVersion);
                    printf("[%d]*********************************\n", __LINE__);
                }
            }
        }
        else if(soap->error)
        {
            if(FoundDevNo == 0)
            {
                printf("No Device found!\n");
                retval = soap->error;
            }
            else
            {
                printf("Search end! Find %d Device! \n", FoundDevNo);
                retval = 0;
            }
            break;
        }
    }
 
    //释放函数
    ONVIF_soap_delete(soap);
    return retval;
}
 
int main(int argc, char *argv[])
{
    if(ONVIF_ClientDiscovery() != 0)
    {
        printf("discover failed! \n");
        return -1;
    }
    return 0;
}

4. 原文编译的话,是没有用到 duration.c 的,但是实际使用时也是会报错的。所以我把 duration.c 也加上了,且要加在 soapC.c 之前,该文件在 /gsoap/custom/ 下。
生成可执行文件test:

gcc -o test search_test.c stdsoap2.c duration.c soapC.c soapClient.c -I import/

5. 运行test
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值