Class: LZMA::Stream

Inherits:
Object
  • Object
show all
Defined in:
lib/extlzma2/stream.rb,
ext/extlzma2/stream.c

Direct Known Subclasses

AutoDecoder, Decoder, Encoder, RawDecoder, RawEncoder

Defined Under Namespace

Classes: AutoDecoder, Decoder, Encoder, RawDecoder, RawEncoder

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.auto_decoder(*args) ⇒ Object



25
26
27
# File 'lib/extlzma2/stream.rb', line 25

def self.auto_decoder(*args)
  AutoDecoder.new(*args)
end

.decoder(*args) ⇒ Object



15
16
17
18
19
20
21
22
23
# File 'lib/extlzma2/stream.rb', line 15

def self.decoder(*args)
  if args.empty?
    Decoder.new(Filter::LZMA2.new(LZMA::PRESET_DEFAULT))
  elsif args.size == 1 && args[0].is_a?(Numeric)
    Decoder.new(Filter::LZMA2.new(args[0]))
  else
    Decoder.new(*args)
  end
end

.encoder(*args, **opts) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/extlzma2/stream.rb', line 5

def self.encoder(*args, **opts)
  if args.empty?
    Encoder.new(Filter::LZMA2.new(LZMA::PRESET_DEFAULT), **opts)
  elsif args.size == 1 && args[0].is_a?(Numeric)
    Encoder.new(Filter::LZMA2.new(args[0]), **opts)
  else
    Encoder.new(*args, **opts)
  end
end

.raw_decoder(*args) ⇒ Object



39
40
41
42
43
44
45
46
47
# File 'lib/extlzma2/stream.rb', line 39

def self.raw_decoder(*args)
  if args.empty?
    RawDecoder.new(Filter::LZMA2.new(LZMA::PRESET_DEFAULT))
  elsif args.size == 1 && args[0].is_a?(Numeric)
    RawDecoder.new(Filter::LZMA2.new(args[0]))
  else
    RawDecoder.new(*args)
  end
end

.raw_encoder(*args) ⇒ Object



29
30
31
32
33
34
35
36
37
# File 'lib/extlzma2/stream.rb', line 29

def self.raw_encoder(*args)
  if args.empty?
    RawEncoder.new(Filter::LZMA2.new(LZMA::PRESET_DEFAULT))
  elsif args.size == 1 && args[0].is_a?(Numeric)
    RawEncoder.new(Filter::LZMA2.new(args[0]))
  else
    RawEncoder.new(*args)
  end
end

Instance Method Details

#code(src, dest, maxdest, action) ⇒ Object

lzma_code を用いて、圧縮/伸長処理を行います。

RETURN

lzma_code が返す整数値をそのまま返します。

src

処理前のバイナリデータが格納された文字列オブジェクトを与えます。

このオブジェクトは変更されます。

処理された部分が取り除かれます (処理されなかった部分が残ります)。

dest

処理後のバイナリデータを格納する文字列オブジェクトを与えます。

maxdest

dest の最大処理バイト数を与えます。

action

lzma_codeaction 引数に渡される整数値です。



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'ext/extlzma2/stream.c', line 107

static VALUE stream_code(VALUE stream, VALUE src, VALUE dest, VALUE maxdest, VALUE action)
{
    lzma_stream *p = getstream(stream);

    if (NIL_P(src))
    {
        p->next_in = NULL;
        p->avail_in = 0;
    }
    else
    {
        rb_check_type(src, RUBY_T_STRING);
        rb_str_modify(src);
        p->next_in = (uint8_t *)RSTRING_PTR(src);
        p->avail_in = RSTRING_LEN(src);
    }

    size_t maxdestn = NUM2SIZET(maxdest);
    rb_check_type(dest, RUBY_T_STRING);
    aux_str_reserve(dest, maxdestn);
    p->next_out = (uint8_t *)RSTRING_PTR(dest);
    p->avail_out = maxdestn;

    lzma_action act = NUM2INT(action);

    lzma_ret s = aux_lzma_code(p, act);

    if (p->next_in)
    {
        size_t srcrest = p->avail_in;
        memmove(RSTRING_PTR(src), p->next_in, srcrest);
        rb_str_set_len(src, srcrest);
    }

    rb_str_set_len(dest, maxdestn - p->avail_out);

    return UINT2NUM(s);
}