2011-01-23 20:34:05 -03:00
|
|
|
/*
|
|
|
|
* Copyright [2011] [wisemapping]
|
|
|
|
*
|
2011-01-23 21:03:12 -03:00
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
2011-01-23 20:34:05 -03:00
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
|
|
|
*
|
|
|
|
* http://www.wisemapping.org/license
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2009-06-07 18:59:43 +00:00
|
|
|
package com.wisemapping.util;
|
|
|
|
|
2011-04-08 17:53:32 -03:00
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
|
2009-06-07 18:59:43 +00:00
|
|
|
import javax.xml.bind.JAXBContext;
|
|
|
|
import javax.xml.bind.JAXBException;
|
|
|
|
import javax.xml.bind.Marshaller;
|
|
|
|
import javax.xml.bind.Unmarshaller;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
2011-04-08 17:53:32 -03:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
2009-06-07 18:59:43 +00:00
|
|
|
|
|
|
|
public class JAXBUtils {
|
|
|
|
|
2011-04-08 17:53:32 -03:00
|
|
|
private final static Map<String, JAXBContext> context = new HashMap<String, JAXBContext>();
|
|
|
|
|
|
|
|
public static Object getMapObject(@NotNull InputStream stream, @NotNull final String pakage) throws JAXBException {
|
|
|
|
|
|
|
|
final JAXBContext context = getInstance(pakage);
|
|
|
|
final Unmarshaller unmarshaller = context.createUnmarshaller();
|
|
|
|
|
|
|
|
return unmarshaller.unmarshal(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static JAXBContext getInstance(@NotNull String pakage) throws JAXBException {
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2011-04-08 17:53:32 -03:00
|
|
|
JAXBContext result = context.get(pakage);
|
|
|
|
if (result == null) {
|
|
|
|
synchronized (context) {
|
|
|
|
result = JAXBContext.newInstance(pakage);
|
|
|
|
context.put(pakage, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
2009-06-07 18:59:43 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-07-03 12:13:31 -03:00
|
|
|
public static void saveMap(@NotNull Object obj, @NotNull OutputStream out, String packag) throws JAXBException {
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2011-07-03 12:13:31 -03:00
|
|
|
final JAXBContext context = getInstance(packag);
|
2011-04-08 17:53:32 -03:00
|
|
|
final Marshaller marshaller = context.createMarshaller();
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2011-04-08 17:53:32 -03:00
|
|
|
marshaller.marshal(obj, out);
|
2009-06-07 18:59:43 +00:00
|
|
|
}
|
|
|
|
}
|