Skip to content

javanthropus/io-like

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IO::Like - in the Likeness of IO

A composable implementation of IO methods.

LINKS

DESCRIPTION

This gem makes it possible to build filters or pipelines for processing data into or out of streams of bytes while maintaining compatibility with native Ruby IO classes. Ruby IO classes may function as both sources and sinks, or entirely new IO implementations may be created.

FEATURES

  • All standard Ruby 2.7 to 3.4 IO methods
  • Primitive IO interfaces to facilitate creating IO filters/pipelines

KNOWN BUGS/LIMITATIONS

  • None at this time

SYNOPSIS

More examples can be found in the examples directory of the source distribution.

A simple ROT13 codec:

require 'io/like'
require 'io/like_helpers/delegated_io'
require 'io/like_helpers/io_wrapper'

include IO::LikeHelpers

class ROT13IO < IO::Like
  def initialize(delegate, autoclose: true, **kwargs)
    delegate = delegate.rot13_filter if self.class === delegate
    @rot13_filter = ROT13Filter.new(delegate, autoclose: autoclose)

    super(@rot13_filter, autoclose: true, **kwargs)
  end

  protected

  def rot13_filter
    flush if writable?
    @rot13_filter
  end
end

class ROT13Filter < DelegatedIO
  def initialize(delegate, autoclose: true, **kwargs)
    if IO === delegate
      delegate = IOWrapper.new(delegate, autoclose: autoclose)
      autoclose = true
    end

    super(delegate, autoclose: autoclose, **kwargs)
  end

  def read(length, buffer: nil, buffer_offset: 0)
    result = super
    if buffer.nil?
      encode_rot13(result)
    else
      encode_rot13(buffer, buffer_offset: buffer_offset)
    end
    result
  end

  def write(buffer, length: buffer.bytesize)
    super(encode_rot13(buffer[0, length]), length: length)
  end

  private

  def encode_rot13(buffer, buffer_offset: 0)
    buffer_offset.upto(buffer.length - 1) do |i|
      ord = buffer[i].ord
      case ord
      when 65..90
        buffer[i] = ((ord - 52) % 26 + 65).chr
      when 97..122
        buffer[i] = ((ord - 84) % 26 + 97).chr
      end
    end
    buffer
  end
end

if $0 == __FILE__
  # Write encoded content to stdout, leaving stdout open after completion.
  ROT13IO.open(STDOUT, autoclose: false) do |rot13|
    rot13.puts('This is a test. 1234!')   # -> Guvf vf n grfg. 1234!
  end

  # Decode content from an input stream and read as lines.
  IO.pipe do |r, w|
    w.puts('This is a test. 1234!')
    w.puts('Guvf vf n grfg. 4567!')
    w.close
    ROT13IO.open(r) do |rot13|
      puts(rot13.each_line.to_a.inspect)  # -> ["Guvf vf n grfg. 1234!\n", "This is a test. 4567!\n"]
    end
  end

  # Double decode content (noop) and dump to stdout using IO.copy_stream.
  IO.pipe do |r, w|
    w.puts('This is a test. 1234!')
    w.close
    ROT13IO.open(r) do |rot13|
      ROT13IO.open(rot13) do |rot26|
        IO.copy_stream(rot26, STDOUT)     # -> This is a test. 1234!
      end
    end
  end
end

# vim: ts=2 sw=2 et

REQUIREMENTS

  • None

INSTALL

$ gem install io-like

DEVELOPERS

After checking out the source, run:

$ bundle install
$ bundle exec rake test yard

This will install all dependencies, run the tests/specs, and generate the documentation.

AUTHORS and CONTRIBUTORS

Thanks to all contributors. Without your help this project would not exist.

CONTRIBUTING

Contributions for bug fixes, documentation, extensions, tests, etc. are encouraged.

  1. Clone the repository.
  2. Fix a bug or add a feature.
  3. Add tests for the fix or feature.
  4. Make a pull request.

CODING STYLE

The following points are not necessarily set in stone but should rather be used as a good guideline. Consistency is the goal of coding style, and changes will be more easily accepted if they are consistent with the rest of the code.

  • File Encoding
    • UTF-8
  • Indentation
    • Two spaces; no tabs
  • Line length
    • Limit lines to a maximum of 80 characters
  • Comments
    • Document classes, attributes, methods, and code
  • Method Calls with Arguments
    • Use a_method(arg, arg, etc); not a_method( arg, arg, etc ), a_method arg, arg, etc, or any other variation
  • Method Calls without Arguments
    • Use a_method; avoid parenthesis
  • String Literals
    • Use single quotes by default
    • Use double quotes when interpolation is necessary
    • Use %{...} and similar when embedding the quoting character is cumbersome
  • Blocks
    • do ... end for multi-line blocks and { ... } for single-line blocks
  • Boolean Operators
    • Use && and || for boolean tests; avoid and and or
  • In General
    • Try to follow the flow and style of the rest of the code

LICENSE

(The MIT License)

Copyright (c) 2024 Jeremy Bopp

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

RUBYSPEC LICENSE

Files under the rubyspec directory are copied in whole from the Rubyspec project.

Copyright (c) 2008 Engine Yard, Inc. All rights reserved.

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

About

A Ruby module which provides the interface of IO objects to classes providing a few simple methods.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 41