【问题标题】:Linux cannot connect to device using rs232 interface, Windows does not have problemsLinux 无法使用 rs232 接口连接设备,Windows 没有问题
【发布时间】:2014-04-02 09:18:44
【问题描述】:

当使用脚本+c/c++ 套接字程序通过 ip 连接到设备转换器时,这似乎在 Windows 7 中有效。 但是,在 linux 环境中编译的相同程序无法发送会产生输出的命令。 命令是 FF€,末尾的欧元符号是 \x80,表示设备 EOT。

我的 Windows 笔记本电脑很可能使用 cp1252(或 Windows-1252)转换,该转换使用扩展的 ASCII \80 产生欧元符号。设备供应商表示,命令的最后一个符号被编程为不同于 ASCII 的第一个符号,这已被编程为“欧元”符号。 在我的 C++ 程序中,我使用了设置环境的语言环境,但它仍然没有治愈。 可以请教吗?

#include <iostream>
#include <cstring>      // Needed for memset
#include <sys/socket.h> // Needed for the socket functions
#include <netdb.h>      // Needed for the socket functions
#include <unistd.h>
#include <string.h>
#include <cctype>
#include <clocale>

using namespace std;


int main(int argc, char *argv[])
{
//std::setlocale(LC_ALL, "en_US.utf-8");
//std::setlocale(LC_ALL, "en_US.iso88591");
//std::setlocale(LC_ALL, "en_US.UTF-8");
//printf ("Locale is: %s\n", setlocale(LC_ALL,"de_DE.iso88591") );
    int status;
    char* ip=argv[1];
//cout<<"hello ip:"<<&ip<<"\n";
    char* po=argv[2];
//cout<<"hello port"<<po<<"\n";
    char* co=argv[3];
//cout<<"hello "<<co<<"\n";

    struct addrinfo host_info;       // The struct that getaddrinfo() fills up with data.
    struct addrinfo *host_info_list; // Pointer to the to the linked list of host_info's.

    // The MAN page of getaddrinfo() states "All  the other fields in the structure pointed
    // to by hints must contain either 0 or a null pointer, as appropriate." When a struct
    // is created in c++, it will be given a block of memory. This memory is not nessesary
    // empty. Therefor we use the memset function to make sure all fields are NULL.
    memset(&host_info, 0, sizeof host_info);

//    std::cout << "Setting up the structs..."  << std::endl;
//   std::cout << "Das ist es ip"<<&ip;
//   std::cout << "Das ist der zweite<<&po;

    host_info.ai_family = AF_UNSPEC;     // IP version not specified. Can be both.
    host_info.ai_socktype = SOCK_STREAM; // Use SOCK_STREAM for TCP or SOCK_DGRAM for UDP.

    // Now fill up the linked list of host_info structs with google's address information.
    status = getaddrinfo(ip, po, &host_info, &host_info_list);                  // handelt die generierung und verbindung zum socket (egal ob IPv4 or IPv6) return 0 if successful
   // getaddrinfo returns 0 on succes, or some other value when an error occured.
    // (translated into human readable text by the gai_gai_strerror function).
    if (status != 0)  std::cout << "getaddrinfo error" << gai_strerror(status) ;


//    std::cout << "Creating a socket..."  << std::endl;
    int socketfd ; // The socket descripter
    socketfd = socket(host_info_list->ai_family, host_info_list->ai_socktype,
                      host_info_list->ai_protocol);                                             //generiere socket und gibt -1 bei fehler
    if (socketfd == -1)  std::cout << "socket error " ;


//    std::cout << "Connect()ing..."  << std::endl;
    status = connect(socketfd, host_info_list->ai_addr, host_info_list->ai_addrlen);            //verbinde zum server und gibt -1 bei fehler
    if (status == -1)  std::cout << "connect error" ;


//    std::cout << "send()ing message..."  << std::endl;
//    const char* co2="\xe2\x82\xac";
    //const char* co2="\x0D";
//    const char* co2="\x80\b\x04^D\x0d^M\n\v\f";
    //int ne=128;
    //char c=(char) ne;
    //char* co2=&c;
    const char* co2="\x80";
    cout<<"Das ist das EOT Zeichen\n"<<co2;

    char* msg=new char[strlen(co)+strlen(co2)+1];
    strcpy(msg,co);
    strcat(msg,co2);
    std::cout <<"\nThis is what the command is:\t" <<msg<<"\n";
    //char str[80];
    //strcpy(str,co);
    //strcat(str,co2);
    //std::cout <<"\nThis is what the command is:\t" <<str <<"\n";
    int len;
    ssize_t bytes_sent;
    len = strlen(msg);
    bytes_sent = send(socketfd, msg, len, 0);                                                   //sende und empfange daten
//    std::cout << "Waiting to recieve data..."  << std::endl;
    ssize_t bytes_recieved;
    char incomming_data_buffer[10000];
    bytes_recieved = recv(socketfd, incomming_data_buffer,10000, 0);                            //Empfange daten in speicher und mache mit programm weiter falls keine daten geschickt werden
    // If no data arrives, the program will just wait here until some data arrives.
    if (bytes_recieved == 0) std::cout << "host shut down." << std::endl ;
    if (bytes_recieved == -1)std::cout << "recieve error!" << std::endl ;
//    std::cout << bytes_recieved << " bytes recieved :" << std::endl ;
    incomming_data_buffer[bytes_recieved] = '\0' ;
    std::cout << incomming_data_buffer << std::endl;
//    std::cout << "Receiving complete. Closing socket..." << std::endl;
//    sleep (2);
    freeaddrinfo(host_info_list);                                                               //free memory
    close(socketfd);                                                                            //schliesse socket
}

