rio 0.3.8 → 0.3.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (223) hide show
  1. data/README +18 -12
  2. data/Rakefile +57 -87
  3. data/build_doc.rb +19 -17
  4. data/doc/ANNOUNCE +3 -32
  5. data/doc/RELEASE_NOTES +4 -5
  6. data/doc/RIOIS +215 -0
  7. data/doc/generators/template/html/rio.css +428 -0
  8. data/doc/generators/template/html/rio.rb +18 -389
  9. data/doc/generators/template/html/ugly.rb +130 -0
  10. data/doc/pkg_def.rb +66 -0
  11. data/ex/catcsv.rb +64 -0
  12. data/ex/colx.rb +8 -0
  13. data/ex/findinruby +15 -0
  14. data/ex/findruby +14 -0
  15. data/ex/passwd_report.rb +8 -0
  16. data/ex/prompt.rb +25 -0
  17. data/ex/rgb.txt.gz +0 -0
  18. data/ex/riocat +42 -0
  19. data/ex/riogunzip +31 -0
  20. data/ex/riogzip +24 -0
  21. data/ex/rioprompt.rb +10 -0
  22. data/ex/targz2zip +17 -0
  23. data/ex/tonl +10 -0
  24. data/lib/rio.rb +16 -10
  25. data/lib/rio/abstract_method.rb +3 -4
  26. data/lib/rio/argv.rb +3 -4
  27. data/lib/rio/arycopy.rb +3 -4
  28. data/lib/rio/assert.rb +3 -4
  29. data/lib/rio/base.rb +3 -4
  30. data/lib/rio/callstr.rb +3 -4
  31. data/lib/rio/const.rb +3 -4
  32. data/lib/rio/construct.rb +3 -4
  33. data/lib/rio/constructor.rb +12 -8
  34. data/lib/rio/context.rb +15 -30
  35. data/lib/rio/context/autoclose.rb +3 -4
  36. data/lib/rio/context/copying.rb +3 -4
  37. data/lib/rio/context/cxx.rb +3 -4
  38. data/lib/rio/context/dir.rb +3 -4
  39. data/lib/rio/context/gzip.rb +3 -4
  40. data/lib/rio/context/methods.rb +16 -5
  41. data/lib/rio/context/skip.rb +3 -4
  42. data/lib/rio/context/stream.rb +42 -5
  43. data/lib/rio/cp.rb +7 -7
  44. data/lib/rio/def.rb +3 -4
  45. data/lib/rio/dir.rb +3 -4
  46. data/lib/rio/doc.rb +4 -5
  47. data/lib/rio/doc/EXAMPLES.rb +299 -0
  48. data/lib/rio/doc/HOWTO.rb +3 -4
  49. data/lib/rio/doc/INTRO.rb +86 -105
  50. data/lib/rio/doc/OPTIONAL.rb +4 -5
  51. data/lib/rio/doc/SYNOPSIS.rb +7 -6
  52. data/lib/rio/entrysel.rb +21 -23
  53. data/lib/rio/exception.rb +3 -4
  54. data/lib/rio/exception/copy.rb +3 -4
  55. data/lib/rio/exception/notimplemented.rb +57 -0
  56. data/lib/rio/exception/notsupported.rb +3 -4
  57. data/lib/rio/exception/open.rb +3 -4
  58. data/lib/rio/exception/state.rb +3 -4
  59. data/lib/rio/ext.rb +47 -13
  60. data/lib/rio/ext/csv.rb +4 -5
  61. data/lib/rio/ext/if.rb +45 -0
  62. data/lib/rio/ext/mp3info.rb +80 -0
  63. data/lib/rio/ext/splitlines.rb +253 -0
  64. data/lib/rio/ext/yaml.rb +9 -5
  65. data/lib/rio/ext/yaml/doc.rb +133 -0
  66. data/lib/rio/ext/yaml/tie.rb +149 -0
  67. data/lib/rio/ext/zipfile.rb +23 -4
  68. data/lib/rio/ext/zipfile/fs.rb +116 -0
  69. data/lib/rio/ext/zipfile/rl.rb +251 -0
  70. data/lib/rio/ext/zipfile/rootdir.rb +117 -0
  71. data/lib/rio/ext/zipfile/state.rb +161 -0
  72. data/lib/rio/ext/zipfile/wrap.rb +204 -0
  73. data/lib/rio/factory.rb +235 -27
  74. data/lib/rio/file.rb +4 -4
  75. data/lib/rio/filter.rb +3 -4
  76. data/lib/rio/filter/closeoneof.rb +3 -4
  77. data/lib/rio/filter/gzip.rb +9 -4
  78. data/lib/rio/fs/base.rb +3 -4
  79. data/lib/rio/fs/impl.rb +4 -5
  80. data/lib/rio/fs/native.rb +3 -4
  81. data/lib/rio/fs/stream.rb +3 -4
  82. data/lib/rio/fs/url.rb +3 -4
  83. data/lib/rio/ftp/conncache.rb +19 -5
  84. data/lib/rio/ftp/dir.rb +3 -4
  85. data/lib/rio/ftp/fs.rb +30 -24
  86. data/lib/rio/grande.rb +27 -7
  87. data/lib/rio/handle.rb +3 -4
  88. data/lib/rio/if.rb +19 -15
  89. data/lib/rio/if/basic.rb +7 -7
  90. data/lib/rio/if/csv.rb +5 -6
  91. data/lib/rio/if/dir.rb +120 -114
  92. data/lib/rio/if/file.rb +52 -44
  93. data/lib/rio/if/fileordir.rb +217 -211
  94. data/lib/rio/if/grande.rb +674 -644
  95. data/lib/rio/if/grande_entry.rb +321 -313
  96. data/lib/rio/if/grande_stream.rb +653 -553
  97. data/lib/rio/if/internal.rb +3 -4
  98. data/lib/rio/if/path.rb +425 -426
  99. data/lib/rio/if/rubyio.rb +681 -0
  100. data/lib/rio/if/string.rb +42 -5
  101. data/lib/rio/if/temp.rb +3 -4
  102. data/lib/rio/if/test.rb +245 -238
  103. data/lib/rio/if/yaml.rb +15 -41
  104. data/lib/rio/ioh.rb +7 -5
  105. data/lib/rio/iomode.rb +19 -7
  106. data/lib/rio/ios/fail.rb +4 -5
  107. data/lib/rio/ios/generic.rb +4 -5
  108. data/lib/rio/ios/mode.rb +4 -5
  109. data/lib/rio/ios/null.rb +6 -7
  110. data/lib/rio/iowrap.rb +3 -4
  111. data/lib/rio/kernel.rb +3 -5
  112. data/lib/rio/local.rb +3 -4
  113. data/lib/rio/match.rb +3 -4
  114. data/lib/rio/matchrecord.rb +3 -4
  115. data/lib/rio/no_warn.rb +3 -4
  116. data/lib/rio/nullio.rb +3 -4
  117. data/lib/rio/open3.rb +4 -5
  118. data/lib/rio/ops/construct.rb +3 -4
  119. data/lib/rio/ops/create.rb +11 -6
  120. data/lib/rio/ops/dir.rb +19 -8
  121. data/lib/rio/ops/either.rb +6 -5
  122. data/lib/rio/ops/file.rb +3 -4
  123. data/lib/rio/ops/path.rb +14 -35
  124. data/lib/rio/ops/stream.rb +3 -4
  125. data/lib/rio/ops/stream/input.rb +4 -7
  126. data/lib/rio/ops/stream/output.rb +3 -4
  127. data/lib/rio/ops/stream/read.rb +6 -5
  128. data/lib/rio/ops/stream/write.rb +3 -4
  129. data/lib/rio/ops/symlink.rb +3 -4
  130. data/lib/rio/path.rb +22 -18
  131. data/lib/rio/path/reset.rb +4 -5
  132. data/lib/rio/piper.rb +3 -4
  133. data/lib/rio/piper/cp.rb +3 -4
  134. data/lib/rio/prompt.rb +10 -5
  135. data/lib/rio/rectype.rb +5 -5
  136. data/lib/rio/rl/base.rb +17 -71
  137. data/lib/rio/rl/builder.rb +14 -38
  138. data/lib/rio/rl/chmap.rb +66 -0
  139. data/lib/rio/rl/fs2url.rb +82 -0
  140. data/lib/rio/rl/ioi.rb +4 -4
  141. data/lib/rio/rl/path.rb +44 -122
  142. data/lib/rio/rl/pathmethods.rb +19 -8
  143. data/lib/rio/rl/uri.rb +137 -60
  144. data/lib/rio/rl/withpath.rb +295 -0
  145. data/lib/rio/scheme/aryio.rb +3 -4
  146. data/lib/rio/scheme/cmdio.rb +3 -4
  147. data/lib/rio/scheme/cmdpipe.rb +4 -4
  148. data/lib/rio/scheme/fd.rb +3 -4
  149. data/lib/rio/scheme/ftp.rb +7 -7
  150. data/lib/rio/scheme/http.rb +4 -5
  151. data/lib/rio/scheme/null.rb +3 -4
  152. data/lib/rio/scheme/path.rb +3 -4
  153. data/lib/rio/scheme/stderr.rb +3 -4
  154. data/lib/rio/scheme/stdio.rb +3 -4
  155. data/lib/rio/scheme/strio.rb +3 -4
  156. data/lib/rio/scheme/sysio.rb +3 -4
  157. data/lib/rio/scheme/tcp.rb +3 -4
  158. data/lib/rio/scheme/temp.rb +6 -6
  159. data/lib/rio/state.rb +18 -46
  160. data/lib/rio/state/error.rb +3 -4
  161. data/lib/rio/stream.rb +4 -4
  162. data/lib/rio/stream/base.rb +3 -4
  163. data/lib/rio/stream/duplex.rb +3 -4
  164. data/lib/rio/stream/open.rb +3 -8
  165. data/lib/rio/symantics.rb +3 -4
  166. data/lib/rio/tempdir.rb +2 -2
  167. data/lib/rio/to_rio.rb +3 -4
  168. data/lib/rio/to_rio/all.rb +3 -4
  169. data/lib/rio/to_rio/array.rb +4 -5
  170. data/lib/rio/to_rio/io.rb +4 -5
  171. data/lib/rio/to_rio/object.rb +4 -5
  172. data/lib/rio/to_rio/string.rb +4 -5
  173. data/lib/rio/uri/file.rb +41 -5
  174. data/lib/rio/util.rb +3 -4
  175. data/lib/rio/version.rb +4 -5
  176. data/setup.rb +368 -339
  177. data/test/bin/list_dir.rb +1 -1
  178. data/test/ftp/anon_misc.rb +13 -1
  179. data/test/ftp/anon_special.rb +6 -6
  180. data/test/ftp/anon_write.rb +10 -3
  181. data/test/ftp/ftp2ftp.rb +2 -2
  182. data/test/ftp/testdef.rb +9 -6
  183. data/test/http/all.rb +3 -0
  184. data/test/http/copy-from-http.rb +140 -0
  185. data/test/lib/temp_server.rb +44 -0
  186. data/test/runalltests.rb +3 -1
  187. data/test/runhttp.rb +12 -0
  188. data/test/runhttptests.rb +1 -1
  189. data/test/runtests.rb +41 -3
  190. data/test/tc/abs.rb +9 -5
  191. data/test/tc/all.rb +9 -4
  192. data/test/tc/base.rb +1 -1
  193. data/test/tc/base2.rb +87 -0
  194. data/test/tc/{methods.rb → clone.rb} +72 -50
  195. data/test/tc/closeoncopy.rb +13 -2
  196. data/test/tc/copy-dir-samevar.rb +91 -0
  197. data/test/tc/dir_iter.rb +0 -1
  198. data/test/tc/empty.rb +6 -2
  199. data/test/tc/expand_path.rb +36 -54
  200. data/test/tc/ext.rb +42 -18
  201. data/test/tc/gzip.rb +30 -3
  202. data/test/tc/likeio.rb +5 -1
  203. data/test/tc/line_record_row.rb +51 -0
  204. data/test/tc/noqae.rb +71 -70
  205. data/test/tc/path_parts.rb +175 -0
  206. data/test/tc/programs_util.rb +3 -3
  207. data/test/tc/rename.rb +4 -5
  208. data/test/tc/riorl.rb +9 -7
  209. data/test/tc/skip.rb +35 -6
  210. data/test/tc/skiplines.rb +34 -5
  211. data/test/tc/split.rb +8 -50
  212. data/test/tc/splitlines.rb +65 -0
  213. data/test/tc/splitpath.rb +83 -0
  214. data/test/tc/testcase.rb +1 -1
  215. data/test/tc/truncate.rb +39 -0
  216. data/test/tc/yaml.rb +9 -8
  217. metadata +261 -207
  218. data/ChangeLog +0 -1418
  219. data/VERSION +0 -1
  220. data/lib/rio/doc/MISC.rb +0 -259
  221. data/lib/rio/if/stream.rb +0 -680
  222. data/lib/rio/impl/path.rb +0 -87
  223. data/test/tc/copy-from-http.rb +0 -89
