
rapture.io.io.scala Maven / Gradle / Ivy
/*
Rapture, version 2.0.0. Copyright 2010-2016 Jon Pretty, Propensive Ltd.
The primary distribution site is
http://rapture.io/
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 rapture.io
import rapture.core._
import java.io._
import language.reflectiveCalls
object javaResources {
type StructuralReadable = { def getInputStream(): InputStream }
type StructuralWritable = { def getOutputStream(): OutputStream }
implicit val structuralReader =
new JavaInputStreamReader[StructuralReadable](_.getInputStream())
implicit val structuralWriter =
new JavaOutputStreamWriter[StructuralWritable](_.getOutputStream())
implicit val javaFileReader = new JavaInputStreamReader[java.io.File](
new java.io.FileInputStream(_))
implicit val javaNioPathReader = new JavaInputStreamReader[java.nio.file.Path](
java.nio.file.Files.newInputStream(_))
implicit val javaFileWriter = new JavaOutputStreamWriter[java.io.File](
new java.io.FileOutputStream(_))
implicit val javaFileAppender = new JavaOutputAppender[java.io.File](f =>
alloc[java.io.FileOutputStream](f, true))
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy