File: headers_received.cpp

package info (click to toggle)
emscripten 3.1.6~dfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 114,112 kB
  • sloc: ansic: 583,052; cpp: 391,943; javascript: 79,361; python: 54,180; sh: 49,997; pascal: 4,658; makefile: 3,426; asm: 2,191; lisp: 1,869; ruby: 488; cs: 142
file content (59 lines) | stat: -rw-r--r-- 1,999 bytes parent folder | download
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
// Copyright 2016 The Emscripten Authors.  All rights reserved.
// Emscripten is available under two separate licenses, the MIT license and the
// University of Illinois/NCSA Open Source License.  Both these licenses can be
// found in the LICENSE file.

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <emscripten/fetch.h>

void readyStateChange(emscripten_fetch_t *fetch)
{
  if(fetch->readyState != 2) return;

  size_t headersLengthBytes = emscripten_fetch_get_response_headers_length(fetch) + 1;
  char *headerString = new char[headersLengthBytes];

  assert(headerString);
  emscripten_fetch_get_response_headers(fetch, headerString, headersLengthBytes);
  printf("Got headers: %s\n", headerString);

  char **responseHeaders = emscripten_fetch_unpack_response_headers(headerString);
  assert(responseHeaders);

  delete[] headerString;

  int numHeaders = 0;
  for(; responseHeaders[numHeaders * 2]; ++numHeaders)
  {
    // Check both the header and its value are present.
    assert(responseHeaders[(numHeaders * 2) + 1]);
    printf("Got response header: %s:%s\n", responseHeaders[numHeaders * 2], responseHeaders[(numHeaders * 2) + 1]);
  }

  printf("Finished receiving %d headers from URL %s.\n", numHeaders, fetch->url);

  emscripten_fetch_free_unpacked_response_headers(responseHeaders);
}

void success(emscripten_fetch_t *fetch)
{
  printf("Finished downloading %llu bytes from URL %s.\n", fetch->numBytes, fetch->url);
  // The data is now available at fetch->data[0] through fetch->data[fetch->numBytes-1];
  emscripten_fetch_close(fetch); // Free data associated with the fetch.
}

int main()
{
  emscripten_fetch_attr_t attr;
  emscripten_fetch_attr_init(&attr);
  strcpy(attr.requestMethod, "GET");
  attr.attributes = EMSCRIPTEN_FETCH_LOAD_TO_MEMORY | EMSCRIPTEN_FETCH_REPLACE;
  attr.onsuccess = success;
  attr.onreadystatechange = readyStateChange;
  attr.timeoutMSecs = 2*60;
  emscripten_fetch(&attr, "myfile.dat");
  return 0;
}