@@ -0,0 +1,133 @@
1
+ #--
2
+ # ===============================================================================
3
+ # Copyright (c) 2005,2006,2007 Christopher Kleckner
4
+ # All rights reserved
5
+ #
6
+ # This file is part of the Rio library for ruby.
7
+ #
8
+ # Rio is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # Rio is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with Rio; if not, write to the Free Software
20
+ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
+ # ===============================================================================
22
+ #++
23
+ #
24
+ # To create the documentation for Rio run the command
25
+ # ruby build_doc.rb
26
+ # from the distribution directory.
27
+ #
28
+ # Suggested Reading
29
+ # * RIO::Doc::SYNOPSIS
30
+ # * RIO::Doc::INTRO
31
+ # * RIO::Doc::HOWTO
32
+ # * RIO::Doc::EXAMPLES
33
+ # * RIO::Rio
34
+ #
35
+
36
+
37
+ require 'rio/ops/path'
38
+ require 'rio/ops/dir'
39
+ require 'rio/filter/closeoneof'
40
+ require 'rio/ioh'
41
+ module RIO
42
+ module Ext
43
+ module YAML
44
+ module Doc #:nodoc: all
45
+ class Base < State::Base
46
+ include Ops::Path::Str
47
+ def open?() !ioh.nil? end
48
+ end
49
+
50
+ class NonExisting < Base
51
+ def check?() not self.exist? end
52
+ def when_missing(sym,*args) gofigure(sym,*args) end
53
+ end
54
+
55
+ class Existing < Base
56
+
57
+ def check?() self.file? end
58
+ def when_missing(sym,*args) yopen() end
59
+
60
+ public
61
+
62
+ def yopen()
63
+ become 'Ext::YAML::Doc::Open'
64
+ end
65
+ end
66
+ class Open < Base
67
+ def check?() true end
68
+ def open(m=nil,*args) open_(*args) end
69
+ def open_(*args)
70
+ unless open?
71
+ self.ioh = RIO::Ext::YAML::Tie::Doc.new(self.fspath).open
72
+ end
73
+ self
74
+ end
75
+ def when_missing(sym,*args)
76
+ nobj = open_.ystream()
77
+ return nobj unless nobj.nil?
78
+ gofigure(sym,*args)
79
+ end
80
+
81
+ def ystream()
82
+ #cl = 'Dir::Stream'
83
+ #p "LOOP: retry: #{cx['retrystate'].inspect} => #{cl}"
84
+ #return nil if cx['retrystate'] == cl
85
+ #cx['retrystate'] = cl
86
+
87
+ become('Ext::YAML::Doc::Stream')
88
+ end
89
+ end
90
+ class Stream < Base
91
+ def check?() open? end
92
+ def when_missing(sym,*args) retryreset() end
93
+ def base_state() 'Ext::YAML::Doc::Close' end
94
+ def reset() self.close.softreset() end
95
+ alias :copyclose :reset
96
+ def doc() self.ioh end
97
+ def [](arg)
98
+ doc[arg]
99
+ end
100
+ end
101
+ class Close < Base
102
+
103
+ def close()
104
+ #p callstr('close')+" mode='#{mode?}' ioh=#{self.ioh} open?=#{open?}"
105
+ return self unless self.open?
106
+ self.close_
107
+ cx['retrystate'] = nil
108
+ self
109
+ end
110
+
111
+ def close_()
112
+ #p callstr('close_')+" ioh=#{self.ioh} open?=#{open?}"
113
+ return self unless self.open?
114
+ #self.clear_selection
115
+ self.ioh.close
116
+ self.ioh = nil
117
+ self.rl.close
118
+ self
119
+ end
120
+ protected :close_
121
+
122
+ def check?() true end
123
+ def when_missing(sym,*args)
124
+ # p callstr('when_missing',sym,*args)
125
+ self.close_.retryreset()
126
+ end
127
+ end
128
+
129
+
130
+ end
131
+ end
132
+ end
133
+ end # module RIO
@@ -0,0 +1,149 @@
1
+ #--
2
+ # ===============================================================================
3
+ # Copyright (c) 2005,2006,2007 Christopher Kleckner
4
+ # All rights reserved
5
+ #
6
+ # This file is part of the Rio library for ruby.
7
+ #
8
+ # Rio is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # Rio is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with Rio; if not, write to the Free Software
20
+ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
+ # ===============================================================================
22
+ #++
23
+ #
24
+ # To create the documentation for Rio run the command
25
+ # ruby build_doc.rb
26
+ # from the distribution directory.
27
+ #
28
+ # Suggested Reading
29
+ # * RIO::Doc::SYNOPSIS
30
+ # * RIO::Doc::INTRO
31
+ # * RIO::Doc::HOWTO
32
+ # * RIO::Doc::EXAMPLES
33
+ # * RIO::Rio
34
+ #
35
+
36
+
37
+ require 'yaml'
38
+ require 'forwardable'
39
+ require 'delegate'
40
+
41
+ module RIO
42
+ module Ext
43
+ module YAML #:nodoc: all
44
+ module Tie
45
+ class Doc
46
+ extend Forwardable
47
+ def initialize(fn)
48
+ @filename = fn
49
+ @io = nil
50
+ @doc = nil
51
+ @root = nil
52
+ end
53
+ def open()
54
+ @io = ::File.new('database.yml',"r")
55
+ @doc = ::YAML.load(@io)
56
+ @root = RIO::Ext::YAML::Tie::Root.new(@doc)
57
+ self
58
+ end
59
+
60
+ def close()
61
+ if @root.dirty?
62
+ @io.close
63
+ ::File.open('database.yml',"w") do |ios|
64
+ ::YAML.dump(@doc,ios)
65
+ end
66
+ end
67
+ end
68
+
69
+ def_instance_delegators(:@root,:inspect)
70
+ def method_missing(sym,*args)
71
+ @root.__send__(sym,*args)
72
+ end
73
+ def self.new_node(doc,cont)
74
+ end
75
+ end
76
+ end
77
+ end
78
+ end
79
+ end
80
+ module RIO
81
+ module Ext
82
+ module YAML #:nodoc: all
83
+ module Tie
84
+ class Base
85
+ attr :doc,:cont
86
+ def initialize(doc,cont=nil)
87
+ @doc = doc
88
+ @cont = cont
89
+ end
90
+ end
91
+ class Root < Base
92
+ extend Forwardable
93
+ attr_accessor :dirty
94
+ def initialize(doc)
95
+ @doc = doc
96
+ @root = Tie::Hash.new(@doc,self)
97
+ @dirty = false
98
+ end
99
+ def dirty=(val)
100
+ @dirty = val
101
+ end
102
+ def dirty?()
103
+ @dirty
104
+ end
105
+ def_instance_delegators(:@root,:inspect)
106
+ def method_missing(sym,*args)
107
+ @root.__send__(sym,*args)
108
+ end
109
+ end
110
+ end
111
+ end
112
+ end
113
+ end
114
+
115
+ module RIO
116
+ module Ext
117
+ module YAML #:nodoc: all
118
+ module Tie
119
+ module Node
120
+ def dirty=(val)
121
+ cont.dirty=(val)
122
+ end
123
+ end
124
+ class Hash < DelegateClass(::Hash)
125
+ include Tie::Node
126
+ attr_reader :doc
127
+ attr_reader :cont
128
+ def initialize(doc,cont=nil)
129
+ @doc = doc
130
+ @cont = cont
131
+ super(@doc)
132
+ end
133
+ def [](key)
134
+ val = super
135
+ case val
136
+ when ::Hash then Tie::Hash.new(val,self)
137
+ else val
138
+ end
139
+ end
140
+ def []=(key,val)
141
+ self.dirty = true
142
+ super
143
+ end
144
+ end
145
+ end
146
+ end
147
+ end
148
+ end
149
+ __END__
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # ===============================================================================
3
- # Copyright (c) 2005, 2006 Christopher Kleckner
3
+ # Copyright (c) 2005,2006,2007 Christopher Kleckner
4
4
  # All rights reserved
