/* * Copyright (C) 2013 Chen Hui <calmer91@gmail.com> * * 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 master.flame.danmaku.danmaku.parser.android; import master.flame.danmaku.danmaku.parser.IDataSource; import master.flame.danmaku.danmaku.util.IOUtils; import android.net.Uri; import android.util.Log; import java.io.*; import java.net.MalformedURLException; import java.net.URL; public class AndroidFileSource implements IDataSource<InputStream> { private InputStream inStream; public AndroidFileSource(String filepath) { fillStreamFromFile(new File(filepath)); } public AndroidFileSource(Uri uri) { fillStreamFromUri(uri); } public AndroidFileSource(File file) { fillStreamFromFile(file); } public AndroidFileSource(InputStream stream) { this.inStream = stream; } public void fillStreamFromFile(File file) { try { inStream = new BufferedInputStream(new FileInputStream(file)); } catch (FileNotFoundException e) { e.printStackTrace(); } } public void fillStreamFromUri(Uri uri) { String scheme = uri.getScheme(); if (SCHEME_HTTP_TAG.equalsIgnoreCase(scheme) || SCHEME_HTTPS_TAG.equalsIgnoreCase(scheme)) { fillStreamFromHttpFile(uri); } else if (SCHEME_FILE_TAG.equalsIgnoreCase(scheme)) { fillStreamFromFile(new File(uri.getPath())); } } public void fillStreamFromHttpFile(Uri uri) { try { Log.d("wink", "----》"+uri.toString()); URL url = new URL(uri.getPath()); url.openConnection(); inStream = new BufferedInputStream(url.openStream()); } catch (MalformedURLException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } @Override public void release() { IOUtils.closeQuietly(inStream); inStream = null; } @Override public InputStream data() { return inStream; } }