aboutsummaryrefslogtreecommitdiff
path: root/examples/userspace_client_protobuf.cpp
blob: 1eadc0cad5c774693aed25c59b0ba950afb760c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#include <stdio.h>
#include <stdlib.h> // Needed for _wtoi
#include <winsock2.h>
#include <ws2tcpip.h>

#include <ksocket/helper.hpp>
#include <ksocket/utils.h>

#include "examples/common.hpp"
#include "examples/example.pb-c.h"

int main(int argc, char **argv) {
  WSADATA wsaData = {};
  int iResult = WSAStartup(MAKEWORD(2, 2), &wsaData);

  UNREFERENCED_PARAMETER(argc);
  UNREFERENCED_PARAMETER(argv);

  if (iResult != 0) {
    wprintf(L"WSAStartup failed: %d\n", iResult);
    return 1;
  }

  SOCKET sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);

  if (sock == INVALID_SOCKET) {
    wprintf(L"socket function failed with error = %d\n", WSAGetLastError());
  } else {
    wprintf(L"socket function succeeded\n");
  }

  sockaddr_in clientService;
  clientService.sin_family = AF_INET;
  clientService.sin_addr.s_addr = inet_addr("127.0.0.1");
  clientService.sin_port = htons(9095);

  do {
    iResult = connect(sock, (SOCKADDR *)&clientService, sizeof(clientService));
    if (iResult == SOCKET_ERROR) {
      wprintf(L"connect function failed with error: %ld\n", WSAGetLastError());
      Sleep(1000);
    }
  } while (iResult == SOCKET_ERROR);

  wprintf(L"Connected to server.\n");

  uint32_t start_id = 0x12345678;
  for (size_t i = 0; i < 256; ++i) {
    SocketBuffer<1024> sb_send, sb_recv;
    SomethingMoreSerializer sms;

    sms.SetErrorCode(SOMETHING_MORE__ERRORS__SUCCESS);
    sms.SetId(start_id++);
    sms.SetIpAddress(0xAAAAAAAA);
    sms.SetPortNum(0xBBBBBBBB);

    if (!sb_send.AddPdu(sms)) {
      wprintf(L"Serialization failed\n");
      break;
    }

    SEND_ALL(sock, sb_send, iResult);
    if (iResult == SOCKET_ERROR || iResult == 0) {
      wprintf(L"send failed with error: %d\n", WSAGetLastError());
      break;
    }

    RECV_PDU_BEGIN(sock, sb_recv, iResult, pdu_type, pdu_len) {
      wprintf(L"PDU type/len: %u/%u\n", pdu_type, pdu_len);
      switch ((enum PduTypes)pdu_type) {
      case PDU_SOMETHING_WITH_UINTS: {
        break;
      }
      case PDU_SOMETHING_MORE: {
        SomethingMoreDeserializer smd;
        if (smd.Deserialize(pdu_len, sb_recv.GetStart()) == true &&
            smd.sm->uints != NULL && smd.sm->uints->has_id == TRUE &&
            smd.sm->uints->has_ip_address == TRUE &&
            smd.sm->uints->has_port_num == TRUE)
          wprintf(L"Id: 0x%X, IpAddress: 0x%X, PortNum: 0x%X\n",
                  smd.sm->uints->id, smd.sm->uints->ip_address,
                  smd.sm->uints->port_num);
        break;
      }
      case PDU_EVEN_MORE: {
        break;
      }
      }
    }
    RECV_PDU_END(sb_recv, pdu_len);

    ////////////////////////////////////////////////////////

    EvenMoreSerializer ems(EVEN_MORE__SOME_ENUM__FIRST,
                           {0xde, 0xad, 0xc0, 0xde}, {0xde, 0xad, 0xc0, 0xde});
    SomethingWithUINTsSerializer swus[3];

    swus[0].SetId(0xdeadc0de);
    swus[1].SetIpAddress(0xdeadbeef);
    swus[2].SetPortNum(0xcafecafe);

    ems.SetS("This is a zero-terminated String!");
    ems.AddUints(&swus[0]);
    ems.AddUints(&swus[1]);
    ems.AddUints(&swus[2]);

    if (!sb_send.AddPdu(ems)) {
      wprintf(L"Serialization failed\n");
      break;
    }

    SEND_ALL(sock, sb_send, iResult);
    if (iResult == SOCKET_ERROR || iResult == 0) {
      wprintf(L"send failed with error: %d\n", WSAGetLastError());
      break;
    }

    RECV_PDU_BEGIN(sock, sb_recv, iResult, pdu_type, pdu_len) {
      wprintf(L"PDU type/len: %u/%u\n", pdu_type, pdu_len);
      switch ((enum PduTypes)pdu_type) {
      case PDU_SOMETHING_WITH_UINTS: {
        break;
      }
      case PDU_SOMETHING_MORE: {
        break;
      }
      case PDU_EVEN_MORE: {
        EvenMoreDeserializer emd;
        if (emd.Deserialize(pdu_len, sb_recv.GetStart()) == true) {
          wprintf(L"EnumValue: %d\n", emd.em->enum_value);
          if (emd.em->s != NULL)
            wprintf(L"String: '%s'\n", emd.em->s);
        }
        break;
      }
      }
    }
    RECV_PDU_END(sb_recv, pdu_len);
  }
  wprintf(L"Closing Connection ..\n");

  iResult = closesocket(sock);
  if (iResult == SOCKET_ERROR) {
    wprintf(L"closesocket function failed with error: %ld\n",
            WSAGetLastError());
    WSACleanup();
    return 1;
  }

  WSACleanup();

  system("pause");

  return 0;
}