summaryrefslogtreecommitdiffstats
path: root/src/warc.h
blob: 7238cff7ee01c7669f26156901ae39d724c3cb53 (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
/* Declarations of WARC helper methods. */
#ifndef WARC_H
#define WARC_H

#include "host.h"

void warc_init (void);
void warc_close (void);
void warc_uuid_str (char *id_str, size_t urn_size);

char * warc_timestamp (char *timestamp, size_t timestamp_size);

FILE * warc_tempfile (void);

bool warc_write_request_record (const char *url, const char *timestamp_str,
  const char *concurrent_to_uuid, const ip_address *ip, FILE *body, off_t payload_offset);
bool warc_write_response_record (const char *url, const char *timestamp_str,
  const char *concurrent_to_uuid, const ip_address *ip, FILE *body, off_t payload_offset,
  const char *mime_type, int response_code, const char *redirect_location);
bool warc_write_resource_record (const char *resource_uuid, const char *url,
  const char *timestamp_str, const char *concurrent_to_uuid, const ip_address *ip,
  const char *content_type, FILE *body, off_t payload_offset);
bool warc_write_metadata_record (const char *record_uuid, const char *url,
  const char *timestamp_str, const char *concurrent_to_uuid, ip_address *ip,
  const char *content_type, FILE *body, off_t payload_offset);

#endif /* WARC_H */