c – 在编译时更改字符串宏

我正在开发一个必须在不同机器上工作的独特客户端.在每台计算机上,服务器都在不同的IP地址中运行,但这个地址是已知的.

我不希望每次运行时告诉客户端哪个是IP,所以我在编译时告诉它.

问题是,当使用g -DHOSTNAME = 127.0.0.1(也尝试使用双引号)进行编译时,编译器会说:

error: too many decimal points in number
./include/Client.h:18:25: note: in expansion of macro ‘HOSTNAME’

我也尝试使用localhost.

error: ‘localhost’ was not declared in this scope
./include/Client.h:18:25: note: in expansion of macro ‘HOSTNAME’

还尝试使用在互联网上找到的一些东西.

#define XSTR(x) STR(x)
#define STR(x)

编译错误:

./src/BSCClient.cpp:15:45: note: #pragma message: HOSTNAME: 
#pragma message("HOSTNAME: " XSTR(HOSTNAME))

./src/BSCClient.cpp:16:39: error: too few arguments to function ‘hostent* gethostbyname(const char*)’
  server = gethostbyname(XSTR(HOSTNAME));

在这一点上,我在想,宏可能不是处理这个问题的正确方法,但我不知道如何做到这一点.

如果有人对此有任何提及,我将感激不尽.

编辑:
这些是代码.

Client.h:

#ifndef __CLIENT_HH__
#define __CLIENT_HH__

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>

#include <string>
#include <iostream>

using namespace std;

#define HOSTNAME 127.0.0.1
#define MAX_MESSAGE_LENGTH 10 

class Client {
private:
    string client_name;
    int sockfd, portno;
    struct sockaddr_in serv_addr;
    struct hostent *server;
    error(const char *msg);

public:

    BSCClient (string name, int port);
    void identifyme();
    void sendData (string data);
    string recvData ();

    void closeSocket();
};

#endif

Client.cpp

#include "BSCClient.h"

#include <stdlib.h>
#include <time.h>

void BSCClient::error(const char *msg)
{
    perror(msg);
    exit(0);
}

Client::Client(string name, int port)
{
    sockfd = socket(AF_INET, SOCK_STREAM, 0);
    portno = port;
    client_name = name;

    if (sockfd < 0) 
        error("ERROR opening socket");

    server = gethostbyname(HOSTNAME);

    if (server == NULL) {
        fprintf(stderr,"ERROR, no such host\n");
        exit(0);
    }

    bzero((char *) &serv_addr, sizeof(serv_addr));
    serv_addr.sin_family = AF_INET;
    bcopy((char *)server->h_addr, 
         (char *)&serv_addr.sin_addr.s_addr,
         server->h_length);
    serv_addr.sin_port = htons(portno);
    if (connect(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0) 
        error("ERROR connecting");

    sendData(client_name);
}

void Client::identifyme() {
    FILE *fp;
    fp = popen("id -gn", "r");

    char text[6];
    fscanf(fp, "%s", text);
    pclose(fp);
    string data(text);
    sendData(data);
}

void Client::sendData (string data) {
    const char *sdata = data.c_str();
    int n;
    n = write(sockfd, sdata, strlen(sdata));
    if (n < 0) 
         error("ERROR writing to socket");
}

string Client::recvData () {
        int n;
        int bytes;
        char *longitud = new char[MAX_MESSAGE_LENGTH+1];
        n = read(sockfd, longitud, MAX_MESSAGE_LENGTH);
        if (n < 0) {
                error("ERROR recieving size of output");
        }
        bytes=atoi(longitud);
        //Para forzar el fin del string (ya que al imprimir el string hay veces que muestra caracteres de más)
        longitud[MAX_MESSAGE_LENGTH]='\0';
        char *data = new char[bytes];
        n = read(sockfd, data, bytes);
        if (n < 0)
                error("ERROR reading output");
        string ret(data);
        return ret;
} 

void Client::closeSocket() {
    close(sockfd);
}

解决方法:

你必须逃避双引号:

g++ -DHOSTNAME=\"127.0.0.1\"

否则,引号只是对你的shell说127.0.0.1是你想给-DHOSTNAME的值,如果值有空格,这可能很有用,例如:

g++ -DMAGIC_NUMBER="150 / 5"

(那里,MAGIC_NUMBER将被替换为150/5而没有引号)

如果你想让引号成为宏的一部分(如在#define HOSTNAME“127.0.0.1”中),你必须向你的shell说它们是你给-DHOSTNAME的值的一部分,这是通过转义它们来完成的.

编辑:

另外,正如Angew指出的那样,你误用了XSTR技巧.这是你问题的另一种解决方案,而不是我的答案.

它肯定是这样的:

#define XSTR(x) STR(x)
#define STR(x) #x

有了它,你不必逃避报价.

这两个宏将文本127.0.0.1更改为“127.0.0.1”.在STR宏将其转换为“127.0.0.1”之前,XSTR宏允许HOSTNAME扩展到127.0.0.1.如果直接使用STR宏,最终会得到“HOSTNAME”而不是“127.0.0.1”.

我想我更倾向于使用转义解决方案来使用代码中涉及两个宏的技巧,但这也有效.

上一篇:c – 如何使用显式模板实例化来减少编译时间?


下一篇:如何将我的Python 3应用程序编译为.exe?