1 | /*
|
---|
2 | * Copyright (c) 2015 Michal Koutny
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | #include <errno.h>
|
---|
30 |
|
---|
31 | #include "unit.h"
|
---|
32 |
|
---|
33 | static void unit_tgt_init(unit_t *unit)
|
---|
34 | {
|
---|
35 | unit_tgt_t *u_tgt = CAST_TGT(unit);
|
---|
36 | assert(u_tgt);
|
---|
37 | /* Nothing more to do */
|
---|
38 | }
|
---|
39 |
|
---|
40 | static void unit_tgt_destroy(unit_t *unit)
|
---|
41 | {
|
---|
42 | unit_tgt_t *u_tgt = CAST_TGT(unit);
|
---|
43 | assert(u_tgt);
|
---|
44 | /* Nothing more to do */
|
---|
45 | }
|
---|
46 |
|
---|
47 | static int unit_tgt_load(unit_t *unit, ini_configuration_t *ini_conf,
|
---|
48 | text_parse_t *text_parse)
|
---|
49 | {
|
---|
50 | unit_tgt_t *u_tgt = CAST_TGT(unit);
|
---|
51 | assert(u_tgt);
|
---|
52 |
|
---|
53 | return EOK;
|
---|
54 | }
|
---|
55 |
|
---|
56 | static int unit_tgt_start(unit_t *unit)
|
---|
57 | {
|
---|
58 | unit_tgt_t *u_tgt = CAST_TGT(unit);
|
---|
59 | assert(u_tgt);
|
---|
60 |
|
---|
61 | unit->state = STATE_STARTED;
|
---|
62 | return EOK;
|
---|
63 | }
|
---|
64 |
|
---|
65 | static int unit_tgt_stop(unit_t *unit)
|
---|
66 | {
|
---|
67 | unit_tgt_t *u_tgt = CAST_TGT(unit);
|
---|
68 | assert(u_tgt);
|
---|
69 |
|
---|
70 | unit->state = STATE_STOPPED;
|
---|
71 | return EOK;
|
---|
72 | }
|
---|
73 |
|
---|
74 | static void unit_tgt_exposee_created(unit_t *unit)
|
---|
75 | {
|
---|
76 | /* Target has no exposees. */
|
---|
77 | assert(false);
|
---|
78 | }
|
---|
79 |
|
---|
80 | static void unit_tgt_fail(unit_t *unit)
|
---|
81 | {
|
---|
82 | // TODO define semantics and implement
|
---|
83 | }
|
---|
84 |
|
---|
85 |
|
---|
86 | DEFINE_UNIT_VMT(unit_tgt)
|
---|
87 |
|
---|