-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.h
64 lines (54 loc) · 1.69 KB
/
message.h
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
#ifndef __MESSAGE_H__
#define __MESSAGE_H__
#include <fcntl.h>
#include <pwd.h>
#define BACKUP 0
#define RESTORE 1
#define DELETE 2
#define CLEAN 3
#define PATH_SIZE 1024
#define CHUNK_SIZE 4096
#define NOT_FNSHD 1 //O ficheiro não está completo
#define FINISHED 0 //O ficheiro terminou
#define ERROR -1 //Houve um erro ao tentar ler do ficheiro
typedef struct message {
char chunk[CHUNK_SIZE];
char file_path[PATH_SIZE];
int operation;
int status;
int chunk_size;
pid_t pid;
uid_t uid;
} *MESSAGE;
/**
* Cria uma nova message.
* @param operation
* @param uid User ID
* @param pid PID do processo da origem da mensagem
* @param file_path Path real do ficheiro
* @param chunk Pedaço de ficheiro a enviar
* @param chunk_size Tamanho do pedaço
* @param status NOT_FNSHD caso ainda haja mais chunks, FINISHED caso tenha terminado, ERROR caso a leitura do ficheiro deu um erro
*/
MESSAGE init_message(char* operation, uid_t uid, pid_t pid, char* file_path,
char* chunk, int chunk_size, int status);
/**
* Altera o valor da mensagem dada
* @param m Mensagem a alterar
* @param operation
* @param uid User ID
* @param pid PID do processo da origem da mensagem
* @param file_path Path real do ficheiro
* @param chunk Pedaço de ficheiro a enviar
* @param chunk_size Tamanho do pedaço
* @param status NOT_FNSHD caso ainda haja mais chunks, FINISHED caso tenha terminado, ERROR caso a leitura do ficheiro deu um erro
*/
void change_message(MESSAGE m, char* operation, uid_t uid, pid_t pid, char* file_path,
char* chunk, int chunk_size, int status);
/**
* Cria uma mensagem vazia
*/
MESSAGE empty_message();
char* get_file_name(char *file_path);
void freeMessage(MESSAGE m);
#endif