【问题讨论】:

  • 第一步,我会在 Windows 中运行 Wireshark,在 Linux 中运行 Wireshark,然后运行每个程序,观察发送到设备的实际字节数。
  • PS,不应该是+1 而不是+0 你分配msg 的地方吗?
  • 好的,改成:char* msg=new char[strlen(co)+strlen(co2)+1];抱歉,0 或 +1 代表什么? msg 分配:bytes_sent = send(socketfd, msg, len, 0);
  • 您需要为 strcat 添加的终止 0 字节留出空间...
  • wireshark 中的数据不幸被加密了。猜猜这是 ssh 覆盖。将两个已编译的可执行文件与 od 进行比较,这是一种选择吗?如果您知道得更好,请告诉我命令。我还听说 glibc 可能已针对字符编码进行了预配置。对此也有任何想法吗?非常感谢您的帮助!!!

标签: c++ linux windows


【解决方案1】:

(仅适用于 Linux)如果您需要查看 send() 发送内容的 hexdump,请插入以下代码:

FILE *f = popen( "od -Ax -tx1z -v", "w");
fwrite( msg, 1, len, f); 
fclose(f);

重复以查看返回的内容:

f = popen( "od -Ax -tx1z -v", "w");
fwrite( incomming_data_buffer, 1, bytes_recieved, f); 
fclose(f);

在 Windows 上,您只需要执行一个循环:

for (int i=0; i < len; i++) { printf("%02x ", msg[i]; } printf("\n");

[发布为获取格式的答案]

【讨论】:

  • 当然,在linux上你也可以做循环。 popen 方法只会给你额外的格式。
  • 我一直发现使用 od 并能够快速更改格式以适应手头的问题非常有用,尤其是对于在大转储中直观地发现模式
  • 我个人更喜欢xxd。但是您的回答只是让它在 linux 上看起来更复杂,而实际上 linux 允许使用相同的方法,但还为您提供了其他选项,例如将数据管道传输到外部 hexdumper。
  • Windows 7 笔记本电脑(使用 cygwin)Hexdump:================================ =============== $ /home/kocak/C/final/final/DTR_client_SignalLevel2.exe 127.0.0.1 11000 KK K kocak@GFR-000109 ~/C/final/final $ 000000 4b 4b 80 >KK.K
  • Linux 服务器 Hexdump : ====================================== ========== kocakh@kpimon02:~/DTR/final> ./DTR_RS232_socket.run 172.16.115.74 1024 KK K-0675- 000000 4b 4b 80 >KK.K-0675-
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-04-16
  • 1970-01-01
  • 1970-01-01
  • 2021-07-26
  • 1970-01-01
  • 2012-04-25
相关资源
最近更新 更多