summaryrefslogtreecommitdiff
path: root/mimetypes/locus.c
blob: e3eba86412530f209636ccd81e03f932a19ea41e (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
92
93
94
95
/* This file is part of fileserv.
   Copyright (C) 2017, 2018 Sergey Poznyakoff

   Fileserv is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   Fileserv is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with fileserv.  If not, see <http://www.gnu.org/licenses/>. */

#include <stdlib.h>
#include <errno.h>
#include "locus.h"

int
locus_point_set_file (struct locus_point *pt, const char *filename)
{
  int rc;
  char const *ref;

  rc = ident_ref (filename, &ref);
  if (rc)
    return rc;
  ident_deref (pt->file);
  pt->file = ref;
  return 0;
}

void
locus_point_init (struct locus_point *pt)
{
  memset (pt, 0, sizeof *pt);
}

void
locus_point_deinit (struct locus_point *pt)
{
  ident_deref (pt->file);
  memset (pt, 0, sizeof *pt);
}

int
locus_point_copy (struct locus_point *dest, struct locus_point const *src)
{
  int rc = locus_point_set_file (dest, src->file);
  if (rc == 0)
    {
      dest->col = src->col;
      dest->line = src->line;
    }
  return rc;
}

void
locus_range_init (struct locus_range *dest)
{
  memset (dest, 0, sizeof *dest);
}

int
locus_range_copy (struct locus_range *dest, struct locus_range const *src)
{
  int rc;
  struct locus_range tmp = LOCUS_RANGE_INITIALIZER;

  if (!dest)
    return EINVAL;
    
  rc = locus_point_copy (&tmp.beg, &src->beg);
  if (rc == 0)
    {
      rc = locus_point_copy (&tmp.end, &src->end);
      if (rc)
	locus_point_deinit (&tmp.beg);
      else
	{
	  locus_range_deinit (dest);
	  *dest = tmp;
	}
    }
  return rc;
}

void
locus_range_deinit (struct locus_range *lr)
{
  locus_point_deinit (&lr->beg);
  locus_point_deinit (&lr->end);
}

Return to:

Send suggestions and report system problems to the System administrator.