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,50 @@
|
|
1
|
+
--------------------------------------------------------------------------------
|
2
|
+
---------------------- ## ##### ##### ###### -----------------------
|
3
|
+
---------------------- ## ## ## ## ## ## ## -----------------------
|
4
|
+
---------------------- ## ## ## ## ## ###### -----------------------
|
5
|
+
---------------------- ## ## ## ## ## ## -----------------------
|
6
|
+
---------------------- ###### ##### ##### ## -----------------------
|
7
|
+
---------------------- -----------------------
|
8
|
+
----------------------- Lua Object-Oriented Programming ------------------------
|
9
|
+
--------------------------------------------------------------------------------
|
10
|
+
-- Project: LOOP Class Library --
|
11
|
+
-- Release: 2.3 beta --
|
12
|
+
-- Title : Conditional Compiler for Code Generation --
|
13
|
+
-- Author : Renato Maia <maia@inf.puc-rio.br> --
|
14
|
+
--------------------------------------------------------------------------------
|
15
|
+
|
16
|
+
local type = type
|
17
|
+
local assert = assert
|
18
|
+
local ipairs = ipairs
|
19
|
+
local setfenv = setfenv
|
20
|
+
local loadstring = loadstring
|
21
|
+
|
22
|
+
local table = require "table"
|
23
|
+
local oo = require "loop.base"
|
24
|
+
|
25
|
+
module("loop.compiler.Conditional", oo.class)
|
26
|
+
|
27
|
+
function source(self, includes)
|
28
|
+
local func = {}
|
29
|
+
for line, strip in ipairs(self) do
|
30
|
+
local cond = strip[2]
|
31
|
+
if cond then
|
32
|
+
cond = assert(loadstring("return "..cond,
|
33
|
+
"compiler condition "..line..":"))
|
34
|
+
setfenv(cond, includes)
|
35
|
+
cond = cond()
|
36
|
+
else
|
37
|
+
cond = true
|
38
|
+
end
|
39
|
+
if cond then
|
40
|
+
assert(type(strip[1]) == "string",
|
41
|
+
"code string is not a string")
|
42
|
+
func[#func+1] = strip[1]
|
43
|
+
end
|
44
|
+
end
|
45
|
+
return table.concat(func, "\n")
|
46
|
+
end
|
47
|
+
|
48
|
+
function execute(self, includes, ...)
|
49
|
+
return assert(loadstring(self:source(includes), self.name))(...)
|
50
|
+
end
|
@@ -0,0 +1,215 @@
|
|
1
|
+
--------------------------------------------------------------------------------
|
2
|
+
---------------------- ## ##### ##### ###### -----------------------
|
3
|
+
---------------------- ## ## ## ## ## ## ## -----------------------
|
4
|
+
---------------------- ## ## ## ## ## ###### -----------------------
|
5
|
+
---------------------- ## ## ## ## ## ## -----------------------
|
6
|
+
---------------------- ###### ##### ##### ## -----------------------
|
7
|
+
---------------------- -----------------------
|
8
|
+
----------------------- Lua Object-Oriented Programming ------------------------
|
9
|
+
--------------------------------------------------------------------------------
|
10
|
+
-- Project: LOOP Class Library --
|
11
|
+
-- Release: 2.3 beta --
|
12
|
+
-- Title : Simple Expression Parser --
|
13
|
+
-- Author : Renato Maia <maia@inf.puc-rio.br> --
|
14
|
+
--------------------------------------------------------------------------------
|
15
|
+
|
16
|
+
local luaerror = error
|
17
|
+
local pairs = pairs
|
18
|
+
local ipairs = ipairs
|
19
|
+
local unpack = unpack
|
20
|
+
local select = select
|
21
|
+
|
22
|
+
require "string"
|
23
|
+
local oo = require "loop.base"
|
24
|
+
|
25
|
+
--[[VERBOSE]] local verbose = require("loop.debug.Verbose"){
|
26
|
+
--[[VERBOSE]] groups = { expression = {"operator","value","parse"} }
|
27
|
+
--[[VERBOSE]] }
|
28
|
+
--[[VERBOSE]] verbose:flag("expression", false)
|
29
|
+
|
30
|
+
module("loop.compiler.Expression", oo.class)
|
31
|
+
|
32
|
+
pos = 1
|
33
|
+
count = 0
|
34
|
+
precedence = {}
|
35
|
+
|
36
|
+
local pattern = "^ *%s"
|
37
|
+
function __init(self, object)
|
38
|
+
self = oo.rawnew(self, object)
|
39
|
+
|
40
|
+
if not self.operands and self.values then
|
41
|
+
local operands = {}
|
42
|
+
for kind, spec in pairs(self.values) do
|
43
|
+
operands[kind] = pattern:format(spec)
|
44
|
+
end
|
45
|
+
self.operands = operands
|
46
|
+
end
|
47
|
+
|
48
|
+
if not self.format and self.operators then
|
49
|
+
local opformat = {}
|
50
|
+
for name, spec in pairs(self.operators) do
|
51
|
+
local format = {}
|
52
|
+
local pos = 1
|
53
|
+
while pos <= #spec do
|
54
|
+
if spec:find("^ ", pos) then
|
55
|
+
format[#format+1] = true
|
56
|
+
pos = pos + 1
|
57
|
+
else
|
58
|
+
local keyword = spec:match("^[^ ]+", pos)
|
59
|
+
format[#format+1] = keyword
|
60
|
+
pos = pos + #keyword
|
61
|
+
end
|
62
|
+
end
|
63
|
+
opformat[name] = format
|
64
|
+
end
|
65
|
+
self.format = opformat
|
66
|
+
end
|
67
|
+
|
68
|
+
self.values = self.values or {}
|
69
|
+
|
70
|
+
return self
|
71
|
+
end
|
72
|
+
|
73
|
+
function push(self, kind, value)
|
74
|
+
self[#self+1] = kind
|
75
|
+
if kind == true then
|
76
|
+
self.count = self.count + 1
|
77
|
+
self.values[self.count] = value
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
function pop(self)
|
82
|
+
local kind = self[#self]
|
83
|
+
self[#self] = nil
|
84
|
+
local value
|
85
|
+
if kind == true then
|
86
|
+
value = self.values[self.count]
|
87
|
+
self.count = self.count - 1
|
88
|
+
end
|
89
|
+
return kind, value
|
90
|
+
end
|
91
|
+
|
92
|
+
function get(self, count)
|
93
|
+
local nvals = 0
|
94
|
+
for _=1, count do
|
95
|
+
if self[#self] == true then
|
96
|
+
nvals = nvals + 1
|
97
|
+
end
|
98
|
+
self[#self] = nil
|
99
|
+
end
|
100
|
+
self.count = self.count - nvals
|
101
|
+
return unpack(self.values, self.count + 1, self.count + nvals)
|
102
|
+
end
|
103
|
+
|
104
|
+
local errmsg = "%s at position %d"
|
105
|
+
function error(self, msg)
|
106
|
+
return luaerror(errmsg:format(msg, self.pos))
|
107
|
+
end
|
108
|
+
|
109
|
+
function done(self)
|
110
|
+
return (self.text:match("^%s*$", self.pos))
|
111
|
+
end
|
112
|
+
|
113
|
+
function token(self, token)
|
114
|
+
local pos = select(2, self.text:find("^%s*[^%s]", self.pos))
|
115
|
+
if pos and (self.text:find(token, pos, true) == pos) then
|
116
|
+
self.pos = pos + #token
|
117
|
+
return true
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
function match(self, pattern)
|
122
|
+
local first, last, value = self.text:find(pattern, self.pos)
|
123
|
+
if first then
|
124
|
+
self.pos = last + 1
|
125
|
+
return value
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
function operator(self, name, level, start)
|
130
|
+
local format = self.format[name]
|
131
|
+
for index, kind in ipairs(format) do
|
132
|
+
local parsed = self[start + index]
|
133
|
+
if parsed then
|
134
|
+
if parsed ~= kind then --[[VERBOSE]] verbose:operator("parsed value mismatch, got '",parsed,"' ('",kind,"' expected)")
|
135
|
+
return false --[[VERBOSE]] else verbose:operator("parsed value matched, got '",parsed,"'")
|
136
|
+
end
|
137
|
+
else
|
138
|
+
if kind == true then --[[VERBOSE]] verbose:operator(true, "operand expected, parsing...")
|
139
|
+
if not self:parse(level + 1, #self) then --[[VERBOSE]] verbose:operator(false, "operand parsing failed")
|
140
|
+
return false
|
141
|
+
end --[[VERBOSE]] verbose:operator(false, "operand parsed successfully")
|
142
|
+
else --[[VERBOSE]] verbose:operator("token ",kind," expected")
|
143
|
+
if self:token(kind) then --[[VERBOSE]] verbose:operator("token found successfully")
|
144
|
+
self:push(kind)
|
145
|
+
else --[[VERBOSE]] verbose:operator("token not found")
|
146
|
+
return false
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end --[[VERBOSE]] verbose:operator(true, "operator ",name," matched")
|
151
|
+
self:push(true, self[name](self, self:get(#format))) --[[VERBOSE]] verbose:operator(false, "operator ",name," callback called")
|
152
|
+
return true
|
153
|
+
end
|
154
|
+
|
155
|
+
function value(self)
|
156
|
+
if self:token("(") then --[[VERBOSE]] verbose:value(true, "'(' found at ",self.pos)
|
157
|
+
local start = #self
|
158
|
+
if not self:parse(1, start) then --[[VERBOSE]] verbose:value(false, "error in enclosed expression")
|
159
|
+
self:error("value expected")
|
160
|
+
elseif #self ~= start + 1 or self[#self] ~= true then --[[VERBOSE]] verbose:value(false, "enclosed expression incomplete (too many parsed values left)")
|
161
|
+
self:error("incomplete expression")
|
162
|
+
elseif not self:token(")") then --[[VERBOSE]] verbose:value(false, "')' not found")
|
163
|
+
self:error("')' expected")
|
164
|
+
end --[[VERBOSE]] verbose:value(false, "matching ')' found")
|
165
|
+
return true
|
166
|
+
else --[[VERBOSE]] verbose:value(true, "parsing value at ",self.pos)
|
167
|
+
for kind, pattern in pairs(self.operands) do --[[VERBOSE]] verbose:value("attempt to match value as ",kind)
|
168
|
+
local value = self:match(pattern)
|
169
|
+
if value then --[[VERBOSE]] verbose:value(true, "value found as ",kind)
|
170
|
+
self:push(true, self[kind](self, value)) --[[VERBOSE]] verbose:value(false, "value evaluated to ",self.values[self.count])
|
171
|
+
return true --[[VERBOSE]],verbose:value(false)
|
172
|
+
end
|
173
|
+
end --[[VERBOSE]] verbose:value(false, "no value found at ",self.pos)
|
174
|
+
return false
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
function parse(self, level, start)
|
179
|
+
if not self:done() then
|
180
|
+
local ops = self.precedence[level]
|
181
|
+
if ops then --[[VERBOSE]] verbose:parse(true, "parsing operators of level ",level)
|
182
|
+
local i = 1
|
183
|
+
while ops[i] do
|
184
|
+
local op = ops[i] --[[VERBOSE]] verbose:parse(true, "attempt to match operator ",op)
|
185
|
+
if self:operator(ops[i], level, start) then --[[VERBOSE]] verbose:parse(false, "operator ",op," successfully matched")
|
186
|
+
i = 1
|
187
|
+
else --[[VERBOSE]] verbose:parse(false, "operator ",op," not matched")
|
188
|
+
i = i + 1
|
189
|
+
end
|
190
|
+
end
|
191
|
+
if #self == start then --[[VERBOSE]] verbose:parse(false, "no value evaluated by operators of level ",level)
|
192
|
+
return self:parse(level + 1, start)
|
193
|
+
elseif self[start + 1] == true then --[[VERBOSE]] verbose:parse(false, "values evaluated by operators of level ",level)
|
194
|
+
return true
|
195
|
+
end
|
196
|
+
else --[[VERBOSE]] verbose:parse(true, "parsing value")
|
197
|
+
return self:value() --[[VERBOSE]] ,verbose:parse(false)
|
198
|
+
end
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
function evaluate(self, text, pos)
|
203
|
+
if text then
|
204
|
+
self.text = text
|
205
|
+
self.pos = pos
|
206
|
+
end
|
207
|
+
if not self:parse(1, 0) then
|
208
|
+
self:error("parsing failed")
|
209
|
+
elseif not self:done() then
|
210
|
+
self:error("malformed expression")
|
211
|
+
elseif #self ~= 1 or self[1] ~= true then
|
212
|
+
self:error("incomplete expression")
|
213
|
+
end
|
214
|
+
return self:get(1)
|
215
|
+
end
|
@@ -0,0 +1,221 @@
|
|
1
|
+
--------------------------------------------------------------------------------
|
2
|
+
---------------------- ## ##### ##### ###### -----------------------
|
3
|
+
---------------------- ## ## ## ## ## ## ## -----------------------
|
4
|
+
---------------------- ## ## ## ## ## ###### -----------------------
|
5
|
+
---------------------- ## ## ## ## ## ## -----------------------
|
6
|
+
---------------------- ###### ##### ##### ## -----------------------
|
7
|
+
---------------------- -----------------------
|
8
|
+
----------------------- Lua Object-Oriented Programming ------------------------
|
9
|
+
--------------------------------------------------------------------------------
|
10
|
+
-- Project: LOOP - Lua Object-Oriented Programming --
|
11
|
+
-- Release: 2.3 beta --
|
12
|
+
-- Title : Base Component Model --
|
13
|
+
-- Author : Renato Maia <maia@inf.puc-rio.br> --
|
14
|
+
--------------------------------------------------------------------------------
|
15
|
+
-- Exported API: --
|
16
|
+
-- Template --
|
17
|
+
-- Facet --
|
18
|
+
-- Receptacle --
|
19
|
+
-- ListReceptacle --
|
20
|
+
-- HashReceptacle --
|
21
|
+
-- SetReceptacle --
|
22
|
+
-- factoryof(component) --
|
23
|
+
-- templateof(factory|component) --
|
24
|
+
-- ports(template) --
|
25
|
+
-- segmentof(portname, component) --
|
26
|
+
--------------------------------------------------------------------------------
|
27
|
+
|
28
|
+
local next = next
|
29
|
+
local pairs = pairs
|
30
|
+
local pcall = pcall
|
31
|
+
local rawget = rawget
|
32
|
+
local rawset = rawset
|
33
|
+
local select = select
|
34
|
+
local type = type
|
35
|
+
|
36
|
+
local oo = require "loop.cached"
|
37
|
+
|
38
|
+
module "loop.component.base"
|
39
|
+
|
40
|
+
--------------------------------------------------------------------------------
|
41
|
+
|
42
|
+
BaseTemplate = oo.class()
|
43
|
+
|
44
|
+
function BaseTemplate:__call(...)
|
45
|
+
return self:__build(self:__new(...))
|
46
|
+
end
|
47
|
+
|
48
|
+
function BaseTemplate:__new(...)
|
49
|
+
local comp = self.__component or self[1]
|
50
|
+
if comp then
|
51
|
+
comp = comp(...)
|
52
|
+
comp.__component = comp
|
53
|
+
else
|
54
|
+
comp = ... or {}
|
55
|
+
end
|
56
|
+
comp.__factory = self
|
57
|
+
for port, class in pairs(self) do
|
58
|
+
if type(port) == "string" and port:match("^%a[%w_]*$") then
|
59
|
+
comp[port] = class(comp[port], comp)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
return comp
|
63
|
+
end
|
64
|
+
|
65
|
+
local function tryindex(segment) return segment.context end
|
66
|
+
function BaseTemplate:__setcontext(segment, context)
|
67
|
+
local success, setcontext = pcall(tryindex, segment)
|
68
|
+
if success and setcontext ~= nil then
|
69
|
+
if type(setcontext) == "function"
|
70
|
+
then setcontext(segment, context)
|
71
|
+
else segment.context = context
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
function BaseTemplate:__build(segments)
|
77
|
+
for port, class in oo.allmembers(oo.classof(self)) do
|
78
|
+
if port:match("^%a[%w_]*$") then
|
79
|
+
class(segments, port, segments)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
segments.__reference = segments
|
83
|
+
for port in pairs(self) do
|
84
|
+
if port == 1
|
85
|
+
then self:__setcontext(segments.__component, segments)
|
86
|
+
else self:__setcontext(segments[port], segments)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
return segments
|
90
|
+
end
|
91
|
+
|
92
|
+
function Template(template, ...)
|
93
|
+
if select("#", ...) > 0
|
94
|
+
then return oo.class(template, ...)
|
95
|
+
else return oo.class(template, BaseTemplate)
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
--------------------------------------------------------------------------------
|
100
|
+
|
101
|
+
function factoryof(component)
|
102
|
+
return component.__factory
|
103
|
+
end
|
104
|
+
|
105
|
+
function templateof(object)
|
106
|
+
return oo.classof(factoryof(object) or object)
|
107
|
+
end
|
108
|
+
|
109
|
+
local nextmember
|
110
|
+
local function portiterator(state, name)
|
111
|
+
local port
|
112
|
+
repeat
|
113
|
+
name, port = nextmember(state, name)
|
114
|
+
if name == nil then return end
|
115
|
+
until name:find("^%a")
|
116
|
+
return name, port
|
117
|
+
end
|
118
|
+
function ports(template)
|
119
|
+
if not oo.subclassof(template, BaseTemplate) then
|
120
|
+
template = templateof(template)
|
121
|
+
end
|
122
|
+
local state, var
|
123
|
+
nextmember, state, var = oo.allmembers(template)
|
124
|
+
return portiterator, state, var
|
125
|
+
end
|
126
|
+
|
127
|
+
function segmentof(comp, port)
|
128
|
+
return comp[port]
|
129
|
+
end
|
130
|
+
|
131
|
+
--------------------------------------------------------------------------------
|
132
|
+
|
133
|
+
function addport(comp, name, port, class)
|
134
|
+
if class then
|
135
|
+
comp[name] = class(comp[name], comp)
|
136
|
+
end
|
137
|
+
port(comp, name, comp)
|
138
|
+
comp.__factory:__setcontext(comp[name], context)
|
139
|
+
end
|
140
|
+
|
141
|
+
function removeport(comp, name)
|
142
|
+
comp[name] = nil
|
143
|
+
end
|
144
|
+
|
145
|
+
--------------------------------------------------------------------------------
|
146
|
+
|
147
|
+
function Facet(segments, name)
|
148
|
+
segments[name] = segments[name] or
|
149
|
+
segments.__component[name] or
|
150
|
+
segments.__component
|
151
|
+
return false
|
152
|
+
end
|
153
|
+
|
154
|
+
--------------------------------------------------------------------------------
|
155
|
+
|
156
|
+
function Receptacle()
|
157
|
+
return false
|
158
|
+
end
|
159
|
+
|
160
|
+
--------------------------------------------------------------------------------
|
161
|
+
|
162
|
+
MultipleReceptacle = oo.class{
|
163
|
+
__all = pairs,
|
164
|
+
__hasany = next,
|
165
|
+
__get = rawget,
|
166
|
+
}
|
167
|
+
|
168
|
+
function MultipleReceptacle:__init(segments, name)
|
169
|
+
local receptacle = oo.rawnew(self, segments[name])
|
170
|
+
segments[name] = receptacle
|
171
|
+
return receptacle
|
172
|
+
end
|
173
|
+
|
174
|
+
function MultipleReceptacle:__newindex(key, value)
|
175
|
+
if value == nil
|
176
|
+
then self:__unbind(key)
|
177
|
+
else self:__bind(value, key)
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
function MultipleReceptacle:__unbind(key)
|
182
|
+
local port = rawget(self, key)
|
183
|
+
rawset(self, key, nil)
|
184
|
+
return port
|
185
|
+
end
|
186
|
+
|
187
|
+
--------------------------------------------------------------------------------
|
188
|
+
|
189
|
+
ListReceptacle = oo.class({}, MultipleReceptacle)
|
190
|
+
|
191
|
+
function ListReceptacle:__bind(port)
|
192
|
+
local index = #self + 1
|
193
|
+
rawset(self, index, port)
|
194
|
+
return index
|
195
|
+
end
|
196
|
+
|
197
|
+
--------------------------------------------------------------------------------
|
198
|
+
|
199
|
+
HashReceptacle = oo.class({}, MultipleReceptacle)
|
200
|
+
|
201
|
+
function HashReceptacle:__bind(port, key)
|
202
|
+
rawset(self, key, port)
|
203
|
+
return key
|
204
|
+
end
|
205
|
+
|
206
|
+
--------------------------------------------------------------------------------
|
207
|
+
|
208
|
+
SetReceptacle = oo.class({}, MultipleReceptacle)
|
209
|
+
|
210
|
+
function SetReceptacle:__bind(port)
|
211
|
+
rawset(self, port, port)
|
212
|
+
return port
|
213
|
+
end
|
214
|
+
|
215
|
+
--------------------------------------------------------------------------------
|
216
|
+
|
217
|
+
_M[Facet ] = "Facet"
|
218
|
+
_M[Receptacle ] = "Receptacle"
|
219
|
+
_M[ListReceptacle] = "ListReceptacle"
|
220
|
+
_M[HashReceptacle] = "HashReceptacle"
|
221
|
+
_M[SetReceptacle ] = "SetReceptacle"
|