blob: 55a112477b6d743e849dc20a028f54de638ae9a3 (
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
|
// Copyright 2018 Mimecast Ltd.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "gtask.h"
gtask_s* gtask_new(void *generate)
{
gtask_s *t = Malloc(gtask_s);
t->generate = generate;
t->line = NULL;
t->path_r = NULL;
t->path2_r = NULL;
#ifdef LOG_FILTERED
t->original_line = NULL;
#endif
return t;
}
void gtask_init(gtask_s *t, char *line, const unsigned long lineno)
{
if (t->line)
free(t->line);
t->line = Clone(line);
if (t->path_r)
free(t->path_r);
if (t->path2_r)
free(t->path2_r);
#ifdef LOG_FILTERED
if (t->original_line)
free(t->original_line);
t->original_line = Clone(line);
t->filtered_where = NULL;
#endif
t->bytes = -1;
t->address = 0;
t->address2 = 0;
t->count = -1;
t->F = -1;
t->fd = -1;
t->flags = -1;
t->G = -1;
t->has_fd = false;
t->vsize = NULL;
t->vsize2 = NULL;
t->lineno = lineno;
t->mapped_fd = -1;
t->mapped_time = -1;
t->mode = -1;
t->offset = -1;
t->op = NULL;
t->path2 = NULL;
t->path2_r = NULL;
t->path = NULL;
t->path_r = NULL;
t->gprocess = NULL;
t->pid = -1;
t->pidtid = NULL;
t->ret = 0;
t->status = -1;
t->tid = -1;
t->vfd = NULL;
t->whence = -1;
}
void gtask_destroy(gtask_s *t)
{
if (t->line)
free(t->line);
if (t->path_r)
free(t->path_r);
if (t->path2_r)
free(t->path2_r);
free(t);
}
|