5
5
  #
6
6
  # This file is part of the Rio library for ruby.
@@ -23,17 +23,36 @@
23
23
  #
24
24
  # To create the documentation for Rio run the command
25
25
  # ruby build_doc.rb
26
- # from the distribution directory. Then point your browser at the 'doc/rdoc' directory.
26
+ # from the distribution directory.
27
27
  #
28
28
  # Suggested Reading
29
29
  # * RIO::Doc::SYNOPSIS
30
30
  # * RIO::Doc::INTRO
31
31
  # * RIO::Doc::HOWTO
32
+ # * RIO::Doc::EXAMPLES
32
33
  # * RIO::Rio
33
34
  #
34
- # <b>Rio is pre-alpha software.
35
- # The documented interface and behavior is subject to change without notice.</b>
36
35
 
36
+ require 'rio/ext/zipfile/rl'
37
+ module RIO
38
+ module ZipFile
39
+ module Cx
40
+ def zipfile(arg=true,&block)
41
+ rootdir = new_rio_cx(:zipfile,self.to_s)
42
+ return rootdir.each(&block) if block_given?
43
+ rootdir
44
+ end
45
+ end
46
+ end
47
+ end
48
+ module RIO
49
+ module State
50
+ class Base
51
+ include RIO::ZipFile::Cx
52
+ end
53
+ end
54
+ end
55
+ __END__
37
56
  module RIO
