The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Muldis::Rosetta::SeeAlso - External resources that you really ought to look at

VERSION

This document is Muldis::Rosetta::SeeAlso version 0.16.0.

DESCRIPTION

This document is a central location within the Muldis::Rosetta distribution where any important recommendations of or links to external resources go. This includes both resources that were helpful in making Muldis Rosetta, as well as resources that are or could be related to Muldis Rosetta.

FORMAL SPECIFICATION

Please see the separately distributed Muldis::D distribution, which defines the Muldis D language that Muldis Rosetta implements and uses as its primary API. Likewise see also the Muldis::D::SeeAlso appendix document of the Muldis D spec for links to various things comprising and related to The Third Manifesto, which Muldis Rosetta is a formal implementation of by way of Muldis D.

FURTHER DOCUMENTATION

Please see the separately distributed Muldis::D::Manual distribution for Pod files with a potentially large collection of examples, tutorials, FAQs, and so on that help people learn how to employ Muldis D and its implementations for the things they need to do. In particular, there should be a lot of help given for people migrating from other systems that use different paradigms than Muldis D does, for example SQL-using systems.

LIST OF PUBLIC MULDIS ROSETTA ENGINES

This documentation is pending.

Muldis::Rosetta::Engine::Example.

PROSPECTIVE MULDIS ROSETTA EXTENSIONS

These are some theoretical examples of other Perl modules that could be created to work with Muldis Rosetta, but if so would most likely be distributed independently from it. The given package names are examples, and the examples in question could have other names if appropriate.

Genezzo or Genezzo::Muldis_Rosetta or Muldis::Rosetta::Engine::Genezzo etc

A Muldis Rosetta Engine built around Jeffrey Cohen's Genezzo DBMS, or specifically the root module that provides the select_machine function, could conceivably have either of the above file or package names, depending on what its author prefers, or something else yet. A strong name influence could be whether Muldis Rosetta forms the sole public interface for Genezzo after its conversion to use it, or whether Genezzo would retain alternate public APIs that work without Muldis Rosetta being present on the system. If Muldis Rosetta is Genezzo's sole or primary interface, then simply Genezzo is probably best for branding.

Muldis::Rosetta::PHDMD::Refactor[|::\w+]

Utility modules that take Perl Hosted Data Muldis D (PHDMD) code as input and derive other PHDMD code as output, such as with the purpose of refactoring them into canonical representations (such that manual code debugging or comparisons may be made easier), or forms that are more efficient for particular uses but are still logically equivalent.

Presumably all of these would work using static analysis methods and not actually "execute" anything, so they are independent of any particular Engine environment. This isn't to say that we can't separately have modules that help implement a specific Engine and do PHDMD optimization that knows the specific needs of that Engine's implementation environment.

Other words that could go in such module names are like Optimize or Canon, or whatever authors prefer.

Muldis::Rosetta::PHDMD::YAML and Muldis::Rosetta::PHDMD::XML etc

Utility modules that serialize Perl Hosted Data Muldis D code to, or unserialize it from, logically equivalent YAML, XML, or other generic data interchange formats. This implementation should be native to the Muldis D language itself and not output any Perl-specific details that aren't in non-Perl languages, so that it is suitable for interchange, at the very least between Perl 5 and Perl 6.

Muldis::Rosetta::PHDMD::Translate::PTMD

Utility module that parses Plain Text Muldis D (PTMD) code into Perl Hosted Data Muldis D, and also that generates the former from the latter. The 2 formats should basically have a 1:1 correspondence.

Muldis::Rosetta::Shell

Implementation of a command-line user application over the Muldis Rosetta API that takes Plain Text Muldis D as input, compiles it and runs it, and nicely formats output for user display. This is analogous to DBI::Shell.

DBD::Muldis_Rosetta

A wrapper over the Muldis Rosetta API that makes it work as a DBI driver module, should that be useful. Depending on what DBI itself permits or requires, this could take a variety of query definition formats, including either or both of Plain Text Muldis D or (most likely) Perl Hosted Data Muldis D.

Muldis::Rosetta::PHMD::Translate::Tutorial_D etc

Utility module that parses the Tutorial D language into Perl Hosted Muldis D code, and also that generates the former from the latter. Mainly this is just by-the-book using the grammar published by Darwen and Date, but it could also handle compatible extensions by other D language implementations. In addition, separate utility modules can be made which translate to and from other D languages that don't look like Tutorial D.

Muldis::Rosetta::PHDMD::Translate::SQL::Native

Utility module that parses a Muldis Rosetta-native variant of SQL into Perl Hosted Data Muldis D, and also that generates the former from the latter. This SQL variant is essentially a cleaned up subset of the SQL:2003 standard, with some misfeatures removed, some missing features added, and some alterations common in other SQL DBMSs substituted or added. Or alternately, it is like a subset of Muldis D made to look as much like SQL as possible. This Muldis Rosetta-native SQL variant always has distinct column names in rowsets, requires matching column names for inputs to union/intersect/etc, never stores or results in duplicate rows, always uses 2-valued logic (not (>=3)-valued logic), and has case-sensitive table/column/etc names and character strings. An application written to use this SQL dialect rather than some other dialect should behave more deterministically, and perform faster, than ones written to some other SQL dialect, since there is less indirection involved between what users query and what actually happens to implement it.

Muldis::Rosetta::PHDMD::Translate::SQL::\w+

Utility modules that parse other variants of SQL (or subsets thereof) into Perl Hosted Data Muldis D, and also that generate the former from the latter. Examples of these variants are the actual SQL:2003 standard, and the native dialects of each actual SQL DBMS.

