commit last state
[ppam-mpi.git] / code / src / Util / utils.h
CommitLineData
81923e5c
BA
1#ifndef PPAM_UTIL_UTILS_H
2#define PPAM_UTIL_UTILS_H
3
4#include "Util/types.h"
5#include <stdlib.h>
6#include <stdio.h>
7
8#define CURVES_PER_REQUEST 50
9
10void free_work(Work_t* work);
11
12void free_result(Result_t* result);
13
14char readInt(FILE* stream, int64_t* integer);
15
16char readReal(FILE* stream, Real* real);
17
18// convert n-bytes binary integers to uint32_t
19uint32_t bInt_to_uint(Byte* pInteger, size_t bytesCount);
20
21// serialize integers with a portable bytes order
22void write_int(uint32_t integer, size_t bytesCount, Byte* buffer);
23
24// Expected size of a Work message in bytes:
25uint32_t get_packedWork_length(uint32_t nbSeriesInChunk);
26
27// Expected size of a Result message in bytes: (uint32_t is on 4 bytes)
28uint32_t get_packedResult_length(uint32_t nbClusters);
29
30// get metadata: nbSeries
31uint32_t get_nbSeries(const char* ifileName);
32
33// get metadata: tsLength
34uint32_t get_tsLength(const char* ifileName);
35
36#endif