| /* |
| * Copyright (C) 2013 The Android Open Source Project |
| * |
| * 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.android.documentsui.base; |
| |
| import static com.android.documentsui.base.SharedMinimal.TAG; |
| |
| import android.os.BadParcelableException; |
| import android.os.Parcel; |
| import android.util.Log; |
| |
| import java.io.ByteArrayInputStream; |
| import java.io.ByteArrayOutputStream; |
| import java.io.DataInputStream; |
| import java.io.DataOutputStream; |
| import java.io.IOException; |
| |
| public class DurableUtils { |
| public static <D extends Durable> byte[] writeToArray(D d) throws IOException { |
| final ByteArrayOutputStream out = new ByteArrayOutputStream(); |
| d.write(new DataOutputStream(out)); |
| return out.toByteArray(); |
| } |
| |
| public static <D extends Durable> D readFromArray(byte[] data, D d) throws IOException { |
| if (data == null) throw new IOException("Missing data"); |
| final ByteArrayInputStream in = new ByteArrayInputStream(data); |
| d.reset(); |
| try { |
| d.read(new DataInputStream(in)); |
| } catch (IOException e) { |
| d.reset(); |
| throw e; |
| } |
| return d; |
| } |
| |
| public static <D extends Durable> byte[] writeToArrayOrNull(D d) { |
| try { |
| return writeToArray(d); |
| } catch (IOException e) { |
| Log.w(TAG, "Failed to write", e); |
| return null; |
| } |
| } |
| |
| public static <D extends Durable> D readFromArrayOrNull(byte[] data, D d) { |
| try { |
| return readFromArray(data, d); |
| } catch (IOException e) { |
| Log.w(TAG, "Failed to read", e); |
| return null; |
| } |
| } |
| |
| public static <D extends Durable> void writeToParcel(Parcel parcel, D d) { |
| try { |
| parcel.writeByteArray(writeToArray(d)); |
| } catch (IOException e) { |
| throw new BadParcelableException(e); |
| } |
| } |
| |
| public static <D extends Durable> D readFromParcel(Parcel parcel, D d) { |
| try { |
| return readFromArray(parcel.createByteArray(), d); |
| } catch (IOException e) { |
| throw new BadParcelableException(e); |
| } |
| } |
| |
| public static void writeNullableString(DataOutputStream out, String value) throws IOException { |
| if (value != null) { |
| out.write(1); |
| out.writeUTF(value); |
| } else { |
| out.write(0); |
| } |
| } |
| |
| public static String readNullableString(DataInputStream in) throws IOException { |
| if (in.read() != 0) { |
| return in.readUTF(); |
| } else { |
| return null; |
| } |
| } |
| } |