Muldis::Rosetta::PHDMD::Translate::\w+

Utility modules that translate data (including code and declaratives) between representations that are Perl Hosted Data Muldis D and representations that aren't, or between 2 of the latter kind while using the former kind as an intermediate representation. Besides the aforementioned possibilities that deal with D languages or SQL, we can have utilities that translate to/from native Perl data structures, including native Perl routine definitions (PPI would probably be employed in the Perl 5 version), and including commonly used third party class' objects.

Muldis::Rosetta::Proxy::[Server|Client|\w+]

Implementation(s) of a generic proxy server plus client for the Muldis Rosetta API, letting the normal Muldis Rosetta Engine and the user application reside in separate processes. The client would do Muldis::Rosetta::Interface roles and the server would be an application or server-extending plugin that sits on top of the Muldis Rosetta API. Or whatever implementers want to do. This is analogous to proxying modules for DBI or other DBMSs.

Muldis::Rosetta::Engine::[SQLite|Postgres|Oracle|\w+]

A default (but not mandatory) namespace for Muldis Rosetta Engines to go, that provide the select_machine function and do the Muldis::Rosetta::Interface::\w+ roles. A lot of these would likely be implemented over existing DBMSs, which results in Muldis Rosetta being an alternative API for them.

Muldis::Rosetta::Engine::DBI

A Muldis Rosetta Engine built around the Perl DBI module in a more generic fashion, that would work with multiple DBD modules rather than being specific to one SQL DBMS, could be named this.

DBIx::Class::Storage::Muldis_Rosetta etc

An alternative plug-in storage engine for DBIx::Class that uses Muldis Rosetta rather than DBI. Analogous extensions can be added to other DBI wrappers modules such as Tangram or Rose::DB or what have you. In either case, said alternatives can either be bundled with the core distros of those other modules, or separately from them, as per their authors' preferences.

Muldis::Rosetta::Emulator::[DBI|JDBC|OCI|\w+]

Emulations of other modules or APIs as wrappers over Muldis Rosetta. This is potentially the easiest way, short of the other modules themselves being appropriately updated, to permit migration for legacy apps to Muldis Rosetta while they have the fewest actual code changes. The emulators would likely employ SQL translator utilities internally.

MuldisX::Rosetta::\w+

Unofficial extensions to Muldis Rosetta could be named in this space, though it doesn't have to be used if prior coordination happens between developers; moreover, this namespace is likely to be used even by the main Muldis Rosetta developers to experiment with possible extensions without tying up a "good" namespace for them.

PUBLIC SOLUTIONS BUILT OVER MULDIS ROSETTA

This documentation is pending.

These Perl 5 applications and frameworks are, perhaps, at the front of the line to get Muldis Rosetta bindings: Jifty, Catalyst, Bricolage, RT. Generally speaking, the more active the development or the more popular the project, the higher the priority to support it.

DBMS-RELATED PERL MODULES

This documentation is pending.

These other Perl 6 packages also work in the problem domain of managing data or data definitions or connections to databases:

Set::Relation, Set.

These other Perl 5 packages also work in the problem domain of managing data or data definitions or connections to databases (list not exhaustive):

Set::Relation, DBI, Tangram, DBIx::Class, HDB, KiokuDB, Class::DBI, Pixie, Alzabo, DBIx::SQLEngine, Rose::DB, SPOPS, Set::Object, Set::Scalar, Oryx, DBM::Deep, PLUTO, DBIx::SearchBuilder, DBIx::Recordset, DBIx::Abstract, DBIx::IO, DBIx::AnyDBD, DBIx::Browse, DBIx::DBH, MKDoc::SQL, ObjectDB, Data::Transactional, DBIx::ModelUpdate, DBIx::ProcedureCall, DB::Ent, DBIx::Romani, DBIx::DBSchema, TripleStore, Data::Table, ORM, OOPS, Object::Transaction, Relations, DBIx::SimplePerl, DBIx::YAWM, Class::Entity, SQL::Statement, SQL::Parser, SQL::Translator, SQL::Generator, SQL::Schema, SQL::Abstract, SQL::Snippet, SQL::Catalog, DBIx::Perlish, DBIx::StORM, Tao::DBI, NTuples, DBIx::CopyRecord, DBIx::DBO, DBIx::DataModel, Data::Domain, Fey, SQL::Tokenizer, SQL::DB, MooseX::Storage, LARC::DB, Migraine, DBIx::Declare, EZDBI, Test::Database, UR, OP, Data::Schema, SQL::Filter, DBR, Data::Visitor, DBIx::Simple::Procedure, DBIx::Skinny, Data::Couplet, SQL::Preproc, DBIx::QueryByName, Data::Schema, Devel::Ladybug, Class::AutoDB.

These Perl 5 packages in that problem domain used to exist on CPAN, but no longer do except on backpan:

Object::Relation, DBIx::Namespace, SQL::YASP, DBD::Trini, DataCube.

AUTHOR

Darren Duncan (darren@DarrenDuncan.net)

LICENSE AND COPYRIGHT

This file is part of the Muldis Rosetta framework.

Muldis Rosetta is Copyright © 2002-2010, Muldis Data Systems, Inc.

See the LICENSE AND COPYRIGHT of Muldis::Rosetta for details.

TRADEMARK POLICY

The TRADEMARK POLICY in Muldis::Rosetta applies to this file too.

ACKNOWLEDGEMENTS

The ACKNOWLEDGEMENTS in Muldis::Rosetta apply to this file too.