]> git.mxchange.org Git - pizzaservice-war.git/blob
64ee96096ccdb057a73153daa161b144faa8d9c2
[pizzaservice-war.git] /
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.pizzaapplication.database.frontend.category;
18
19 import java.io.IOException;
20 import java.sql.SQLException;
21 import java.text.MessageFormat;
22 import java.util.Iterator;
23 import org.mxchange.jcore.criteria.searchable.SearchCriteria;
24 import org.mxchange.jcore.criteria.searchable.SearchableCritera;
25 import org.mxchange.jcore.database.frontend.BaseDatabaseFrontend;
26 import org.mxchange.jcore.database.result.Result;
27 import org.mxchange.jcore.database.storage.Storeable;
28 import org.mxchange.jcore.exceptions.BadTokenException;
29 import org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException;
30 import org.mxchange.pizzaapplication.category.Category;
31
32 /**
33  * Stores and retrieves Contact instances
34  *
35  * @author Roland Haeder
36  */
37 public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implements CategoryFrontend {
38
39         /**
40          * Default constrcutor
41          * @throws org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException If the configured backend is not supported
42          * @throws java.sql.SQLException If any SQL error occurs
43          */
44         public PizzaCategoryDatabaseFrontend () throws UnsupportedDatabaseBackendException, SQLException {
45                 // Trace message
46                 this.getLogger().trace("CALLED!"); //NOI18N
47
48                 // Set "table" name
49                 this.setTableName("category"); //NOI18N
50
51                 // Initalize backend
52                 this.initBackend();
53         }
54
55         /**
56          * Shuts down the database layer
57          * @throws java.sql.SQLException If an SQL error occurs
58          * @throws java.io.IOException If any IO error occurs
59          */
60         @Override
61         public void doShutdown () throws SQLException, IOException {
62                 // Trace message
63                 this.getLogger().trace("CALLED!"); //NOI18N
64
65                 // Shutdown backend
66                 this.getBackend().doShutdown();
67
68                 // Trace message
69                 this.getLogger().trace("EXIT!"); //NOI18N
70         }
71
72         /**
73          * An iterator on all products
74          *
75          * @return Iterator on all products
76          * @throws java.io.IOException If any IO error occurs
77          * @throws org.mxchange.jcore.exceptions.BadTokenException If a bad token was found in a file-based database backend's file ... ;-)
78          */
79         @Override
80         @SuppressWarnings ("unchecked")
81         public Iterator<Category> getCategories () throws IOException, BadTokenException {
82                 // Trace message
83                 this.getLogger().trace("CALLED!"); //NOI18N
84
85                 // Instance search criteria
86                 SearchableCritera critera = new SearchCriteria();
87
88                 // Run the query
89                 Result<? extends Storeable> result = this.getBackend().doSelectByCriteria(critera);
90
91                 // Debug message
92                 this.getLogger().debug(MessageFormat.format("result={0}", result)); //NOI18N
93
94                 // Get iterator
95                 Iterator<?> iterator = result.iterator();
96
97                 // Trace message
98                 this.getLogger().trace(MessageFormat.format("iterator={0} - EXIT!", iterator)); //NOI18N
99
100                 // Get iterator and return it
101                 return (Iterator<Category>) iterator;
102         }
103
104         /**
105          * Parses given line from database backend into a Storeable instance. Please
106          * note that not all backends need this.
107          *
108          * @param line Line from database backend
109          * @return A Storeable instance
110          */
111         @Override
112         public Storeable parseLineToStoreable (final String line) throws BadTokenException {
113                 // Trace message
114                 this.getLogger().trace(MessageFormat.format("line={0} - CALLED!", line)); //NOI18N
115
116                 // Call inner method
117                 Category category = this.parseLineToCategory(line);
118
119                 // Debug message
120                 this.getLogger().trace(MessageFormat.format("category={0} - EXIT!", category)); //NOI18N
121
122                 // Return it
123                 return category;
124         }
125
126         /**
127          * Parses given line to a Category instance
128          *
129          * @param line Raw, decoded line from a file-based backend
130          * @return A Category instance from given line
131          */
132         private Category parseLineToCategory (final String line) {
133                 throw new UnsupportedOperationException(MessageFormat.format("Not supported yet: line={0}", line)); //NOI18N
134         }
135 }