38
57
  module_function
39
58
  def load_lib(lib)
@@ -0,0 +1,116 @@
1
+ #--
2
+ # ===============================================================================
3
+ # Copyright (c) 2005,2006,2007 Christopher Kleckner
4
+ # All rights reserved
5
+ #
6
+ # This file is part of the Rio library for ruby.
7
+ #
8
+ # Rio is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # Rio is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with Rio; if not, write to the Free Software
20
+ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
+ # ===============================================================================
22
+ #++
23
+ #
24
+ # To create the documentation for Rio run the command
25
+ # ruby build_doc.rb
26
+ # from the distribution directory.
27
+ #
28
+ # Suggested Reading
29
+ # * RIO::Doc::SYNOPSIS
30
+ # * RIO::Doc::INTRO
31
+ # * RIO::Doc::HOWTO
32
+ # * RIO::Doc::EXAMPLES
33
+ # * RIO::Rio
34
+ #
35
+
36
+ require 'rio/fs/base'
37
+ require 'zip/zip'
38
+ require 'zip/zipfilesystem'
39
+ require 'rio/scheme/path'
40
+ require 'rio/ext/zipfile/wrap'
41
+
42
+ module RIO
43
+ module ZipFile
44
+ module RootDir
45
+ class FS
46
+ attr_reader :dir
47
+ def initialize(zipfile)
48
+ @zipfile = zipfile
49
+ @dir = @zipfile.dir
50
+ @file = @zipfile.file
51
+ @test = @zipfile.file
52
+ #p "InFile: #{@file.class}"
53
+ end
54
+ def commit(&block)
55
+ yield if block_given?
56
+ @zipfile.commit
57
+ end
58
+ include RIO::FS::Str
59
+ include RIO::FS::Dir
60
+ include RIO::FS::Test
61
+ def mkdir(*args)
62
+ commit{super}
63
+ end
64
+ def rmdir(*args)
65
+ commit{@dir.rmdir(*args)}
66
+ end
67
+ end
68
+ end
69
+ module InFile
70
+ class FS
71
+ attr_reader :file,:dir
72
+ def initialize(zipfile)
73
+ @zipfile = zipfile
74
+ @file = RIO::ZipFile::Wrap::File.new(@zipfile.file)
75
+ @dir = RIO::ZipFile::Wrap::Dir.new(@zipfile.dir)
76
+ @test = @file
77
+ #p "InFile: #{@file.class}"
78
+ end
79
+ include RIO::FS::File
80
+ include RIO::FS::Dir
81
+ include RIO::FS::Test
82
+ include RIO::FS::Str
83
+ end
84
+ end
85
+ end
86
+ end
87
+
88
+ __END__
89
+
90
+
91
+ class CentralDir < RIO::FS::Native
92
+ def initialize(zipfilepath)
93
+ @zipfilepath = zipfilepath
94
+ @zipfile = Zip::ZipFile.new(@zipfilepath)
95
+ super
96
+ end
97
+ def mkdir(path)
98
+ @zipfile.mkdir(path)
99
+ end
100
+ def rmdir(path)
101
+ @zipfile.remove(path)
102
+ end
103
+ def file()
104
+ self
105
+ end
106
+ def open(zipfilepath)
107
+ @zipfilepath = zipfilepath
108
+ @zipfile = Zip::ZipFile.new(@zipfilepath)
109
+ RIO::ZipFile::CentralDir.new(@zipfile)
110
+ end
111
+
112
+ end
113
+
114
+ end
115
+ end
116
+ end
@@ -0,0 +1,251 @@
1
+ #--
2
+ # ===============================================================================
3
+ # Copyright (c) 2005,2006,2007 Christopher Kleckner
4
+ # All rights reserved
5
+ #
6
+ # This file is part of the Rio library for ruby.
7
+ #
8
+ # Rio is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # Rio is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with Rio; if not, write to the Free Software
20
+ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
+ # ===============================================================================
22
+ #++
23
+ #
24
+ # To create the documentation for Rio run the command
25
+ # ruby build_doc.rb
26
+ # from the distribution directory.
27
+ #
28
+ # Suggested Reading
29
+ # * RIO::Doc::SYNOPSIS
30
+ # * RIO::Doc::INTRO
31
+ # * RIO::Doc::HOWTO
32
+ # * RIO::Doc::EXAMPLES
33
+ # * RIO::Rio
34
+ #
35
+
36
+ require 'uri'
37
+ require 'rio/uri/file'
38
+ require 'rio/ext/zipfile/fs'
39
+
40
+ module RIO
41
+ module ZipFile #:nodoc: all
42
+ module RootDir
43
+ RESET_STATE = 'ZipFile::State::Reset'
44
+ #RESET_STATE = RIO::RL::PathBase::RESET_STATE
45
+
46
+ require 'rio/rl/base'
47
+ class RL < RIO::RL::Base
48
+ RIOSCHEME = 'zipfile'
49
+ RIOPATH = RIO::RL::CHMAP.invert[RIOSCHEME].to_s.freeze
50
+ attr_reader :zipfilepath,:infilepath
51
+ def initialize(zipfilepath,infilepath=nil)
52
+ @zipfilepath = zipfilepath
53
+ @uri = URI(@zipfilepath)
54
+ if infilepath
55
+ @infilepath = infilepath
56
+ @uri.query = @infilepath
57
+ end
58
+ @zipfile = ::Zip::ZipFile.new(@zipfilepath,::Zip::ZipFile::CREATE)
59
+ super()
60
+ end
61
+ def file_rl
62
+ RIO::File::RL.new(infilepath,{:fs => RIO::ZipFile::InFile::FS.new(@zipfile)})
63
+ end
64
+ def openfs_()
65
+ RIO::ZipFile::RootDir::FS.new(@zipfile)
66
+ end
67
+ def open()
68
+ IOH::Dir.new(ZipFile::Wrap::Stream::Root.new(@zipfile))
69
+ end
70
+ def close()
71
+ p "CLOSING ZIPFILE RL"
72
+ end
73
+ def path()
74
+ @infilepath
75
+ end
76
+ def fspath()
77
+ @infilepath
78
+ end
79
+ def base(*args)
80
+ #p "base: #{args.inspect}"
81
+ ''
82
+ end
83
+ def path_no_slash() self.path.to_s.sub(/\/$/,'') end
84
+ #def path() nil end
85
+ def scheme() self.class.const_get(:RIOSCHEME) end
86
+ def opaque()
87
+ @uri.to_s
88
+ end
89
+ include RIO::RL::PathMethods
90
+ def urlpath()
91
+ return '' unless fspath
92
+ RIO::RL.fs2url(fspath)
93
+ end
94
+ def urlpath=(arg) @infilepath = RIO::RL.url2fs(arg) end
95
+
96
+ # USAGE EXAMPLES
97
+ # zroot = rio('f.zip').zipfile
98
+ #
99
+ # rio(zroot,'tdir').mkdir
100
+ # rio(zroot,'tdir').mkdir
101
+ # rio(zroot).each {}
102
+ # rio(:zipfile,'t.zip','tdir').mkdir
103
+ # rio('zipfile:t.zip','tdir').mkdir
104
+ # rio('zipfile:t.zip?tdir').mkdir
105
+ # rio(?z,'t.zip?tdir').mkdir
106
+ # rio(?z,'t.zip','tdir').mkdir
107
+ # rio('zipfile:file:///tmp/t.zip?tdir').mkdir
108
+ SPLIT_RE = %r|(.+)(?:\?(.+))?$|.freeze
109
+ def self.splitrl(s)
110
+ sub,opq,whole = split_riorl(s)
111
+ if opq.nil? or opq.empty?
112
+ []
113
+ elsif bm = SPLIT_RE.match(opq)
114
+ zpath = bm[1] unless bm[1].nil? or bm[1].empty?
115
+ ipath = bm[2] unless bm[2].nil? or bm[2].empty?
116
+ [zpath,ipath]
117
+ else
118
+ []
119
+ end
120
+ end
121
+ end
122
+ end
123
+ end
124
+ end
125
+
126
+
127
+ __END__
128
+ module Dir
129
+ require 'rio/rl/path'
130
+ RESET_STATE = RIO::RL::PathBase::RESET_STATE
131
+ require 'tmpdir'
132
+ class RL < RIO::RL::PathBase
133
+ RIOSCHEME = 'tempdir'
134
+ DFLT_PREFIX = Temp::RL::DFLT_PREFIX
135
+ DFLT_TMPDIR = Temp::RL::DFLT_TMPDIR
136
+ attr_reader :prefix,:tmpdir,:tmprl
137
+ def initialize(file_prefix=DFLT_PREFIX,temp_dir=DFLT_TMPDIR)
138
+ #puts "initialize(#{file_prefix.inspect},#{temp_dir.inspect})"
139
+ @prefix = file_prefix || DFLT_PREFIX
140
+ @tmpdir = temp_dir || DFLT_TMPDIR
141
+ require 'rio/tempdir'
142
+ @td = ::Tempdir.new( @prefix.to_s, @tmpdir.to_s)
143
+ super(@td.to_s)
144
+ end
145
+ def dir_rl()
146
+ RIO::Dir::RL.new(self.uri, {:fs => self.fs})
147
+ #self
148
+ end
149
+ SPLIT_RE = Temp::RL::SPLIT_RE
150
+ def self.splitrl(s)
151
+ Temp::RL.splitrl(s)
152
+ end
153
+ end
154
+ end
155
+ module File
156
+ require 'rio/rl/path'
157
+ RESET_STATE = 'Temp::Stream::Open'
158
+ class RL < RIO::RL::PathBase
159
+ RIOSCHEME = 'tempfile'
160
+ DFLT_PREFIX = Temp::RL::DFLT_PREFIX
161
+ DFLT_TMPDIR = Temp::RL::DFLT_TMPDIR
162
+ attr_reader :prefix,:tmpdir,:tmprl
163
+ def initialize(file_prefix=DFLT_PREFIX,temp_dir=DFLT_TMPDIR)
164
+ #puts "initialize(#{file_prefix.inspect},#{temp_dir.inspect})"
165
+ @prefix = file_prefix || DFLT_PREFIX
166
+ @tmpdir = temp_dir || DFLT_TMPDIR
167
+ require 'tempfile'
168
+ @tf = ::Tempfile.new( @prefix.to_s, @tmpdir.to_s)
169
+ super(@tf.path)
170
+ end
171
+ def file_rl()
172
+ RIO::File::RL.new(self.uri,{:fs => self.fs})
173
+ #self
174
+ end
175
+ def open(mode='ignored')
176
+ #p callstr('open',mode)
177
+ @tf
178
+ end
179
+ def close
180
+ super
181
+ @tf = nil
182
+ end
183
+ SPLIT_RE = Temp::RL::SPLIT_RE
184
+ def self.splitrl(s)
185
+ Temp::RL.splitrl(s)
186
+ end
187
+ end
188
+ end
189
+ require 'rio/state'
190
+ class Reset < State::Base
191
+ def initialize(*args)
192
+ super
193
+ #p args
194
+ @tempobj = nil
195
+ end
196
+ #def self.default_cx
197
+ # Cx::Vars.new( { 'closeoneof' => false, 'closeoncopy' => false } )
198
+ #end
199
+
200
+ def check?() true end
201
+ def mkdir(prefix=rl.prefix,tmpdir=rl.tmpdir)
202
+ self.rl = RIO::Temp::Dir::RL.new(prefix, tmpdir)
203
+ become 'Dir::Existing'
204
+ end
205
+ # def mkdir()
206
+ # dir()
207
+ # end
208
+ def chdir(&block)
209
+ self.mkdir.chdir(&block)
210
+ end
211
+ def file(prefix=rl.prefix,tmpdir=rl.tmpdir)
212
+ self.rl = RIO::Temp::File::RL.new(prefix, tmpdir)
213
+ become 'Temp::Stream::Open'
214
+ end
215
+ def scheme() rl.scheme() end
216
+ def host() rl.host() end
217
+ def opaque() rl.opaque() end
218
+ def to_s() rl.url() end
219
+ def exist?() false end
220
+ def file?() false end
221
+ def dir?() false end
222
+ def open?() false end
223
+ def closed?() true end
224
+ def when_missing(sym,*args)
225
+ #p @rl.scheme
226
+ if @tempobj.nil?
227
+ file()
228
+ else
229
+ gofigure(sym,*args)
230
+ end
231
+ end
232
+ end
233
+ require 'rio/stream/open'
234
+ module Stream
235
+ class Open < RIO::Stream::Open
236
+ def iostate(sym)
237
+ mode_('w+').open_.inout()
238
+ end
239
+ # def inout() stream_state('Temp::Stream::InOut') end
240
+ end
241
+ # require 'rio/stream'
242
+ # class InOut < RIO::Stream::InOut
243
+ # def base_state() 'Temp::Stream::Close' end
244
+ # end
245
+ # class Close < RIO::Stream::Close
246
+ # def base_state() 'Temp::Reset' end
247
+ # end
248
+
249
+ end
250
+ end
251
+ end