1 | /*
|
---|
2 | * Copyright (c) 2012, 2013 Dominik Taborsky
|
---|
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 | /** @addtogroup hdisk
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /** @file
|
---|
33 | */
|
---|
34 |
|
---|
35 |
|
---|
36 | #include <errno.h>
|
---|
37 |
|
---|
38 | #include "func_none.h"
|
---|
39 |
|
---|
40 | static void not_implemented(void);
|
---|
41 |
|
---|
42 |
|
---|
43 | int construct_none_label(label_t *this)
|
---|
44 | {
|
---|
45 | this->layout = LYT_NONE;
|
---|
46 |
|
---|
47 | this->add_part = add_none_part;
|
---|
48 | this->delete_part = delete_none_part;
|
---|
49 | this->destroy_label = destroy_none_label;
|
---|
50 | this->new_label = new_none_label;
|
---|
51 | this->print_parts = print_none_parts;
|
---|
52 | this->read_parts = read_none_parts;
|
---|
53 | this->write_parts = write_none_parts;
|
---|
54 | this->extra_funcs = extra_none_funcs;
|
---|
55 |
|
---|
56 | return EOK;
|
---|
57 | }
|
---|
58 |
|
---|
59 | int add_none_part(label_t *this, tinput_t * in)
|
---|
60 | {
|
---|
61 | not_implemented();
|
---|
62 | return EOK;
|
---|
63 | }
|
---|
64 |
|
---|
65 | int delete_none_part(label_t *this, tinput_t * in)
|
---|
66 | {
|
---|
67 | not_implemented();
|
---|
68 | return EOK;
|
---|
69 | }
|
---|
70 |
|
---|
71 | int destroy_none_label(label_t *this)
|
---|
72 | {
|
---|
73 | return EOK;
|
---|
74 | }
|
---|
75 |
|
---|
76 | int new_none_label(label_t *this)
|
---|
77 | {
|
---|
78 | not_implemented();
|
---|
79 | return EOK;
|
---|
80 | }
|
---|
81 |
|
---|
82 | int print_none_parts(label_t *this)
|
---|
83 | {
|
---|
84 | not_implemented();
|
---|
85 | return EOK;
|
---|
86 | }
|
---|
87 |
|
---|
88 | int read_none_parts(label_t *this, service_id_t dev_handle)
|
---|
89 | {
|
---|
90 | not_implemented();
|
---|
91 | return EOK;
|
---|
92 | }
|
---|
93 |
|
---|
94 | int write_none_parts(label_t *this, service_id_t dev_handle)
|
---|
95 | {
|
---|
96 | not_implemented();
|
---|
97 | return EOK;
|
---|
98 | }
|
---|
99 |
|
---|
100 | int extra_none_funcs(label_t *this, tinput_t * in, service_id_t dev_handle)
|
---|
101 | {
|
---|
102 | not_implemented();
|
---|
103 | return EOK;
|
---|
104 | }
|
---|
105 |
|
---|
106 | static void not_implemented()
|
---|
107 | {
|
---|
108 | printf("No format selected.\n");
|
---|
109 | }
|
---|