/* * Copyright 2008 CoreMedia AG, Hamburg * * 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.coremedia.iso; import com.coremedia.iso.boxes.Box; import com.coremedia.iso.boxes.MovieBox; import com.googlecode.mp4parser.BasicContainer; import com.googlecode.mp4parser.DataSource; import com.googlecode.mp4parser.FileDataSourceImpl; import com.googlecode.mp4parser.annotations.DoNotParseDetail; import com.googlecode.mp4parser.util.Logger; import java.io.Closeable; import java.io.File; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.nio.channels.WritableByteChannel; /** * The most upper container for ISO Boxes. It is a container box that is a file. * Uses IsoBufferWrapper to access the underlying file. */ @DoNotParseDetail public class IsoFile extends BasicContainer implements Closeable { private static Logger LOG = Logger.getLogger(IsoFile.class); /** * Shortcut constructor that creates a <code>DataSource</code> from the * given filename and pass it to the {@link IsoFile#IsoFile(DataSource)} * constructor. * * @param filename of the MP4 file to be parsed * @throws IOException in case I/O error */ public IsoFile(String filename) throws IOException { this(new FileDataSourceImpl(new File(filename))); } /** * @param dataSource the data source * @throws IOException in case I/O error */ public IsoFile(DataSource dataSource) throws IOException { this(dataSource, new PropertyBoxParserImpl()); } public IsoFile(DataSource dataSource, BoxParser boxParser) throws IOException { parseContainer(dataSource, dataSource.size(), boxParser); } public String toString() { StringBuilder buffer = new StringBuilder(); buffer.append("IsoFile[").append(dataSource.toString()).append("]"); return buffer.toString(); } public static byte[] fourCCtoBytes(String fourCC) { byte[] result = new byte[4]; if (fourCC != null) { for (int i = 0; i < Math.min(4, fourCC.length()); i++) { result[i] = (byte) fourCC.charAt(i); } } return result; } public static String bytesToFourCC(byte[] type) { byte[] result = new byte[]{0, 0, 0, 0}; if (type != null) { System.arraycopy(type, 0, result, 0, Math.min(type.length, 4)); } try { return new String(result, "ISO-8859-1"); } catch (UnsupportedEncodingException e) { throw new Error("Required character encoding is missing", e); } } public long getSize() { return getContainerSize(); } /** * Shortcut to get the MovieBox since it is often needed and present in * nearly all ISO 14496 files (at least if they are derived from MP4 ). * * @return the MovieBox or <code>null</code> */ public MovieBox getMovieBox() { for (Box box : getBoxes()) { if (box instanceof MovieBox) { return (MovieBox) box; } } return null; } public void getBox(WritableByteChannel os) throws IOException { writeContainer(os); } public void close() throws IOException { this.dataSource.close(); } }