rufus-lua-win 5.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +69 -0
- data/Rakefile +1 -0
- data/lib/rufus/lua/win.rb +18 -0
- data/lib/rufus/lua/win/version.rb +7 -0
- data/rufus-lua-win.gemspec +23 -0
- data/vendor/lua/bin/liblua.dll +0 -0
- data/vendor/lua/lib/lua/LuaXml.lua +119 -0
- data/vendor/lua/lib/lua/alien.lua +250 -0
- data/vendor/lua/lib/lua/alien/core.dll +0 -0
- data/vendor/lua/lib/lua/alien/struct.dll +0 -0
- data/vendor/lua/lib/lua/base.lua +536 -0
- data/vendor/lua/lib/lua/bin.lua +20 -0
- data/vendor/lua/lib/lua/bit.dll +0 -0
- data/vendor/lua/lib/lua/cdlua.dll +0 -0
- data/vendor/lua/lib/lua/cdluacontextplus.dll +0 -0
- data/vendor/lua/lib/lua/cdluagl.dll +0 -0
- data/vendor/lua/lib/lua/cdluaim.dll +0 -0
- data/vendor/lua/lib/lua/cdluapdf.dll +0 -0
- data/vendor/lua/lib/lua/copas.lua +543 -0
- data/vendor/lua/lib/lua/coxpcall.lua +57 -0
- data/vendor/lua/lib/lua/date.lua +745 -0
- data/vendor/lua/lib/lua/debug_ext.lua +84 -0
- data/vendor/lua/lib/lua/debug_init.lua +2 -0
- data/vendor/lua/lib/lua/des56.dll +0 -0
- data/vendor/lua/lib/lua/dist/config.lua +109 -0
- data/vendor/lua/lib/lua/dist/constraints.lua +271 -0
- data/vendor/lua/lib/lua/dist/depends.lua +601 -0
- data/vendor/lua/lib/lua/dist/git.lua +307 -0
- data/vendor/lua/lib/lua/dist/init.lua +278 -0
- data/vendor/lua/lib/lua/dist/manifest.lua +225 -0
- data/vendor/lua/lib/lua/dist/package.lua +583 -0
- data/vendor/lua/lib/lua/dist/sys.lua +367 -0
- data/vendor/lua/lib/lua/dist/utils.lua +130 -0
- data/vendor/lua/lib/lua/ex.dll +0 -0
- data/vendor/lua/lib/lua/fstable.lua +116 -0
- data/vendor/lua/lib/lua/getopt.lua +273 -0
- data/vendor/lua/lib/lua/git.lua +5 -0
- data/vendor/lua/lib/lua/git/core.dll +0 -0
- data/vendor/lua/lib/lua/git/objects.lua +121 -0
- data/vendor/lua/lib/lua/git/pack.lua +316 -0
- data/vendor/lua/lib/lua/git/protocol.lua +188 -0
- data/vendor/lua/lib/lua/git/repo.lua +283 -0
- data/vendor/lua/lib/lua/git/util.lua +233 -0
- data/vendor/lua/lib/lua/gzio.dll +0 -0
- data/vendor/lua/lib/lua/gzip.lua +81 -0
- data/vendor/lua/lib/lua/iconv.dll +0 -0
- data/vendor/lua/lib/lua/imlua.dll +0 -0
- data/vendor/lua/lib/lua/imlua_fftw.dll +0 -0
- data/vendor/lua/lib/lua/imlua_jp2.dll +0 -0
- data/vendor/lua/lib/lua/imlua_process.dll +0 -0
- data/vendor/lua/lib/lua/imlua_process_omp.dll +0 -0
- data/vendor/lua/lib/lua/io_ext.lua +115 -0
- data/vendor/lua/lib/lua/iuplua.dll +0 -0
- data/vendor/lua/lib/lua/iuplua_mglplot.dll +0 -0
- data/vendor/lua/lib/lua/iuplua_pplot.dll +0 -0
- data/vendor/lua/lib/lua/iupluacd.dll +0 -0
- data/vendor/lua/lib/lua/iupluacontrols.dll +0 -0
- data/vendor/lua/lib/lua/iupluagl.dll +0 -0
- data/vendor/lua/lib/lua/iupluaim.dll +0 -0
- data/vendor/lua/lib/lua/iupluaimglib.dll +0 -0
- data/vendor/lua/lib/lua/iupluatuio.dll +0 -0
- data/vendor/lua/lib/lua/lanes-keeper.lua +302 -0
- data/vendor/lua/lib/lua/lanes.lua +591 -0
- data/vendor/lua/lib/lua/lanes/core.dll +0 -0
- data/vendor/lua/lib/lua/lcs.lua +55 -0
- data/vendor/lua/lib/lua/lemock.lua +659 -0
- data/vendor/lua/lib/lua/lfs.dll +0 -0
- data/vendor/lua/lib/lua/list.lua +375 -0
- data/vendor/lua/lib/lua/logging.lua +189 -0
- data/vendor/lua/lib/lua/logging/console.lua +22 -0
- data/vendor/lua/lib/lua/logging/email.lua +44 -0
- data/vendor/lua/lib/lua/logging/file.lua +55 -0
- data/vendor/lua/lib/lua/logging/rolling_file.lua +81 -0
- data/vendor/lua/lib/lua/logging/socket.lua +35 -0
- data/vendor/lua/lib/lua/logging/sql.lua +64 -0
- data/vendor/lua/lib/lua/loop/base.lua +68 -0
- data/vendor/lua/lib/lua/loop/cached.lua +312 -0
- data/vendor/lua/lib/lua/loop/collection/MapWithArrayOfKeys.lua +64 -0
- data/vendor/lua/lib/lua/loop/collection/ObjectCache.lua +39 -0
- data/vendor/lua/lib/lua/loop/collection/OrderedSet.lua +164 -0
- data/vendor/lua/lib/lua/loop/collection/PriorityQueue.lua +86 -0
- data/vendor/lua/lib/lua/loop/collection/UnorderedArray.lua +32 -0
- data/vendor/lua/lib/lua/loop/collection/UnorderedArraySet.lua +56 -0
- data/vendor/lua/lib/lua/loop/compiler/Arguments.lua +108 -0
- data/vendor/lua/lib/lua/loop/compiler/Conditional.lua +50 -0
- data/vendor/lua/lib/lua/loop/compiler/Expression.lua +215 -0
- data/vendor/lua/lib/lua/loop/component/base.lua +221 -0
- data/vendor/lua/lib/lua/loop/component/contained.lua +71 -0
- data/vendor/lua/lib/lua/loop/component/dynamic.lua +223 -0
- data/vendor/lua/lib/lua/loop/component/intercepted.lua +354 -0
- data/vendor/lua/lib/lua/loop/component/wrapped.lua +195 -0
- data/vendor/lua/lib/lua/loop/debug/Inspector.lua +521 -0
- data/vendor/lua/lib/lua/loop/debug/Matcher.lua +192 -0
- data/vendor/lua/lib/lua/loop/debug/Verbose.lua +266 -0
- data/vendor/lua/lib/lua/loop/debug/Viewer.lua +200 -0
- data/vendor/lua/lib/lua/loop/multiple.lua +105 -0
- data/vendor/lua/lib/lua/loop/object/Exception.lua +57 -0
- data/vendor/lua/lib/lua/loop/object/Publisher.lua +43 -0
- data/vendor/lua/lib/lua/loop/object/Wrapper.lua +39 -0
- data/vendor/lua/lib/lua/loop/scoped.lua +585 -0
- data/vendor/lua/lib/lua/loop/serial/FileStream.lua +48 -0
- data/vendor/lua/lib/lua/loop/serial/Serializer.lua +291 -0
- data/vendor/lua/lib/lua/loop/serial/SocketStream.lua +51 -0
- data/vendor/lua/lib/lua/loop/serial/StringStream.lua +47 -0
- data/vendor/lua/lib/lua/loop/simple.lua +75 -0
- data/vendor/lua/lib/lua/loop/table.lua +71 -0
- data/vendor/lua/lib/lua/loop/thread/CoSocket.lua +416 -0
- data/vendor/lua/lib/lua/loop/thread/IOScheduler.lua +170 -0
- data/vendor/lua/lib/lua/loop/thread/Scheduler.lua +327 -0
- data/vendor/lua/lib/lua/loop/thread/SocketScheduler.lua +88 -0
- data/vendor/lua/lib/lua/loop/thread/Timer.lua +54 -0
- data/vendor/lua/lib/lua/lpeg.dll +0 -0
- data/vendor/lua/lib/lua/ltn12.lua +292 -0
- data/vendor/lua/lib/lua/luaXML_lib.dll +0 -0
- data/vendor/lua/lib/lua/luacurl.dll +0 -0
- data/vendor/lua/lib/lua/luadoc/config.lua +34 -0
- data/vendor/lua/lib/lua/luadoc/doclet/debug.lua +46 -0
- data/vendor/lua/lib/lua/luadoc/doclet/formatter.lua +84 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html.lua +289 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/file.lp +113 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/function.lp +64 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/index.lp +70 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/luadoc.css +286 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/menu.lp +55 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/module.lp +109 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/table.lp +15 -0
- data/vendor/lua/lib/lua/luadoc/doclet/raw.lua +12 -0
- data/vendor/lua/lib/lua/luadoc/init.lua +58 -0
- data/vendor/lua/lib/lua/luadoc/lp.lua +130 -0
- data/vendor/lua/lib/lua/luadoc/taglet/standard.lua +495 -0
- data/vendor/lua/lib/lua/luadoc/taglet/standard/tags.lua +171 -0
- data/vendor/lua/lib/lua/luadoc/util.lua +233 -0
- data/vendor/lua/lib/lua/luagl.dll +0 -0
- data/vendor/lua/lib/lua/luaglu.dll +0 -0
- data/vendor/lua/lib/lua/luaidl.lua +113 -0
- data/vendor/lua/lib/lua/luaidl/lex.lua +793 -0
- data/vendor/lua/lib/lua/luaidl/pre.lua +149 -0
- data/vendor/lua/lib/lua/luaidl/sin.lua +3631 -0
- data/vendor/lua/lib/lua/luarocks/add.lua +108 -0
- data/vendor/lua/lib/lua/luarocks/admin_remove.lua +87 -0
- data/vendor/lua/lib/lua/luarocks/build.lua +330 -0
- data/vendor/lua/lib/lua/luarocks/build/builtin.lua +253 -0
- data/vendor/lua/lib/lua/luarocks/build/cmake.lua +54 -0
- data/vendor/lua/lib/lua/luarocks/build/command.lua +32 -0
- data/vendor/lua/lib/lua/luarocks/build/make.lua +92 -0
- data/vendor/lua/lib/lua/luarocks/cache.lua +85 -0
- data/vendor/lua/lib/lua/luarocks/cfg.lua +449 -0
- data/vendor/lua/lib/lua/luarocks/command_line.lua +163 -0
- data/vendor/lua/lib/lua/luarocks/deps.lua +654 -0
- data/vendor/lua/lib/lua/luarocks/dir.lua +69 -0
- data/vendor/lua/lib/lua/luarocks/download.lua +90 -0
- data/vendor/lua/lib/lua/luarocks/fetch.lua +321 -0
- data/vendor/lua/lib/lua/luarocks/fetch/cvs.lua +44 -0
- data/vendor/lua/lib/lua/luarocks/fetch/git.lua +81 -0
- data/vendor/lua/lib/lua/luarocks/fetch/git_file.lua +17 -0
- data/vendor/lua/lib/lua/luarocks/fetch/hg.lua +54 -0
- data/vendor/lua/lib/lua/luarocks/fetch/sscm.lua +42 -0
- data/vendor/lua/lib/lua/luarocks/fetch/svn.lua +53 -0
- data/vendor/lua/lib/lua/luarocks/fs.lua +40 -0
- data/vendor/lua/lib/lua/luarocks/fs/lua.lua +676 -0
- data/vendor/lua/lib/lua/luarocks/fs/unix.lua +88 -0
- data/vendor/lua/lib/lua/luarocks/fs/unix/tools.lua +325 -0
- data/vendor/lua/lib/lua/luarocks/fs/win32.lua +107 -0
- data/vendor/lua/lib/lua/luarocks/fs/win32/tools.lua +334 -0
- data/vendor/lua/lib/lua/luarocks/help.lua +101 -0
- data/vendor/lua/lib/lua/luarocks/index.lua +172 -0
- data/vendor/lua/lib/lua/luarocks/install.lua +151 -0
- data/vendor/lua/lib/lua/luarocks/list.lua +35 -0
- data/vendor/lua/lib/lua/luarocks/loader.lua +228 -0
- data/vendor/lua/lib/lua/luarocks/make.lua +71 -0
- data/vendor/lua/lib/lua/luarocks/make_manifest.lua +34 -0
- data/vendor/lua/lib/lua/luarocks/manif.lua +360 -0
- data/vendor/lua/lib/lua/luarocks/manif_core.lua +75 -0
- data/vendor/lua/lib/lua/luarocks/new_version.lua +141 -0
- data/vendor/lua/lib/lua/luarocks/pack.lua +205 -0
- data/vendor/lua/lib/lua/luarocks/path.lua +315 -0
- data/vendor/lua/lib/lua/luarocks/persist.lua +173 -0
- data/vendor/lua/lib/lua/luarocks/refresh_cache.lua +30 -0
- data/vendor/lua/lib/lua/luarocks/remove.lua +135 -0
- data/vendor/lua/lib/lua/luarocks/rep.lua +313 -0
- data/vendor/lua/lib/lua/luarocks/require.lua +6 -0
- data/vendor/lua/lib/lua/luarocks/search.lua +399 -0
- data/vendor/lua/lib/lua/luarocks/show.lua +138 -0
- data/vendor/lua/lib/lua/luarocks/site_config.lua +23 -0
- data/vendor/lua/lib/lua/luarocks/tools/patch.lua +712 -0
- data/vendor/lua/lib/lua/luarocks/tools/tar.lua +144 -0
- data/vendor/lua/lib/lua/luarocks/tools/zip.lua +245 -0
- data/vendor/lua/lib/lua/luarocks/type_check.lua +267 -0
- data/vendor/lua/lib/lua/luarocks/unpack.lua +151 -0
- data/vendor/lua/lib/lua/luarocks/util.lua +420 -0
- data/vendor/lua/lib/lua/luarocks/validate.lua +164 -0
- data/vendor/lua/lib/lua/luars232.dll +0 -0
- data/vendor/lua/lib/lua/luasql/mysql.dll +0 -0
- data/vendor/lua/lib/lua/luasql/postgres.dll +0 -0
- data/vendor/lua/lib/lua/luasql/sqlite3.dll +0 -0
- data/vendor/lua/lib/lua/luaunit.lua +601 -0
- data/vendor/lua/lib/lua/lxp.dll +0 -0
- data/vendor/lua/lib/lua/lxp/lom.lua +60 -0
- data/vendor/lua/lib/lua/math_ext.lua +27 -0
- data/vendor/lua/lib/lua/mbox.lua +53 -0
- data/vendor/lua/lib/lua/md5.lua +19 -0
- data/vendor/lua/lib/lua/md5/core.dll +0 -0
- data/vendor/lua/lib/lua/metalua.lua +0 -0
- data/vendor/lua/lib/lua/metalua/ast_to_string.mlua +553 -0
- data/vendor/lua/lib/lua/metalua/base.lua +104 -0
- data/vendor/lua/lib/lua/metalua/bytecode.lua +0 -0
- data/vendor/lua/lib/lua/metalua/clopts.mlua +204 -0
- data/vendor/lua/lib/lua/metalua/compiler.lua +3 -0
- data/vendor/lua/lib/lua/metalua/dollar.mlua +24 -0
- data/vendor/lua/lib/lua/metalua/extension/H-runtime.mlua +216 -0
- data/vendor/lua/lib/lua/metalua/extension/H.mlua +22 -0
- data/vendor/lua/lib/lua/metalua/extension/anaphoric.mlua +54 -0
- data/vendor/lua/lib/lua/metalua/extension/clist.mlua +149 -0
- data/vendor/lua/lib/lua/metalua/extension/continue.mlua +53 -0
- data/vendor/lua/lib/lua/metalua/extension/localin.mlua +2 -0
- data/vendor/lua/lib/lua/metalua/extension/log.mlua +39 -0
- data/vendor/lua/lib/lua/metalua/extension/match.mlua +374 -0
- data/vendor/lua/lib/lua/metalua/extension/ternary.mlua +10 -0
- data/vendor/lua/lib/lua/metalua/extension/trycatch.mlua +189 -0
- data/vendor/lua/lib/lua/metalua/extension/types-runtime.mlua +159 -0
- data/vendor/lua/lib/lua/metalua/extension/types.mlua +352 -0
- data/vendor/lua/lib/lua/metalua/extension/withdo.mlua +30 -0
- data/vendor/lua/lib/lua/metalua/extension/xglobal-runtime.lua +41 -0
- data/vendor/lua/lib/lua/metalua/extension/xglobal.mlua +20 -0
- data/vendor/lua/lib/lua/metalua/extension/xloop.mlua +100 -0
- data/vendor/lua/lib/lua/metalua/extension/xmatch.mlua +216 -0
- data/vendor/lua/lib/lua/metalua/metaloop.mlua +76 -0
- data/vendor/lua/lib/lua/metalua/mlc.lua +0 -0
- data/vendor/lua/lib/lua/metalua/mlc_xcall.lua +119 -0
- data/vendor/lua/lib/lua/metalua/mlp.lua +0 -0
- data/vendor/lua/lib/lua/metalua/package2.lua +101 -0
- data/vendor/lua/lib/lua/metalua/runtime.lua +3 -0
- data/vendor/lua/lib/lua/metalua/string2.lua +44 -0
- data/vendor/lua/lib/lua/metalua/table2.lua +372 -0
- data/vendor/lua/lib/lua/metalua/walk.mlua +304 -0
- data/vendor/lua/lib/lua/metalua/walk/bindings.mlua +41 -0
- data/vendor/lua/lib/lua/metalua/walk/id.mlua +186 -0
- data/vendor/lua/lib/lua/metalua/walk/scope.lua +54 -0
- data/vendor/lua/lib/lua/mime.lua +87 -0
- data/vendor/lua/lib/lua/mime/core.dll +0 -0
- data/vendor/lua/lib/lua/mobdebug.lua +1484 -0
- data/vendor/lua/lib/lua/modules.lua +16 -0
- data/vendor/lua/lib/lua/object.lua +56 -0
- data/vendor/lua/lib/lua/oil/Exception.lua +26 -0
- data/vendor/lua/lib/lua/oil/arch.lua +27 -0
- data/vendor/lua/lib/lua/oil/arch/basic/client.lua +29 -0
- data/vendor/lua/lib/lua/oil/arch/basic/common.lua +13 -0
- data/vendor/lua/lib/lua/oil/arch/basic/server.lua +27 -0
- data/vendor/lua/lib/lua/oil/arch/cooperative/common.lua +10 -0
- data/vendor/lua/lib/lua/oil/arch/cooperative/server.lua +16 -0
- data/vendor/lua/lib/lua/oil/arch/corba/client.lua +39 -0
- data/vendor/lua/lib/lua/oil/arch/corba/common.lua +58 -0
- data/vendor/lua/lib/lua/oil/arch/corba/intercepted/client.lua +9 -0
- data/vendor/lua/lib/lua/oil/arch/corba/intercepted/server.lua +9 -0
- data/vendor/lua/lib/lua/oil/arch/corba/server.lua +35 -0
- data/vendor/lua/lib/lua/oil/arch/ludo/byref.lua +18 -0
- data/vendor/lua/lib/lua/oil/arch/ludo/client.lua +19 -0
- data/vendor/lua/lib/lua/oil/arch/ludo/common.lua +18 -0
- data/vendor/lua/lib/lua/oil/arch/ludo/server.lua +19 -0
- data/vendor/lua/lib/lua/oil/arch/typed/client.lua +27 -0
- data/vendor/lua/lib/lua/oil/arch/typed/common.lua +9 -0
- data/vendor/lua/lib/lua/oil/arch/typed/server.lua +18 -0
- data/vendor/lua/lib/lua/oil/assert.lua +87 -0
- data/vendor/lua/lib/lua/oil/builder.lua +45 -0
- data/vendor/lua/lib/lua/oil/builder/basic/client.lua +31 -0
- data/vendor/lua/lib/lua/oil/builder/basic/common.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/basic/server.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/cooperative/common.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/cooperative/server.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/corba/client.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/corba/common.lua +24 -0
- data/vendor/lua/lib/lua/oil/builder/corba/gencode.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/corba/intercepted/client.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/corba/intercepted/server.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/corba/server.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/lua/client.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/lua/server.lua +12 -0
- data/vendor/lua/lib/lua/oil/builder/ludo/byref.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/ludo/client.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/ludo/common.lua +14 -0
- data/vendor/lua/lib/lua/oil/builder/ludo/server.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/typed/client.lua +16 -0
- data/vendor/lua/lib/lua/oil/builder/typed/server.lua +12 -0
- data/vendor/lua/lib/lua/oil/compat.lua +846 -0
- data/vendor/lua/lib/lua/oil/component.lua +1 -0
- data/vendor/lua/lib/lua/oil/corba/giop.lua +301 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Codec.lua +1568 -0
- data/vendor/lua/lib/lua/oil/corba/giop/CodecGen.lua +589 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Exception.lua +25 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Indexer.lua +63 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Listener.lua +343 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Messenger.lua +228 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Referrer.lua +180 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Requester.lua +462 -0
- data/vendor/lua/lib/lua/oil/corba/idl.lua +597 -0
- data/vendor/lua/lib/lua/oil/corba/idl/Compiler.lua +133 -0
- data/vendor/lua/lib/lua/oil/corba/idl/Importer.lua +235 -0
- data/vendor/lua/lib/lua/oil/corba/idl/Indexer.lua +95 -0
- data/vendor/lua/lib/lua/oil/corba/idl/Registry.lua +1821 -0
- data/vendor/lua/lib/lua/oil/corba/idl/ir.lua +847 -0
- data/vendor/lua/lib/lua/oil/corba/idl/sysex.lua +21 -0
- data/vendor/lua/lib/lua/oil/corba/iiop/Profiler.lua +200 -0
- data/vendor/lua/lib/lua/oil/corba/intercepted/Listener.lua +158 -0
- data/vendor/lua/lib/lua/oil/corba/intercepted/Requester.lua +181 -0
- data/vendor/lua/lib/lua/oil/corba/services/event.lua +126 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/ConsumerAdmin.lua +50 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/EventFactory.lua +15 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/EventQueue.lua +37 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/ProxyPushConsumer.lua +75 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/ProxyPushSupplier.lua +62 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/SingleDeferredDispatcher.lua +60 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/SingleSynchronousDispatcher.lua +39 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/SupplierAdmin.lua +50 -0
- data/vendor/lua/lib/lua/oil/corba/services/naming.lua +436 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Acceptor.lua +268 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Channels.lua +121 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Connector.lua +147 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Dispatcher.lua +99 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies.lua +86 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies/asynchronous.lua +56 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies/protected.lua +17 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies/synchronous.lua +17 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies/utils.lua +29 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Receiver.lua +110 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Servants.lua +207 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Sockets.lua +44 -0
- data/vendor/lua/lib/lua/oil/kernel/cooperative/Receiver.lua +139 -0
- data/vendor/lua/lib/lua/oil/kernel/intercepted/Listener.lua +47 -0
- data/vendor/lua/lib/lua/oil/kernel/intercepted/Requester.lua +58 -0
- data/vendor/lua/lib/lua/oil/kernel/lua/Dispatcher.lua +76 -0
- data/vendor/lua/lib/lua/oil/kernel/lua/Proxies.lua +69 -0
- data/vendor/lua/lib/lua/oil/kernel/typed/Dispatcher.lua +91 -0
- data/vendor/lua/lib/lua/oil/kernel/typed/Proxies.lua +153 -0
- data/vendor/lua/lib/lua/oil/kernel/typed/Servants.lua +137 -0
- data/vendor/lua/lib/lua/oil/ludo/Codec.lua +66 -0
- data/vendor/lua/lib/lua/oil/ludo/CodecByRef.lua +103 -0
- data/vendor/lua/lib/lua/oil/ludo/Listener.lua +151 -0
- data/vendor/lua/lib/lua/oil/ludo/Referrer.lua +72 -0
- data/vendor/lua/lib/lua/oil/ludo/Requester.lua +107 -0
- data/vendor/lua/lib/lua/oil/oo.lua +1 -0
- data/vendor/lua/lib/lua/oil/port.lua +1 -0
- data/vendor/lua/lib/lua/oil/properties.lua +57 -0
- data/vendor/lua/lib/lua/oil/verbose.lua +133 -0
- data/vendor/lua/lib/lua/package_ext.lua +15 -0
- data/vendor/lua/lib/lua/parser.lua +268 -0
- data/vendor/lua/lib/lua/pl/Date.lua +555 -0
- data/vendor/lua/lib/lua/pl/List.lua +613 -0
- data/vendor/lua/lib/lua/pl/Map.lua +113 -0
- data/vendor/lua/lib/lua/pl/MultiMap.lua +62 -0
- data/vendor/lua/lib/lua/pl/OrderedMap.lua +151 -0
- data/vendor/lua/lib/lua/pl/Set.lua +153 -0
- data/vendor/lua/lib/lua/pl/app.lua +165 -0
- data/vendor/lua/lib/lua/pl/array2d.lua +501 -0
- data/vendor/lua/lib/lua/pl/class.lua +180 -0
- data/vendor/lua/lib/lua/pl/comprehension.lua +286 -0
- data/vendor/lua/lib/lua/pl/config.lua +176 -0
- data/vendor/lua/lib/lua/pl/data.lua +606 -0
- data/vendor/lua/lib/lua/pl/dir.lua +475 -0
- data/vendor/lua/lib/lua/pl/file.lua +70 -0
- data/vendor/lua/lib/lua/pl/func.lua +376 -0
- data/vendor/lua/lib/lua/pl/init.lua +68 -0
- data/vendor/lua/lib/lua/pl/input.lua +173 -0
- data/vendor/lua/lib/lua/pl/lapp.lua +407 -0
- data/vendor/lua/lib/lua/pl/lexer.lua +456 -0
- data/vendor/lua/lib/lua/pl/luabalanced.lua +264 -0
- data/vendor/lua/lib/lua/pl/operator.lua +201 -0
- data/vendor/lua/lib/lua/pl/path.lua +398 -0
- data/vendor/lua/lib/lua/pl/permute.lua +63 -0
- data/vendor/lua/lib/lua/pl/platf/luajava.lua +101 -0
- data/vendor/lua/lib/lua/pl/pretty.lua +285 -0
- data/vendor/lua/lib/lua/pl/seq.lua +551 -0
- data/vendor/lua/lib/lua/pl/sip.lua +344 -0
- data/vendor/lua/lib/lua/pl/strict.lua +70 -0
- data/vendor/lua/lib/lua/pl/stringio.lua +158 -0
- data/vendor/lua/lib/lua/pl/stringx.lua +440 -0
- data/vendor/lua/lib/lua/pl/tablex.lua +817 -0
- data/vendor/lua/lib/lua/pl/template.lua +103 -0
- data/vendor/lua/lib/lua/pl/test.lua +135 -0
- data/vendor/lua/lib/lua/pl/text.lua +243 -0
- data/vendor/lua/lib/lua/pl/utils.lua +550 -0
- data/vendor/lua/lib/lua/pl/xml.lua +689 -0
- data/vendor/lua/lib/lua/profiler.dll +0 -0
- data/vendor/lua/lib/lua/re.lua +248 -0
- data/vendor/lua/lib/lua/rex_onig.dll +0 -0
- data/vendor/lua/lib/lua/rex_pcre.dll +0 -0
- data/vendor/lua/lib/lua/rex_posix.dll +0 -0
- data/vendor/lua/lib/lua/rings.dll +0 -0
- data/vendor/lua/lib/lua/serialize.lua +193 -0
- data/vendor/lua/lib/lua/set.lua +149 -0
- data/vendor/lua/lib/lua/socket.lua +133 -0
- data/vendor/lua/lib/lua/socket/core.dll +0 -0
- data/vendor/lua/lib/lua/socket/ftp.lua +281 -0
- data/vendor/lua/lib/lua/socket/http.lua +350 -0
- data/vendor/lua/lib/lua/socket/smtp.lua +251 -0
- data/vendor/lua/lib/lua/socket/tp.lua +123 -0
- data/vendor/lua/lib/lua/socket/url.lua +297 -0
- data/vendor/lua/lib/lua/ssl.dll +0 -0
- data/vendor/lua/lib/lua/ssl.lua +93 -0
- data/vendor/lua/lib/lua/ssl/https.lua +138 -0
- data/vendor/lua/lib/lua/stable.lua +28 -0
- data/vendor/lua/lib/lua/std.lua +16 -0
- data/vendor/lua/lib/lua/strbuf.lua +32 -0
- data/vendor/lua/lib/lua/strict.lua +45 -0
- data/vendor/lua/lib/lua/string_ext.lua +274 -0
- data/vendor/lua/lib/lua/table_ext.lua +117 -0
- data/vendor/lua/lib/lua/tar.lua +262 -0
- data/vendor/lua/lib/lua/task.dll +0 -0
- data/vendor/lua/lib/lua/tree.lua +81 -0
- data/vendor/lua/lib/lua/unicode.dll +0 -0
- data/vendor/lua/lib/lua/verbose_require.lua +11 -0
- data/vendor/lua/lib/lua/vstruct.lua +86 -0
- data/vendor/lua/lib/lua/vstruct/ast.lua +192 -0
- data/vendor/lua/lib/lua/vstruct/ast/Bitpack.lua +33 -0
- data/vendor/lua/lib/lua/vstruct/ast/Generator.lua +174 -0
- data/vendor/lua/lib/lua/vstruct/ast/IO.lua +45 -0
- data/vendor/lua/lib/lua/vstruct/ast/List.lua +56 -0
- data/vendor/lua/lib/lua/vstruct/ast/Name.lua +20 -0
- data/vendor/lua/lib/lua/vstruct/ast/Repeat.lua +23 -0
- data/vendor/lua/lib/lua/vstruct/ast/Root.lua +19 -0
- data/vendor/lua/lib/lua/vstruct/ast/Table.lua +65 -0
- data/vendor/lua/lib/lua/vstruct/cursor.lua +81 -0
- data/vendor/lua/lib/lua/vstruct/io.lua +45 -0
- data/vendor/lua/lib/lua/vstruct/io/a.lua +24 -0
- data/vendor/lua/lib/lua/vstruct/io/b.lua +28 -0
- data/vendor/lua/lib/lua/vstruct/io/bigendian.lua +21 -0
- data/vendor/lua/lib/lua/vstruct/io/c.lua +25 -0
- data/vendor/lua/lib/lua/vstruct/io/defaults.lua +24 -0
- data/vendor/lua/lib/lua/vstruct/io/endianness.lua +41 -0
- data/vendor/lua/lib/lua/vstruct/io/f.lua +129 -0
- data/vendor/lua/lib/lua/vstruct/io/hostendian.lua +21 -0
- data/vendor/lua/lib/lua/vstruct/io/i.lua +42 -0
- data/vendor/lua/lib/lua/vstruct/io/littleendian.lua +21 -0
- data/vendor/lua/lib/lua/vstruct/io/m.lua +62 -0
- data/vendor/lua/lib/lua/vstruct/io/p.lua +23 -0
- data/vendor/lua/lib/lua/vstruct/io/s.lua +27 -0
- data/vendor/lua/lib/lua/vstruct/io/seekb.lua +18 -0
- data/vendor/lua/lib/lua/vstruct/io/seekf.lua +18 -0
- data/vendor/lua/lib/lua/vstruct/io/seekto.lua +18 -0
- data/vendor/lua/lib/lua/vstruct/io/u.lua +54 -0
- data/vendor/lua/lib/lua/vstruct/io/x.lua +34 -0
- data/vendor/lua/lib/lua/vstruct/io/z.lua +63 -0
- data/vendor/lua/lib/lua/vstruct/lexer.lua +100 -0
- data/vendor/lua/lib/lua/vstruct/pack.lua +142 -0
- data/vendor/lua/lib/lua/vstruct/test.lua +47 -0
- data/vendor/lua/lib/lua/vstruct/test/basic.lua +73 -0
- data/vendor/lua/lib/lua/vstruct/test/common.lua +100 -0
- data/vendor/lua/lib/lua/vstruct/test/fp-bigendian.lua +56 -0
- data/vendor/lua/lib/lua/vstruct/test/fp-littleendian.lua +56 -0
- data/vendor/lua/lib/lua/vstruct/test/struct-test-gen.lua +1230 -0
- data/vendor/lua/lib/lua/vstruct/unpack.lua +126 -0
- data/vendor/lua/lib/lua/wx.dll +0 -0
- data/vendor/lua/lib/lua/xml.lua +75 -0
- data/vendor/lua/lib/lua/zip.dll +0 -0
- data/vendor/lua/lib/lua/zlib.dll +0 -0
- metadata +529 -0
@@ -0,0 +1,153 @@
|
|
1
|
+
--------------------------------------------------------------------------------
|
2
|
+
------------------------------ ##### ## ------------------------------
|
3
|
+
------------------------------ ## ## # ## ------------------------------
|
4
|
+
------------------------------ ## ## ## ## ------------------------------
|
5
|
+
------------------------------ ## ## # ## ------------------------------
|
6
|
+
------------------------------ ##### ### ###### ------------------------------
|
7
|
+
-------------------------------- --------------------------------
|
8
|
+
----------------------- An Object Request Broker in Lua ------------------------
|
9
|
+
--------------------------------------------------------------------------------
|
10
|
+
-- Project: OiL - ORB in Lua: An Object Request Broker in Lua --
|
11
|
+
-- Release: 0.5 --
|
12
|
+
-- Title : Remote Object Proxies --
|
13
|
+
-- Authors: Renato Maia <maia@inf.puc-rio.br> --
|
14
|
+
--------------------------------------------------------------------------------
|
15
|
+
-- proxies:Facet
|
16
|
+
-- proxy:object proxyto(reference:table)
|
17
|
+
--
|
18
|
+
-- indexer:Facet
|
19
|
+
-- interface:table typeof(reference:table)
|
20
|
+
-- member:table, [islocal:function], [cached:boolean] valueof(interface:table, name:string)
|
21
|
+
--
|
22
|
+
-- invoker:Receptacle
|
23
|
+
-- [results:object], [except:table] invoke(reference, operation, args...)
|
24
|
+
--------------------------------------------------------------------------------
|
25
|
+
|
26
|
+
local rawset = rawset
|
27
|
+
|
28
|
+
local tabop = require "loop.table" --[[VERBOSE]] local select = select
|
29
|
+
local ObjectCache = require "loop.collection.ObjectCache" --[[VERBOSE]] local type = type
|
30
|
+
|
31
|
+
local oo = require "oil.oo"
|
32
|
+
local Exception = require "oil.Exception"
|
33
|
+
local Proxies = require "oil.kernel.base.Proxies" --[[VERBOSE]] local verbose = require "oil.verbose"
|
34
|
+
|
35
|
+
module "oil.kernel.typed.Proxies"
|
36
|
+
|
37
|
+
oo.class(_M, Proxies)
|
38
|
+
|
39
|
+
--------------------------------------------------------------------------------
|
40
|
+
|
41
|
+
local function newclass(methodmaker)
|
42
|
+
return oo.class{
|
43
|
+
__call = oo.rawnew,
|
44
|
+
__index = function(cache, field) --[[VERBOSE]] verbose:proxies("first attempt to invoke operation ",field)
|
45
|
+
local manager = cache.__manager
|
46
|
+
local operation = manager.indexer:valueof(cache.__type, field)
|
47
|
+
if operation then
|
48
|
+
local function invoker(self, ...) --[[VERBOSE]] verbose:proxies("call to ",operation, ...)
|
49
|
+
return manager.requester:newrequest(self.__reference, operation, ...)
|
50
|
+
end
|
51
|
+
invoker = methodmaker(invoker, operation) --[[VERBOSE]] verbose:proxies("operation named ",field," was created")
|
52
|
+
cache[field] = invoker --[[VERBOSE]]
|
53
|
+
return invoker --[[VERBOSE]] else verbose:proxies("operation named ",field," not found")
|
54
|
+
end
|
55
|
+
end
|
56
|
+
}
|
57
|
+
end
|
58
|
+
|
59
|
+
--------------------------------------------------------------------------------
|
60
|
+
|
61
|
+
function proxynarrow(self, type)
|
62
|
+
return self.__manager.proxies:newproxy(self.__reference, type)
|
63
|
+
end
|
64
|
+
|
65
|
+
function __init(self, ...)
|
66
|
+
self = oo.rawnew(self, ...)
|
67
|
+
self.class = self.class or newclass(self.invoker)
|
68
|
+
self.classes = ObjectCache{
|
69
|
+
retrieve = function(_, type)
|
70
|
+
local class = self.class()
|
71
|
+
local updater = {}
|
72
|
+
function updater.notify()
|
73
|
+
tabop.clear(class)
|
74
|
+
class.__manager = self
|
75
|
+
class.__type = type
|
76
|
+
class.__tostring = proxytostring
|
77
|
+
class.__narrow = proxynarrow
|
78
|
+
class._narrow = proxynarrow -- TODO:[maia] DEPRECATED!
|
79
|
+
oo.initclass(class)
|
80
|
+
end
|
81
|
+
updater:notify()
|
82
|
+
if type.observer then
|
83
|
+
rawset(type.observer, class, updater)
|
84
|
+
end
|
85
|
+
return class
|
86
|
+
end
|
87
|
+
}
|
88
|
+
return self
|
89
|
+
end
|
90
|
+
|
91
|
+
--------------------------------------------------------------------------------
|
92
|
+
|
93
|
+
function newproxy(self, reference, type) --[[VERBOSE]] verbose:proxies(true, "new proxy to ",reference," with type ",type)
|
94
|
+
local result, except
|
95
|
+
if not type then --[[VERBOSE]] verbose:proxies(true, "interface of proxy not provided, attempt to discover it")
|
96
|
+
type, except = self.referrer:typeof(reference) --[[VERBOSE]] verbose:proxies(false, "interface of proxy",(type and " " or " not "),"found")
|
97
|
+
end
|
98
|
+
if type then
|
99
|
+
type, except = self.types:resolve(type)
|
100
|
+
if type then
|
101
|
+
result = self.classes[type]{ __reference = reference }
|
102
|
+
end
|
103
|
+
end --[[VERBOSE]] verbose:proxies(false)
|
104
|
+
return result, except
|
105
|
+
end
|
106
|
+
|
107
|
+
function excepthandler(self, handler, type) --[[VERBOSE]] verbose:proxies("setting exception handler for proxies of ",type)
|
108
|
+
local result, except = true
|
109
|
+
if type == nil then
|
110
|
+
result, except = Proxies.excepthandler(self, handler)
|
111
|
+
else
|
112
|
+
result, except = self.types:resolve(type)
|
113
|
+
if result then
|
114
|
+
type = result
|
115
|
+
local class = self.classes[type]
|
116
|
+
class.__exceptions = handler
|
117
|
+
result, except = class, nil
|
118
|
+
end
|
119
|
+
end
|
120
|
+
return result, except
|
121
|
+
end
|
122
|
+
|
123
|
+
--------------------------------------------------------------------------------
|
124
|
+
|
125
|
+
--[[VERBOSE]] function verbose.custom:proxies(...)
|
126
|
+
--[[VERBOSE]] local params
|
127
|
+
--[[VERBOSE]] for i = 1, select("#", ...) do
|
128
|
+
--[[VERBOSE]] local value = select(i, ...)
|
129
|
+
--[[VERBOSE]] local type = type(value)
|
130
|
+
--[[VERBOSE]] if type == "string" then
|
131
|
+
--[[VERBOSE]] if params then
|
132
|
+
--[[VERBOSE]] self.viewer.output:write(params)
|
133
|
+
--[[VERBOSE]] params = ", "
|
134
|
+
--[[VERBOSE]] self.viewer:write((value:gsub("[^%w%p%s]", "?")))
|
135
|
+
--[[VERBOSE]] else
|
136
|
+
--[[VERBOSE]] self.viewer.output:write(value)
|
137
|
+
--[[VERBOSE]] end
|
138
|
+
--[[VERBOSE]] elseif not params and type == "table" and
|
139
|
+
--[[VERBOSE]] value._type == "operation" then
|
140
|
+
--[[VERBOSE]] params = "("
|
141
|
+
--[[VERBOSE]] self.viewer.output:write(value.name)
|
142
|
+
--[[VERBOSE]] else
|
143
|
+
--[[VERBOSE]] if params then
|
144
|
+
--[[VERBOSE]] self.viewer.output:write(params)
|
145
|
+
--[[VERBOSE]] params = ", "
|
146
|
+
--[[VERBOSE]] end
|
147
|
+
--[[VERBOSE]] self.viewer:write(value)
|
148
|
+
--[[VERBOSE]] end
|
149
|
+
--[[VERBOSE]] end
|
150
|
+
--[[VERBOSE]] if params then
|
151
|
+
--[[VERBOSE]] self.viewer.output:write(params == "(" and "()" or ")")
|
152
|
+
--[[VERBOSE]] end
|
153
|
+
--[[VERBOSE]] end
|
@@ -0,0 +1,137 @@
|
|
1
|
+
--------------------------------------------------------------------------------
|
2
|
+
------------------------------ ##### ## ------------------------------
|
3
|
+
------------------------------ ## ## # ## ------------------------------
|
4
|
+
------------------------------ ## ## ## ## ------------------------------
|
5
|
+
------------------------------ ## ## # ## ------------------------------
|
6
|
+
------------------------------ ##### ### ###### ------------------------------
|
7
|
+
-------------------------------- --------------------------------
|
8
|
+
----------------------- An Object Request Broker in Lua ------------------------
|
9
|
+
--------------------------------------------------------------------------------
|
10
|
+
-- Project: OiL - ORB in Lua: An Object Request Broker in Lua --
|
11
|
+
-- Release: 0.5 --
|
12
|
+
-- Title : Server-Side Broker --
|
13
|
+
-- Authors: Renato Maia <maia@inf.puc-rio.br> --
|
14
|
+
--------------------------------------------------------------------------------
|
15
|
+
-- broker:Facet
|
16
|
+
-- servant:object register(impl:object, [objectkey:string])
|
17
|
+
-- impl:object remove(servant:object|impl:object|objectkey:string)
|
18
|
+
-- impl:object retrieve(objectkey:string)
|
19
|
+
-- reference:string tostring(servant:object)
|
20
|
+
--
|
21
|
+
-- referrer:Receptacle
|
22
|
+
-- reference:table newreference(objectkey:string, accesspointinfo:table...)
|
23
|
+
-- stringfiedref:string encode(reference:table)
|
24
|
+
--
|
25
|
+
-- types:Receptacle
|
26
|
+
-- type:table resolve(type:string)
|
27
|
+
--------------------------------------------------------------------------------
|
28
|
+
|
29
|
+
local getmetatable = getmetatable
|
30
|
+
local rawget = rawget
|
31
|
+
local type = type
|
32
|
+
|
33
|
+
local table = require "loop.table"
|
34
|
+
|
35
|
+
local oo = require "oil.oo"
|
36
|
+
local Servants = require "oil.kernel.base.Servants" --[[VERBOSE]] local verbose = require "oil.verbose"
|
37
|
+
|
38
|
+
module "oil.kernel.typed.Servants"
|
39
|
+
|
40
|
+
oo.class(_M, Servants)
|
41
|
+
|
42
|
+
--------------------------------------------------------------------------------
|
43
|
+
--------------------------------------------------------------------------------
|
44
|
+
|
45
|
+
function addentry(self, key, impl, type)
|
46
|
+
local entry = self.map[key]
|
47
|
+
if entry == nil
|
48
|
+
or entry.object ~= impl
|
49
|
+
or entry.type ~= type
|
50
|
+
then
|
51
|
+
return Servants.addentry(self, key, { object = impl, type = type })
|
52
|
+
end
|
53
|
+
return true
|
54
|
+
end
|
55
|
+
|
56
|
+
function removeentry(self, key)
|
57
|
+
local result, except = Servants.removeentry(self, key)
|
58
|
+
if result then result, except = result.object, result.type end
|
59
|
+
return result, except
|
60
|
+
end
|
61
|
+
|
62
|
+
--------------------------------------------------------------------------------
|
63
|
+
--------------------------------------------------------------------------------
|
64
|
+
|
65
|
+
function resolvetype(self, object)
|
66
|
+
local objtype = nil
|
67
|
+
local meta = getmetatable(object)
|
68
|
+
if type(object) == "table" or (meta ~= nil and meta.__index) then
|
69
|
+
objtype = object.__type
|
70
|
+
end
|
71
|
+
if objtype == nil and meta ~= nil then
|
72
|
+
objtype = meta.__type
|
73
|
+
end
|
74
|
+
return self.types:resolve(objtype)
|
75
|
+
end
|
76
|
+
|
77
|
+
function resolvekey(self, object, objtype)
|
78
|
+
local key = nil
|
79
|
+
local meta = getmetatable(object)
|
80
|
+
if type(object) == "table" or (meta ~= nil and meta.__index) then
|
81
|
+
key = object.__objkey
|
82
|
+
end
|
83
|
+
if key == nil and meta ~= nil then
|
84
|
+
key = meta.__objkey
|
85
|
+
end
|
86
|
+
if key == nil and objtype ~= nil then
|
87
|
+
key = self.prefix..self:hashof(object)..self:hashof(objtype)
|
88
|
+
end
|
89
|
+
return key
|
90
|
+
end
|
91
|
+
|
92
|
+
function register(self, object, objkey, objtype)
|
93
|
+
local except
|
94
|
+
if objtype == nil then
|
95
|
+
objtype, except = self:resolvetype(object)
|
96
|
+
else
|
97
|
+
objtype, except = self.types:resolve(objtype)
|
98
|
+
end
|
99
|
+
if not objtype then
|
100
|
+
return nil, except
|
101
|
+
end
|
102
|
+
if objkey == nil then
|
103
|
+
objkey = self:resolvekey(object, objtype)
|
104
|
+
end
|
105
|
+
return Servants.register(self, object, objkey, objtype)
|
106
|
+
end
|
107
|
+
|
108
|
+
function remove(self, objkey, objtype)
|
109
|
+
local keytype = type(objkey)
|
110
|
+
if keytype ~= "string" then
|
111
|
+
local object = objkey
|
112
|
+
if keytype == "table" then
|
113
|
+
objkey = rawget(object, "__key")
|
114
|
+
keytype = type(objkey)
|
115
|
+
end
|
116
|
+
if keytype ~= "string" then
|
117
|
+
objkey = self:resolvekey(object)
|
118
|
+
if objkey == nil then
|
119
|
+
local except
|
120
|
+
if objtype == nil then
|
121
|
+
objtype, except = self:resolvetype(object)
|
122
|
+
end
|
123
|
+
if not objtype then --[[VERBOSE]] verbose:servants("unable to identify type of object ",object)
|
124
|
+
return nil, except
|
125
|
+
end
|
126
|
+
objkey = self.prefix..self:hashof(object)..self:hashof(objtype)
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
130
|
+
return self:removeentry(objkey)
|
131
|
+
end
|
132
|
+
|
133
|
+
function retrieve(self, key)
|
134
|
+
local result, except = Servants.retrieve(self, key)
|
135
|
+
if result then result, except = result.object, result.type end
|
136
|
+
return result, except
|
137
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
--------------------------------------------------------------------------------
|
2
|
+
------------------------------ ##### ## ------------------------------
|
3
|
+
------------------------------ ## ## # ## ------------------------------
|
4
|
+
------------------------------ ## ## ## ## ------------------------------
|
5
|
+
------------------------------ ## ## # ## ------------------------------
|
6
|
+
------------------------------ ##### ### ###### ------------------------------
|
7
|
+
-------------------------------- --------------------------------
|
8
|
+
----------------------- An Object Request Broker in Lua ------------------------
|
9
|
+
--------------------------------------------------------------------------------
|
10
|
+
-- Project: OiL - ORB in Lua --
|
11
|
+
-- Release: 0.5 --
|
12
|
+
-- Title : Client-side CORBA GIOP Protocol specific to IIOP --
|
13
|
+
-- Authors: Renato Maia <maia@inf.puc-rio.br> --
|
14
|
+
--------------------------------------------------------------------------------
|
15
|
+
-- channels:Facet
|
16
|
+
-- channel:object retieve(configs:table)
|
17
|
+
-- channel:object select(channel|configs...)
|
18
|
+
-- configs:table default(configs:table)
|
19
|
+
--
|
20
|
+
-- sockets:Receptacle
|
21
|
+
-- socket:object tcp()
|
22
|
+
-- input:table, output:table select([input:table], [output:table], [timeout:number])
|
23
|
+
--------------------------------------------------------------------------------
|
24
|
+
|
25
|
+
local pairs = pairs
|
26
|
+
local require = require
|
27
|
+
|
28
|
+
local table = require "loop.table"
|
29
|
+
local StringStream = require "loop.serial.StringStream"
|
30
|
+
|
31
|
+
local oo = require "oil.oo" --[[VERBOSE]] local verbose = require "oil.verbose"
|
32
|
+
|
33
|
+
module("oil.ludo.Codec", oo.class)
|
34
|
+
|
35
|
+
--------------------------------------------------------------------------------
|
36
|
+
--------------------------------------------------------------------------------
|
37
|
+
|
38
|
+
local WeakKey = oo.class{ __mode = "k" }
|
39
|
+
local WeakValues = oo.class{ __mode = "v" }
|
40
|
+
|
41
|
+
function __init(self, ...)
|
42
|
+
self = oo.rawnew(self, ...)
|
43
|
+
self.names = WeakKey(self.names)
|
44
|
+
self.values = WeakValues(self.values)
|
45
|
+
return self
|
46
|
+
end
|
47
|
+
|
48
|
+
function localresources(self, resources)
|
49
|
+
local names = self.names
|
50
|
+
local values = self.values
|
51
|
+
for name, resource in pairs(resources) do
|
52
|
+
names[resource] = name
|
53
|
+
values[name] = resource
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
function encoder(self)
|
58
|
+
return StringStream(table.copy(self.names))
|
59
|
+
end
|
60
|
+
|
61
|
+
function decoder(self, stream)
|
62
|
+
return StringStream{
|
63
|
+
environment = table.copy(self.values),
|
64
|
+
data = stream,
|
65
|
+
}
|
66
|
+
end
|
@@ -0,0 +1,103 @@
|
|
1
|
+
--------------------------------------------------------------------------------
|
2
|
+
------------------------------ ##### ## ------------------------------
|
3
|
+
------------------------------ ## ## # ## ------------------------------
|
4
|
+
------------------------------ ## ## ## ## ------------------------------
|
5
|
+
------------------------------ ## ## # ## ------------------------------
|
6
|
+
------------------------------ ##### ### ###### ------------------------------
|
7
|
+
-------------------------------- --------------------------------
|
8
|
+
----------------------- An Object Request Broker in Lua ------------------------
|
9
|
+
--------------------------------------------------------------------------------
|
10
|
+
-- Project: OiL - ORB in Lua --
|
11
|
+
-- Release: 0.5 --
|
12
|
+
-- Title : Client-side CORBA GIOP Protocol specific to IIOP --
|
13
|
+
-- Authors: Renato Maia <maia@inf.puc-rio.br> --
|
14
|
+
--------------------------------------------------------------------------------
|
15
|
+
-- channels:Facet
|
16
|
+
-- channel:object retieve(configs:table)
|
17
|
+
-- channel:object select(channel|configs...)
|
18
|
+
-- configs:table default(configs:table)
|
19
|
+
--
|
20
|
+
-- sockets:Receptacle
|
21
|
+
-- socket:object tcp()
|
22
|
+
-- input:table, output:table select([input:table], [output:table], [timeout:number])
|
23
|
+
--------------------------------------------------------------------------------
|
24
|
+
|
25
|
+
local getmetatable = getmetatable
|
26
|
+
local pairs = pairs
|
27
|
+
local tonumber = tonumber
|
28
|
+
local tostring = tostring
|
29
|
+
local rawget = rawget
|
30
|
+
local rawset = rawset
|
31
|
+
|
32
|
+
local table = require "loop.table"
|
33
|
+
local StringStream = require "loop.serial.StringStream"
|
34
|
+
|
35
|
+
local oo = require "oil.oo"
|
36
|
+
local Codec = require "oil.ludo.Codec" --[[VERBOSE]] local verbose = require "oil.verbose"
|
37
|
+
|
38
|
+
module "oil.ludo.CodecByRef"
|
39
|
+
|
40
|
+
oo.class(_M, Codec)
|
41
|
+
|
42
|
+
--------------------------------------------------------------------------------
|
43
|
+
--------------------------------------------------------------------------------
|
44
|
+
|
45
|
+
-- TODO:[maia] copied from loop.serial.Serializer. Make it a member function
|
46
|
+
local function getidfor(value)
|
47
|
+
local meta = getmetatable(value)
|
48
|
+
local backup
|
49
|
+
if meta then
|
50
|
+
backup = rawget(meta, "__tostring")
|
51
|
+
if backup ~= nil then rawset(meta, "__tostring", nil) end
|
52
|
+
end
|
53
|
+
local id = tostring(value):match("%l+: (%w+)")
|
54
|
+
if meta then
|
55
|
+
if backup ~= nil then rawset(meta, "__tostring", backup) end
|
56
|
+
end
|
57
|
+
return tonumber(id, 16) or id
|
58
|
+
end
|
59
|
+
|
60
|
+
local function serialproxy(self, value, id) --[[VERBOSE]] verbose:marshal("marshalling proxy for value ",value)
|
61
|
+
self[value] = self.namespace..":value("..id..")"
|
62
|
+
self:write(self.namespace,":value(",id,",'table',")
|
63
|
+
self:write("proxies:resolve(")
|
64
|
+
local reference = self.servants:register(value).__reference
|
65
|
+
StringStream.table(self, reference, getidfor(reference))
|
66
|
+
self:write("))")
|
67
|
+
end
|
68
|
+
|
69
|
+
local function serialtable(self, value, id) --[[VERBOSE]] verbose:marshal(true, "marshalling of table ",value)
|
70
|
+
local reference = rawget(value, "__reference")
|
71
|
+
if reference then --[[VERBOSE]] verbose:marshal "table is a proxy"
|
72
|
+
self[value] = self.namespace..":value("..id..")"
|
73
|
+
self:write(self.namespace,":value(",id,",'table',")
|
74
|
+
self:write("proxies:resolve(")
|
75
|
+
StringStream.table(self, reference, getidfor(reference))
|
76
|
+
self:write("))")
|
77
|
+
else
|
78
|
+
local meta = getmetatable(value)
|
79
|
+
if meta and meta.__marshalcopy then --[[VERBOSE]] verbose:marshal "table by copy"
|
80
|
+
StringStream.table(self, value, id)
|
81
|
+
else --[[VERBOSE]] verbose:marshal "table by reference"
|
82
|
+
serialproxy(self, value, id)
|
83
|
+
end --[[VERBOSE]] verbose:marshal(false)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
local LuDOStream = oo.class({
|
88
|
+
table = serialtable,
|
89
|
+
thread = serialproxy,
|
90
|
+
userdata = serialproxy,
|
91
|
+
["function"] = serialproxy,
|
92
|
+
}, StringStream)
|
93
|
+
|
94
|
+
function encoder(self)
|
95
|
+
return LuDOStream(table.copy(self.names, {servants = self.servants}))
|
96
|
+
end
|
97
|
+
|
98
|
+
function decoder(self, stream)
|
99
|
+
return StringStream{
|
100
|
+
environment = table.copy(self.values, {proxies = self.proxies}),
|
101
|
+
data = stream,
|
102
|
+
}
|
103
|
+
end
|