为iOS定义预处理器宏

时间:2016-08-17 15:37:24

标签: c++ ios macros

我有cpp文件作为标题链接到我的应用程序。这些cpp和头文件也与其他应用程序一起使用。我如何为iphone定义预处理器宏,因此当应用程序构建时,它使用ios的功能而不是其他平台的功能。

例如:

如何定义宏,以便连接函数在使用iOS时使用getaddrinfo_compact而不是我使用的简单套接字连接函数。

bool SocketSender::Connect (const char *host, int port, CApiError &err)
{

errno = 0;
struct hostent *hostinfo;

//struct in6_addr ipv6addr;


hostinfo = gethostbyname(host);

struct addrinfo hints, *res, *res0;
int error,result;
const char *cause = NULL;

memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
//hints.ai_flags = AI_DEFAULT;
hints.ai_protocol = 0;
error = getaddrinfo_compat(host, boost::to_string(port).c_str(), &hints, &res0);
if (error) {
    errx(1, "%s", gai_strerror(error));
    /*NOTREACHED*/
}

getaddrinfo_compact

static int getaddrinfo_compat(
                          const char * hostname,
                          const char * servname,
                          const struct addrinfo * hints,
                          struct addrinfo ** res
                          ) {
int    err;
int    numericPort;

// If we're given a service name and it's a numeric string, set `numericPort` to that,
// otherwise it ends up as 0.

numericPort = servname != NULL ? atoi(servname) : 0;

// Call `getaddrinfo` with our input parameters.

err = getaddrinfo(hostname, servname, hints, res);

// Post-process the results of `getaddrinfo` to work around <rdar://problem/26365575>.

if ( (err == 0) && (numericPort != 0) ) {
    for (const struct addrinfo * addr = *res; addr != NULL; addr = addr->ai_next) {
        in_port_t *    portPtr;

        switch (addr->ai_family) {
            case AF_INET: {
                portPtr = &((struct sockaddr_in *) addr->ai_addr)->sin_port;
            } break;
            case AF_INET6: {
                portPtr = &((struct sockaddr_in6 *) addr->ai_addr)->sin6_port;
            } break;
            default: {
                portPtr = NULL;
            } break;
        }
        if ( (portPtr != NULL) && (*portPtr == 0) ) {
            *portPtr = htons(numericPort);  
        }  
    }  
}  
return err;  
}

1 个答案:

答案 0 :(得分:0)

你能定义像

这样的东西吗?

IOSBUILD=1

在&#39;预处理器宏&#39;下的目标的构建设置中。 (为所有配置设置它,例如调试和发布)。

enter image description here

然后在C ++代码中,您可以检查这是否是iOS版本:

#ifdef IOSBUILD
    // Use the compat version.
#else
    // Use the original version.
#endif

除非他们出于某种原因决定定义IOSBUILD,否则不会对其他应用程序感到不安。