1 / 23

Advanced Notions of SBQL (procedures, views, types, etc.)

Advanced Notions of SBQL (procedures, views, types, etc.). 3rd Country Conference, February 2007. by Prof. Kazimierz Subieta subieta@pjwstk. edu .pl http://www.ipipan.waw.pl/~subieta SBA/SBQL pages: http://www.sbql.pl. Extension of SBQL with imperative constructs.

silvio
Download Presentation

Advanced Notions of SBQL (procedures, views, types, etc.)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Advanced Notions of SBQL(procedures, views, types, etc.) 3rd Country Conference, February 2007 by Prof. Kazimierz Subieta subieta@pjwstk.edu.pl http://www.ipipan.waw.pl/~subieta SBA/SBQL pages:http://www.sbql.pl

  2. Extension of SBQL with imperative constructs • SBQL queries can be embedded within statements that can change the database or program state. • Concerning this issue we follow state-of-the-art standards known from majority of programming languages. • Typical imperative constructs are creating a new object, deleting an object, assigning new value to an object (updating) and inserting an object into another object. • We also introduce typical control and loop statements such as if…then…else…, switch, while loops, for each iterators and others. • Some peculiarities are implied by queries that may return collections; thus there are possibilities to generalize imperative constructs according to this new feature.

  3. Procedures, functions and methods • A procedure call opens a new section on the environment stack. • The section contains binders to local procedure objects (transient) and binders related to the actual parameters of the procedure. • Local procedure objects are invisible from outside. • Scoping rules assume skipping irrelevant stack sections. • Queries are used as actual parameters of procedures. • A query determines an output from a functional procedure. • A call of a functional procedure is considered a query. Procedure p1 calls p2 . Then, procedure p2 calls p3. When p3 is executed, sections of p1 and p2 are irrelevant for binding.

  4. SBQL: Example of a procedure • Procedure ChangeDept moves the specified employees to the specified department. procedureChangeDept( E: EmpType[0..*]; D: DeptType ) { delete ( Dept . employs ) whereEmpinE; for eachEasedo { create&easemploys; insertemploysintoD; e . worksIn := &D e.D# := D . D#; }; }; Let Kim become the manager of all designers working so far for Lee: ChangeDept( Empwherejob = “designer” and (worksIn.Dept.boss.Emp.name) = “Lee”; Deptwhere (boss.Emp.name) = “Kim” );

  5. Parameter passing • The stack-based machine is prepared to specify precisely various parameter passing methods, • variants of call-by-value, • call-by-reference, • strict-call-by-value, • the method with parameter defaults, • call-by-value-return, • etc. • SBQL deals with parameters being any queries; thus corresponding parameter passing methods are generalized to take collections into account.

  6. SBQL updatable object views • 30 years of R&D on views have resulted in minor results. • Very restricted view updating in Oracle and DB2. • Proposals concerning object-oriented views - limited and immature. • Essentially, all previous solutions were based on the assumption that a view definition is a function determined by a single query. • View updating through side effects of the definition. • First fine solution for RDBMS – instead of trigger views: • Based on overloading of an updating operation on a virtual table by a trigger with the code accomplishing the intention of the updating. • SBQL views are based on a similar idea, but it is incomparably more general and efficient. • The idea works for any data model, including XML and O-O ones. • It assumes that each operation on a virtual object is overloaded by a special procedure written by the view definer. • The procedure expresses definer’s intention of the operation.

  7. General scenario of view processing User program View definition virtual identifiers A query invoking the view ….. The procedure in the view definition overloading the given consumer Interpreter of queries and updating statements A consumer of the query result (e.g. the operator „update”) ….. ….. A piece of the interpreter code implementing the given consumer

  8. Overloaded operations on virtual objects • Dereference, i.e. taking a value of a virtual object (on_retrieve). • Unavailable in instead of trigger views. • Assignment a new value to a virtual object (on_update). • Deleting a virtual object (on_delete). • Inserting a (material or virtual) object into a virtual object(on_insert). • Creating a new virtual object (on_create). • If some of the procedures on_retrieve, …, on_create is not defined by the view definer, the corresponding operation on virtual objects is not allowed.

  9. Example of a virtual updatable view create viewbestSellingBookDef { virtual objectsbestSellingBook { return (Bookwheresold > 1000) asb;} on_delete do { deleteb; } create viewvtitleDef { virtual objectsvtitle { return (b.title) ast; } on_retrieve do { returnderef( t ); } } create viewvauthorDef { virtual objectsvauthor { return (b.author) asa; } on_retrieve do { returnderef( a ); } } create viewvpriceDef { virtual objectsvprice { return ( b.price ) asp; } on_retrieve do { returnconvertToEuro( b.currency, p ); } on_update (newPrice) do { p:= convertFromEuro(b.currency, newPrice);}}} Stored objects Book title author price currency sold Virtual objects bestSellingBook vtitle vauthor vprice vprice always in euro, updating of vprice is converted to the proper currency of the book. for each(BestSellingBookwherevtitle = ”MDA” )dovprice := vprice - 10;

  10. Strong static type checking in SBQL • In our approach and implementation we have taken the following tenets: • Don’t trust intuitions • easy to come to inconsistency (the ODMG case). • Don’t trust type theories • too idealistic, addressing mathematical models very limited for practice. • Distinguish internal and external type systems. • Internal type system reflects behavior of the type checking mechanism. • External type system is seen and used by the programmer. • Internal type system is much more sophisticated that the external one. • Both must coincide, but the internal type system should dominate. • ODMG defined an external type system only. This is like the definition of  a building construction by determining its front elevation. • Trust onlyabstract implementation of the internal type system.

  11. Static type checking mechanism for QLs • Any static strong type checking mechanism must simulate run-time computations during compile time… • …by reflecting run-time semantics with the precision that is available at the compile time. • New semantic properties of query languages cause that known strong typing systems and their theories are totally useless. • Current OO models and XML models introduce many peculiarities that make strong typing very challenging: • Ellipses, automatic coercions, automatic dereferences. • Mutability, collection cardinality constraints, collection types (set, bag, sequence, etc.), type names, multimedia types,.... • Irregularities in data structures (semi-structured data). • We call the SBQL type system „semi-strong”, to underline liberal attitude to strong typing.

  12. Roles and functions of the SBQL typing system • Compile-time type checking of query operators, imperative constructs, procedures, functions, methods, views and modules. • User-friendly, context dependent reporting on type errors. • Resolving ambiguities with automatic type coercions, ellipses, dereferences, literals and binding irregular data structures. • Shifting type check to run-time, if it is impossible to do it during compile time. • Restoring a type checking process after a type error. • To discover more than one type error in one run. • Preparing information for query optimization by proper decorating a query syntax tree. • Decorations allow for automatic decisions concerning query rewriting, use indices, etc.

  13. Internal SBQL type system • Three basic data structures are compile-time counterparts of run time structures: • Metabase – a counterpart of an object store. • Static environment stack S_ENVS – a counterpart of ENVS • Static result stack S_QRES – a counterpart of QRES • Static stacks contain and process type signatures – internal typing counterparts of corresponding run time entities. • Signatures are atomic types, references to metabase nodes, static binders n(s), where s is a signature, struct and bag signatures, etc. • Signatures are additionally associated with attributes, such as mutability, cardinality, collection kind, type name, multimedia, etc. • For each query/program operator a decision table is provided: • It determines allowed combinations of signatures and attributes, the resulting signature and its attributes, and additional actions. • Then, the type checking engine simulates run-time semantics.

  14. Example decision table for dot • Syntax: qL.qR • E1, E2 are signatures of individual elements (not collections) • T1, T2 are signatures of any types • Other cases (not included in this table) are type errors.

  15. Classes, interfaces, types, schemas and metamodels • In SBA/SBQL we make an attempt to clarify these concepts by assigning pragmatic roles to them. • Classes are source code units that contain implementation; after compilation they became special kind of database objects employed by the stack-based machine. • Interfaces are external specifications of access to objects; they contain no implementation. Interfaces usually contain more information than types. • Types are constraints on the construction and behavior of any program entities (in particular, modules, objects, values, links, procedures, etc.) and constraints on the query/programming context in which these entities can be used. • Schemas are external (application programmer oriented) specifications of a database content and are inevitable pragmatic part of a query/programming languages. • Metamodel is an internal representation of a schema; it is internally used by the database management system and externally for generic programming with reflection.

  16. 3-level architecture of object database applications • A classical architecture involves two levels: database server and application client. We introduce more levels. • 1st: database programmers- prepare the server-side database schema and implement (in SBQL + classical object-oriented languages) database classes together with methods. • 2nd: administrative programmers who determine access privileges and external views for applications and application users. The external views are determined by virtual updateable views, which might accomplish sophisticated mappings between stored and virtual data and mappings between updating of virtual data and updating of stored data. • 3rd: application programmers, who use interfaces to virtual views delivered by the second layer. • The subdivision on these three layers could make business applications very flexible for development and maintenance.

  17. Data-intense grids and P2P networks • Integration of distributed, heterogeneous, fragmented and redundant resources. • The research concerns creating virtual repositories that integrate distributed, heterogeneous, fragmented and redundant data and service resources on the ground of virtual updateable views. • We have developed and implemented an architecture of such an virtual repository, its metamodel and other functional properties. • As part of this research, we have developed a P2P network, which is technically based on the Sun JXTA technology and conceptually on the SBQL engine and its virtual updateable views.

  18. Architecture of virtual repository Workflow application Java application Web Service application Web Service application Future eGov-Bus applications Client view 1 Client view 2 Client view 3 Client view 4 ODRA database server Integration view Communication Bus Contributory view 1 Contributory view 2 XML importer/ exporter Contributory view 3 Contributory view O-R wrapper O-RDF wrapper O-WS wrapper …. wrapper Existing sources Relational databases RDF resources XML files Web Service applications …. application

  19. Query optimization • Lack of query optimization undermines the pragmatic goals of a query language. • Bad performance  no use the language • The optimization requires discipline in the QL’s development: • Occam’s razor: minimizing the data model, minimizing the number of features of the QL, avoiding irregular treatment and special cases. • Orthogonality of constructs, avoiding big syntactic monsters. • Precise formal semantics of all query operators, allowing one to reason on semantically equivalent queries and their performance. • SBA, as a formal methodology of building OO query languages, is exceptionally well prepared for query optimization. • I believe that it is much better prepared than the relational model and SQL.

  20. Optimization methods for SBQL • Methods based on rewriting: • Factoring out independent subqueries, rules based on the distributivity property, removing dead subqueries, query modification for processing stateless functions and views, query tail absorption, … • Methods based on indices: • Involving dense and range indices, index management utilities. • Methods based on query caching: • Storing results of queries in order to reuse them. • Pipelining, parallel execution of queries: • Splitting a complex query processing into many parallel processes. • Query optimization for distributed databases with horizontal and vertical fragmentations. • Heuristics and cost models concerning a query execution plan. • Query optimization is the major topic of the research on SBA.

  21. Conclusions • To make a high quality model for object-oriented databases, the specification of semantics is the must, … • …to avoid the fate of SQL-99 and ODMG standards, perceived as loose recommendations rather than technical specifications. • SBA offers the unique method of query languages’ construction and semantic specification. • SBA is a holistic database theory, it doesn’t give up any, even the most advanced feature of current practical O-O database query and programming languages. • Even smallest semantic problem is considered very important. • Efficiency has been proven by several implementations. • Alternatively, the new model can rely on the current well-known theories concerning object-oriented databases. • In such a case many qualities will be among nice wishes.

  22. 10 unique qualities of SBA/SBQL • Orthogonal syntax, full compositionality of queries. • Universal formal semantics based on abstract implementation. • Computational universality, advanced data structures, integration with PL constructs. • Strong typing of advanced O-O queries and programs. • Several advanced implementations, further ones pending. • Fully transparent O-O virtual updatable views. • Strong potential for query optimization. • All O-O notions treated formally and uniformly. • Sound and manageable metamodel. • The potential for distributed query processing.

  23. SBA/SBQL in projects • 1989: NETUL – an expert system shell developed for Intra Video GmbH in West Berlin, Germany. Implementation of SBQL for the M0 store model. • 1990: LOQIS OO DBMS. Includes modules, elements of dynamic inheritance (M2 store model), typed objects, transitive closures, recursive functions and methods, binding to C libraries and other features. • 2002: SBQL for XML DOM. XML files are mapped to the M0 store model, then queried by SBQL. Results of queries are returned as XML files. At that time the most powerful XML querying tool. • 2003: YAOD – a prototype OODBMS. Client-server architecture with an advanced SBQL implemented for the M0 store model. • 2004: European Project ICONS (commercialized). ICONS assumed an object-based database (no classes) on the top of a relational database. SBQL was implemented on the client side. A powerful query rewriting optimizer was also implemented. • 2004: SBQL prototype for Objectivity/DB. A student project aiming at enhancing the Objectivity/DB OODBMS with SBQL in the M1 store model. • 2005: BPQL for OfficeObjects® Workflows (commercial). BPQL is a subset of SBQL embedded into XPDL, an XML process definition language. A very successful project resulting in incredible flexibility (change potential) of workflows implemented in Java+XPDL+BPQL. • 2005: ODRA (Object Database for Rapid Application development). An OODBMS prototype under .NET written in C#. • 2005: (pending) ODRA/J: ODRA ported to Java for the M3 store model, with all the functionalities of SBQL, imperative constructs and programming abstractions, classes, types, methods, inheritance, modules, recursive querying capabilities, query optimization by rewriting and by indices, distributed query processing, and many other advanced features. • 2006: (pending) LoXiM – a client-server prototype OODBMS with SBQL, developed at the Warsaw University. • 2006: (pending): European project eGov Bus. SBQL is to be used as an embedded QL for application programming in Java. Alternatively, SBQL can be a self-contained DBPL for application programming. SBQL updateable views will play the following roles: as mediators (adapting local resources to the global requirements), as integrators (fusing fragmented collections) and as customizers (adapting the data to the needs of end users). • 2006: (pending): European project VIDE. VIDE aims at developing a visual programming language for the OMG MDA. We assume that OCL and other concepts related to Executable UML are to be implemented through SBA concepts.

More Related