2

我的 cpp 项目使用这些库:

#include <string.h>
#include <iostream>
#include <stdlib.h>
#include <fstream>
#include <sstream>
#include <cstring>
#include <time.h>

#include <xively.h>
#include <xi_helpers.h>

#include <wiringPi.h>

在和 xively.hwiringPi.h/home/pi/wiringPi/wiringPi/root/libxively/src/libxively

在我使用之前,xively.h我可以使用g++ -o ilc ilc.cpp -lwiringPi. 我现在试过了g++ -o ilc ilc.cpp -I/root/libxively/src/libxively -I/home/pi/wiringPi/wiringPi。这不起作用,并报告了 WiringPi 库的所有函数调用的“未定义引用”。

4

2 回答 2

2

Xively C 库目前没有实现高级 C++ 包装器。

您需要静态链接libxively.a.

以下是可以帮助您入门的说明。

git clone --recursive https://github.com/xively/libxively
cd libxively/src
make
mkdir my_project
cd my_project

在中,使用以下代码my_project创建:main.cpp

#include "xively.h"
#include "xi_err.h"

#include <stdio.h>
#include <string.h>

#define XI_FEED_ID 1234 // set Xively Feed ID (numerical, no quoutes
#define XI_API_KEY "INSER_YOUR_API_KEY" // set Xively API key (double-quoted string) 

int main() {

    xi_feed_t feed;
    memset( &feed, NULL, sizeof( xi_feed_t ) );

    feed.feed_id = XI_FEED_ID;
    feed.datastream_count = 2;

    feed.datastreams[0].datapoint_count = 1;
    xi_datastream_t* foo_datastream = &feed.datastreams[0];
    strcpy( foo_datastream->datastream_id, "foo" );
    xi_datapoint_t* current_foo = &foo_datastream->datapoints[0];

    feed.datastreams[1].datapoint_count = 1;
    xi_datastream_t* bar_datastream = &feed.datastreams[1];
    strcpy( bar_datastream->datastream_id, "bar" );
    xi_datapoint_t* current_bar = &bar_datastream->datapoints[0];

    // create the xively library context
    xi_context_t* xi_context
        = xi_create_context( XI_HTTP, XI_API_KEY, feed.feed_id );

    // check if everything works
    if( xi_context == NULL )
    {
        return -1;
    }

    xi_set_value_str( current_bar, "unknown" );

    xi_set_value_f32( current_foo, 0.123 );

    xi_feed_update(xi_context, &feed);

    return 0;
}

现在我们可以编译它并静态链接libxively.a

g++ main.cpp ../obj/libxively.a -I../libxively/ -o ../bin/my_project

运行../bin/my_project应该产生如下输出:

% ../bin/my_project 
[222@xively.c] - Getting the comm layer...
[222@xively.c] - Getting the transport layer...
[222@xively.c] - Getting the data layer...
[231@xively.c] - Connecting to the endpoint...
[231@xively.c] - Sending data:
PUT /v2/feeds/1234.csv HTTP/1.1
Host: api.xively.com
User-Agent: libxively-posix/0.1.x-1a79892
Accept: */*
X-ApiKey: INSER_YOUR_API_KEY
Content-Type: text/plain
Content-Length: 25

foo,0.123000
bar,unknown

[231@xively.c] - Sent: 218
[231@xively.c] - Reading data...
[231@xively.c] - Received: 512
[231@xively.c] - Response:
HTTP/1.1 401 Unauthorized
Date: Wed, 17 Jul 2013 12:38:00 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 50
Connection: keep-alive
WWW-Authenticate: Basic realm="Web Password"
X-Request-Id: 0a25d76545c371a2bd6ef368cc1859f1fd5abb9a
Set-Cookie: _pachcore_app_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTY4ZmU1NjUxMjhmNmI2MDlhN2E1ZDNkZmMyNjNhNGYwBjsAVA%3D%3D--9510f98ab1aa46a3978e06e41b2548280d4d2a63; domain=.xively.com; path=/; expires=Wed, 31-Jul-2013 12:38:00 GMT; HttpOnly

You do not have permission to access this resource

您现在可以插入 API 密钥和提要 ID,一切就绪。要添加您提到的其他库,只需添加-lwiringPi到编译器命令行。

于 2013-07-17T12:49:51.897 回答
0

你混淆了两件不同的事情:

  • 插入包含文件(-I开关)
  • 与外部库链接(-l开关)

您应该将-lwiringPi开关保留在命令行中,即

 g++ -o ilc ilc.cpp -I/root/libxively/src/libxively -I/home/pi/wiringPi/wiringPi -lwiringPi
于 2013-07-15T18:35:51.717 回答