Coverage Report - org.apache.any23.source.ByteArrayDocumentSource
 
Classes in this File Line Coverage Branch Coverage Complexity
ByteArrayDocumentSource
0%
0/12
N/A
1
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 3  
  * contributor license agreements.  See the NOTICE file distributed with
 4  
  * this work for additional information regarding copyright ownership.
 5  
  * The ASF licenses this file to You under the Apache License, Version 2.0
 6  
  * (the "License"); you may not use this file except in compliance with
 7  
  * the License.  You may obtain a copy of the License at
 8  
  *
 9  
  *  http://www.apache.org/licenses/LICENSE-2.0
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 
 18  
 package org.apache.any23.source;
 19  
 
 20  
 import java.io.ByteArrayInputStream;
 21  
 import java.io.IOException;
 22  
 import java.io.InputStream;
 23  
 
 24  
 /**
 25  
  * ByteArray implementation of {@link DocumentSource}.
 26  
  * @author Richard Cyganiak (richard@cyganiak.de)
 27  
  */
 28  
 public class ByteArrayDocumentSource implements DocumentSource {
 29  
 
 30  
     private final byte[] bytes;
 31  
 
 32  
     private final String documentURI;
 33  
 
 34  
     private final String contentType;
 35  
 
 36  0
     public ByteArrayDocumentSource(byte[] bytes, String documentURI, String contentType) {
 37  0
         this.bytes = bytes;
 38  0
         this.documentURI = documentURI;
 39  0
         this.contentType = contentType;
 40  0
     }
 41  
 
 42  
     public ByteArrayDocumentSource(InputStream inputStream, String documentURI, String contentType)
 43  
     throws IOException {
 44  0
         this(MemCopyFactory.toByteArray(inputStream), documentURI, contentType);
 45  0
     }
 46  
 
 47  
     public InputStream openInputStream() throws IOException {
 48  0
         return new ByteArrayInputStream(bytes);
 49  
     }
 50  
 
 51  
     public long getContentLength() {
 52  0
         return bytes.length;
 53  
     }
 54  
 
 55  
     public String getDocumentURI() {
 56  0
         return documentURI;
 57  
     }
 58  
 
 59  
     public String getContentType() {
 60  0
         return contentType;
 61  
     }
 62  
 
 63  
     public boolean isLocal() {
 64  0
         return true;
 65  
     }
 66  
     
 67  
 }