1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- * Copyright 2010-2011 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * 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.
- */
- package com.sdyc.ndmp.protobuf.serializer;
- import java.io.*;
- /**
- * Java Serialization Redis serializer.
- * Delegates to the default (Java based) serializer input Spring 3.
- *
- * @author Mark Pollack
- * @author Costin Leau
- */
- public class JdkSerializer implements Serializer<Serializable> {
- private static final long serialVersionUID = 1L;
- public JdkSerializer() {
- }
- @Override
- public Serializable deserialize(byte[] bytes) {
- try {
- ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(bytes));
- Serializable o = (Serializable)in.readObject();
- in.close();
- return o;
- } catch (Exception ex) {
- throw new IllegalArgumentException("Cannot deserialize", ex);
- }
- }
- @Override
- public byte[] serialize(Serializable object) {
- if (object == null) {
- return new byte[0];
- }
- try {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- ObjectOutputStream outputStream = new ObjectOutputStream(out);
- outputStream.writeObject(object);
- outputStream.flush();
- outputStream.close();
- return out.toByteArray();
- } catch (Exception ex) {
- throw new IllegalArgumentException("Cannot serialize", ex);
- }
- }
- }
|