summaryrefslogtreecommitdiff
path: root/libstore/make.c
blob: 6f5e557a981eaa31e367304d04b908f3de6e5469 (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
/* Store allocation/deallocation

   Copyright (C) 1995, 1996 Free Software Foundation, Inc.

   Written by Miles Bader <miles@gnu.ai.mit.edu>

   This file is part of the GNU Hurd.

   The GNU Hurd 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 2, or (at
   your option) any later version.

   The GNU Hurd 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 this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */

#include <malloc.h>

#include "store.h"

/* Allocate a new store structure with meths METHS, and the various other
   fields initialized to the given parameters.  */
struct store *
_make_store (struct store_class *class,
	     mach_port_t port, int flags, size_t block_size,
	     const struct store_run *runs, size_t num_runs, off_t end)
{
  if (block_size & (block_size - 1))
    return 0;			/* block size not a power of two.  */
  else
    {
      struct store *store = malloc (sizeof (struct store));
      if (store)
	{
	  store->name = 0;
	  store->port = port;
	  store->runs = 0;
	  store->num_runs = 0;
	  store->wrap_src = 0;
	  store->wrap_dst = 0;
	  store->flags = flags;
	  store->end = end;
	  store->block_size = block_size;
	  store->source = MACH_PORT_NULL;
	  store->blocks = 0;
	  store->size = 0;
	  store->log2_block_size = 0;
	  store->log2_blocks_per_page = 0;
	  store->misc = 0;
	  store->hook = 0;
	  store->children = 0;
	  store->num_children = 0;

	  store->class = class;

	  store_set_runs (store, runs, num_runs); /* Calls _store_derive() */
	}
      return store;
    }
}

void
store_free (struct store *store)
{
  int k;

  if (store->class->cleanup)
    (*store->class->cleanup) (store);

  for (k = 0; k < store->num_children; k++)
    store_free (store->children[k]);

  if (store->port != MACH_PORT_NULL)
    mach_port_deallocate (mach_task_self (), store->port);
  if (store->source != MACH_PORT_NULL)
    mach_port_deallocate (mach_task_self (), store->source);

  if (store->name)
    free (store->name);
  if (store->runs)
    free (store->runs);

  free (store);
}