diff options
author | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
commit | e0c6872cf40896c7be36b11dcc744620f10adf1d (patch) | |
tree | 60335e10d2f4354b0674ec22d7b53f0f8abee672 /graphics/pgf/contrib/tkz-orm |
Initial commit
Diffstat (limited to 'graphics/pgf/contrib/tkz-orm')
-rw-r--r-- | graphics/pgf/contrib/tkz-orm/LICENSE | 26 | ||||
-rw-r--r-- | graphics/pgf/contrib/tkz-orm/Makefile | 146 | ||||
-rw-r--r-- | graphics/pgf/contrib/tkz-orm/README | 57 | ||||
-rw-r--r-- | graphics/pgf/contrib/tkz-orm/pgfmanualstyle.sty | 238 | ||||
-rw-r--r-- | graphics/pgf/contrib/tkz-orm/tkz-orm.bib | 26 | ||||
-rw-r--r-- | graphics/pgf/contrib/tkz-orm/tkz-orm.pdf | bin | 0 -> 417488 bytes | |||
-rw-r--r-- | graphics/pgf/contrib/tkz-orm/tkz-orm.sty | 1123 | ||||
-rw-r--r-- | graphics/pgf/contrib/tkz-orm/tkz-orm.tex | 937 |
8 files changed, 2553 insertions, 0 deletions
diff --git a/graphics/pgf/contrib/tkz-orm/LICENSE b/graphics/pgf/contrib/tkz-orm/LICENSE new file mode 100644 index 0000000000..8e382389a3 --- /dev/null +++ b/graphics/pgf/contrib/tkz-orm/LICENSE @@ -0,0 +1,26 @@ +Licenses for the tkz-orm package +================================ + +1. The code of the package (all *.sty files) is dual-licensed. + This means that you can decide which license you wish to + use when using the tkz-orm package. The two options are: + + a) The GNU Public License, version 2 + b) The LaTeX Project Public License, version 1.3c + +2. The documentation of the package (all other files) can + be used under any version of any of the following licenses: + + a) The Creative Commons Share-Alike license (CC-BY-SA) + b) The GNU Free Documentation License (GFDL) + c) The GNU Public License (GPL) + d) The LaTeX Project Public License + +The ``code of the package'' refers to all .sty files. Parts of +the code are based on code of the original pgf-package. + +The ``documentation of the package`` refers to all other files. + +You will find some of the licenses as plain text versions as +part of this package and more licenses on the Web. + diff --git a/graphics/pgf/contrib/tkz-orm/Makefile b/graphics/pgf/contrib/tkz-orm/Makefile new file mode 100644 index 0000000000..c85dea39b6 --- /dev/null +++ b/graphics/pgf/contrib/tkz-orm/Makefile @@ -0,0 +1,146 @@ +################################################################ +# Makefile for tkz-orm # +################################################################ + +help: + @echo "" + @echo " make clean - clean out directory" + @echo " make tidy - clean out directory some more" + @echo " make examples - create examples as PDF and PNG" + @echo " make ctan - create a CTAN-ready archive" + @echo " make doc - typeset documentation" + @echo " make install - install files in local texmf tree" + @echo "" + +################################################################ +# Master package name # +################################################################ + +PACKAGE = tkz-orm +FEATURES = index bib + +LATEXFLAGS = -interaction=nonstopmode + +################################################################ +# Directory structure for making zip files # +################################################################ + +CTANROOT := ctan +CTANDIR := $(CTANROOT)/$(PACKAGE) +CTANINCLUDE = $(PACKAGE).tex $(PACKAGE).sty $(PACKAGE).bib \ + README LICENSE pgfmanualstyle.sty Makefile + +############################################################### +# Data for local installation +############################################################### + +# TODO: add cheatsheet +INCLUDEPDF := $(PACKAGE) +PACKAGEROOT := latex/$(PACKAGE) + +################################################################ +# Clean-up information # +################################################################ + +AUXFILES = aux bbl bit blg glo gls dvi glo hd idx ilg ind lof \ + log nlo nls out toc + +CLEAN = gz pdf ps zip + +################################################################ +# File buiding: default actions # +################################################################ + +all: $(PACKAGE).pdf +index: $(PACKAGE).ind $(PACKAGE).ilg +abbr: $(PACKAGE).nls +bib: $(PACKAGE).blg $(PACKAGE).bbl + +# Documentation +$(PACKAGE).pdf: $(PACKAGE).tex $(FEATURES) + pdflatex $(LATEXFLAGS) $(PACKAGE).tex + pdflatex $(LATEXFLAGS) $(PACKAGE).tex + +# Preperation +$(PACKAGE).idx $(PACKAGE).nlo $(PACKAGE).aux: $(PACKAGE).tex + pdflatex $(LATEXFLAGS) $(PACKAGE).tex + +# Indexes +$(PACKAGE).ind $(PACKAGE).ilg: $(PACKAGE).tex $(PACKAGE).idx + makeindex $(PACKAGE).idx + +$(PACKAGE).nls: $(PACKAGE).tex $(PACKAGE).nlo + makeindex $(PACKAGE).nlo -s nomencl.ist -o $(PACKAGE).nls + +# Bibliography +$(PACKAGE).blg $(PACKAGE).bbl: $(PACKAGE).tex $(PACKAGE).bib $(PACKAGE).aux + bibtex $(PACKAGE) + +%.pdf2: %.tex + NAME=`basename $< .tex` ; \ + echo "Typesetting $$NAME" ; \ + pdflatex &> /dev/null ; \ + if [ $$? = 0 ] ; then \ + makeindex -s gglo.ist -o $$NAME.gls $$NAME.glo &> /dev/null ; \ + makeindex -s gind.ist -o $$NAME.ind $$NAME.idx &> /dev/null ; \ + pdflatex &> /dev/null ; \ + pdflatex &> /dev/null ; \ + else \ + echo " Complilation failed" ; \ + fi ; \ + for I in $(AUXFILES) ; do \ + rm -f $$NAME.$$I ; \ + done + +%.png: %.tex + @sed 's/^\\begin{document}/\ +\\pgfrealjobname{dummy}\\begin{document}\\beginpgfgraphicnamed{example}/' $< | \ +sed 's/^\\end{document}/\\endpgfgraphicnamed\\end{document}/' > example.tex ; \ + pdflatex --jobname=example example.tex ; \ + gs -dNOPAUSE -r120 -dGraphicsAlphaBits=4 -dTextAlphaBits=4 -sDEVICE=png16m \ +-sOutputFile=$@ -dBATCH example.pdf ; \ + convert -thumbnail 200 $@ $(addsuffix .thumb.png, $(basename $@)) ; \ + mv example.pdf $(addsuffix .pdf, $(basename $<)) ; rm example.* + + +################################################################ +# User make options # +################################################################ + +.PHONY = clean tidy install + +clean: + for I in $(AUXFILES) $(CLEAN) ; do \ + rm -f *.$$I ; \ + done + @rm -rf $(CTANROOT)/ + +tidy: clean + @rm -rf *~ + +ctan: doc + echo "Creating CTAN archive" + mkdir -p $(CTANDIR)/ + rm -rf $(CTANDIR)/* + for I in $(INCLUDEPDF) ; do \ + cp -f $$I.pdf $(CTANDIR)/ ; \ + done ; \ + for F in $(CTANINCLUDE) ; do \ + cp -f $$F $(CTANDIR)/ ; \ + done ; \ + cd $(CTANDIR) ; \ + zip -ll -q -r -X $(PACKAGE).zip . + cp $(CTANDIR)/$(PACKAGE).zip ./ + rm -rf $(CTANROOT)/ + +doc: $(foreach FILE,$(INCLUDEPDF),$(FILE).pdf) + +examples: $(foreach FILE,$(wildcard examples/*.tex),$(basename $(FILE)).png) + +install: + echo Installing $(PACKAGE).sty + TEXMFHOME=`kpsewhich --var-value=TEXMFHOME` ; \ + rm -rf $$TEXMFHOME/tex/$(PACKAGEROOT)/*.* ; \ + mkdir -p $$TEXMFHOME/tex/$(PACKAGEROOT)/ ; \ + cp $(PACKAGE).sty $$TEXMFHOME/tex/$(PACKAGEROOT)/ ; \ + texhash &> /dev/null diff --git a/graphics/pgf/contrib/tkz-orm/README b/graphics/pgf/contrib/tkz-orm/README new file mode 100644 index 0000000000..c38f5ba5e4 --- /dev/null +++ b/graphics/pgf/contrib/tkz-orm/README @@ -0,0 +1,57 @@ +================================================================ + tkz-orm -- Object-Role Modeling diagrams in TeX + version 0.1.4, January 15th, 2016 + +== ABOUT ======================================================= + +See the file tkz-orm.pdf for a manual. + +The permanent URL of this package is: + http://purl.org/net/tkz-orm + +Source code repository and issue tracker are located at: + http://github.com/nichtich/tkz-orm + +== INSTALLATION ================================================= + +The current version of tkz-orm requires at least TikZ 2.1. You +can get it from http://www.texample.net/tikz/builds/. Put the +content of the zip (pgfCVSYYYY-MM-DD_TDS.zip) in your local +texmf directory, for instance ~/texmf or /usr/share/texmf/. + +To install tkz-orm you can use the Makefile and run + +$ sudo make install + +or copy the file tkz-orm.sty into directory tex/latex/tkz-orm in +your local texmf directory and run $ sudo texhash afterwards. + +== LICENSE ====================================================== + +The code of this package is is dual-license under + + a) The GNU Public License, version 2 + b) The LaTeX Project Public License, version 1.3c + +The rest of this package is available under multiple licenses. + +See the file LICENSE for details. + +== MANIFEST ===================================================== + + tkz-orm.sty - code of this package (LaTeX style file) + tkz-orm.pdf - manual in PDF format + tkz-orm.tex - LaTeX source of the manual + tkz-orm.bib - BibTeX source of the manual + ormcheatsheet.tex - ORM2 cheat sheet (sources) + ormcheatsheet.pdf - ORM2 cheat sheet in PDF format + pgfmanualstyle.sty - Style file to build the manual + LICENSE - information about licenses of this package + Makefile - makefile for various tasks + README - this file + +== FEEDBACK ===================================================== + +Please report bug reports and feature requests at + http://github.com/nichtich/tkz-orm/issues + diff --git a/graphics/pgf/contrib/tkz-orm/pgfmanualstyle.sty b/graphics/pgf/contrib/tkz-orm/pgfmanualstyle.sty new file mode 100644 index 0000000000..ff73284411 --- /dev/null +++ b/graphics/pgf/contrib/tkz-orm/pgfmanualstyle.sty @@ -0,0 +1,238 @@ +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +% +% Copyright 2010 by Jakob Voss +% +% This file is based on works by Till Tantau. It contains additions and/or +% modifications by Jakob Voss and Rouben Rostamian. It may be distributed +% and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Free Documentation License. +% +% See the file LICENSE for more details. + +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +\NeedsTeXFormat{LaTeX2e} +\ProvidesPackage{pgfmanualstyle}[2010/01/24 v0.1 pgfmanualstyle] +\RequirePackage{tikz}[2009/09/04] + +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +% code from pgfmanual-en-macros.tex +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +\definecolor{graphicbackground}{rgb}{0.96,0.96,0.8} +\definecolor{codebackground}{rgb}{0.8,0.8,1} + +\makeatletter + +\begingroup +\catcode`|=0 +\catcode`[= 1 +\catcode`]=2 +\catcode`\{=12 +\catcode `\}=12 +\catcode`\\=12 |gdef|find@example#1\end{codeexample}[|endofcodeexample[#1]] +|endgroup +% +\begingroup +\catcode`\^=7 +\catcode`\^^M=13 +\catcode`\ =13% +\gdef\returntospace{\catcode`\ =13\def {\space}\catcode`\^^M=13\def^^M{}}% +\endgroup +% +\begingroup +\catcode`\%=13 +\catcode`\^^M=13 +\gdef\commenthandler{\catcode`\%=13\def%{\@gobble@till@return}} +\gdef\@gobble@till@return#1^^M{} +\gdef\typesetcomment{\catcode`\%=13\def%{\@typeset@till@return}} +\gdef\@typeset@till@return#1^^M{{\def%{\char`\%}\textsl{\char`\%#1}}\par} +\endgroup +% +\define@key{codeexample}{width}{\setlength\codeexamplewidth{#1}} +\define@key{codeexample}{graphic}{\colorlet{graphicbackground}{#1}} +\define@key{codeexample}{code}{\colorlet{codebackground}{#1}} +\define@key{codeexample}{execute code}{\csname code@execute#1\endcsname} +\define@key{codeexample}{code only}[]{\code@executefalse} +\define@key{codeexample}{pre}{\def\code@pre{#1}} +\define@key{codeexample}{post}{\def\code@post{#1}} +% +\def\code@pre{} +\def\code@post{} +% +\newdimen\finalcodeexamplewidth % XXX +\newdimen\codeexamplewidth +\newif\ifcode@execute +\newbox\codeexamplebox +\def\codeexample[#1]{% + \code@executetrue + \setlength\codeexamplewidth{4cm}% + \addtolength\codeexamplewidth{7pt}% + \setkeys{codeexample}{#1}% + \parindent0pt + \begingroup% + \par% + \medskip% + \let\do\@makeother% + \dospecials% + \obeylines% + \@vobeyspaces% + \catcode`\%=13% + \catcode`\^^M=13% + \find@example} +\def\endofcodeexample#1{% + \endgroup% + \ifcode@execute% + \setbox\codeexamplebox=\hbox{% + {% + {% + \returntospace% + \commenthandler% + \xdef\code@temp{#1}% removes returns and comments + }% + \colorbox{graphicbackground}{\color{black}\ignorespaces% + \code@pre\expandafter\scantokens\expandafter{\code@temp\ignorespaces}\code@post\ignorespaces}% + }% + }% + \ifdim\wd\codeexamplebox>\codeexamplewidth% + \def\code@start{\par}% + \def\code@flushstart{}\def\code@flushend{}% + \def\code@mid{\parskip2pt\par\noindent}% + %\def\code@width{\linewidth-6pt}% XXX + \setlength\finalcodeexamplewidth{\linewidth} % XXX + \addtolength\finalcodeexamplewidth{-6pt} % XXX + \def\code@end{}% + \else% + \def\code@start{% + \linewidth=\textwidth% + \parshape \@ne 0pt \linewidth + \leavevmode% + \hbox\bgroup}% + \def\code@flushstart{\hfill}% + \def\code@flushend{\hbox{}}% + \def\code@mid{\hskip6pt}% + %\def\code@width{\linewidth-12pt-\codeexamplewidth}% XXX + \setlength\finalcodeexamplewidth{\linewidth} % XXX + \addtolength\finalcodeexamplewidth{-12pt} % XXX + \addtolength\finalcodeexamplewidth{-\codeexamplewidth} % XXX + \def\code@end{\egroup}% + \fi% + \code@start% + \noindent% + \begin{minipage}[t]{\codeexamplewidth}\raggedright + \hrule width0pt% + \footnotesize\vskip-1em% + \code@flushstart\box\codeexamplebox\code@flushend% + \vskip-1ex + \leavevmode% + \end{minipage}% + \else% + \def\code@mid{\par} + %\def\code@width{\linewidth-6pt}% XXX + \setlength\finalcodeexamplewidth{\linewidth} % XXX + \addtolength\finalcodeexamplewidth{-6pt} % XXX + \def\code@end{} + \fi% + \code@mid% + \colorbox{codebackground}{% +% \begin{minipage}[t]{\code@width}% XXX + \begin{minipage}[t]{\the\finalcodeexamplewidth}% + {% + \let\do\@makeother + \dospecials + \frenchspacing\@vobeyspaces + \normalfont\ttfamily\footnotesize + \typesetcomment% + \@tempswafalse + \def\par{% + \if@tempswa + \leavevmode \null \@@par\penalty\interlinepenalty + \else + \@tempswatrue + \ifhmode\@@par\penalty\interlinepenalty\fi + \fi}% + \obeylines + \everypar \expandafter{\the\everypar \unpenalty}% + #1} + \end{minipage}}% + \code@end% + \par% + \medskip + \end{codeexample} +} + +\def\endcodeexample{} + + +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +% code from various pgf/tikz source files and own modifications or additions +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> + +\newenvironment{pgfmanualentry}{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}}{\endlist} +\newcommand\pgfmanualentryheadline[1]{\itemsep=0pt\parskip=0pt\item\strut{#1}\par\topsep=0pt} +\newcommand\pgfmanualbody{\parskip3pt} + +\definecolor{darkred}{rgb}{0.75,0,0} +\definecolor{green}{rgb}{0,.75,0} + +\def\bschar{{\char`\\}} + +\newcommand{\stylekeyheadline}[2][\pgfutil@empty]{% + \pgfmanualentryheadline{\texttt{\color{darkred}/tikz/#2}% + \def\pgf@test{#1}% + \ifx\pgf@test\pgfutil@empty% + \else% + \texttt{=}#1% + \fi% + \index{#2@\texttt{#2} key}}% +} + +\newenvironment{stylekey}[2][]{ + \begin{pgfmanualentry} + \stylekeyheadline[#1]{#2} + \pgfmanualbody +}{ + \end{pgfmanualentry} +} +\newcommand{\commandentry}[2][]{% + \texttt{\color{darkred}\textbackslash #2}#1% + \index{#2@\texttt{\textbackslash #2}} +} +\newenvironment{command}[2][]{ + \begin{pgfmanualentry} + \pgfmanualentryheadline{\commandentry{#2}{#1}} + \pgfmanualbody +}{ + \end{pgfmanualentry} +} +\newcommand\arrowtip[1]{ + \texttt{#1}\index{Arrow tips!mandatory@\protect\texttt{mandatory}}% +} + +\newcommand{\opt}[1]{\color{green}#1} +\newcommand{\meta}[1]{$\langle$\textit{#1}$\rangle$} +\newcommand{\marg}[1]{\texttt{\textbraceleft}\meta{#1}\texttt{\textbraceright}} +\newcommand{\oarg}[1]{\texttt{\textbraceleft} \texttt{\textbraceright}} + +% Global styles: +\tikzset{ + shape example/.style={ + color=black!30, + draw, + fill=yellow!30, + line width=.25cm, % .5 + inner xsep=1.25cm, % 2.5 + inner ysep=0.25cm} % 0.5 +} + +\def\tikzname{Ti\emph{k}Z} + +\makeatother + +%%% Enable '|' to type verbatim + +\usepackage{fancyvrb} +\DefineShortVerb{\|} + +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +\endinput diff --git a/graphics/pgf/contrib/tkz-orm/tkz-orm.bib b/graphics/pgf/contrib/tkz-orm/tkz-orm.bib new file mode 100644 index 0000000000..08c5d8b1da --- /dev/null +++ b/graphics/pgf/contrib/tkz-orm/tkz-orm.bib @@ -0,0 +1,26 @@ +@misc{Halpin2005, + title = {{ORM 2 Graphical Notation}}, + author = {Terry Halpin}, + institution = {Neumont University}, + number = 1, + year = 2005, + url = {http://www.orm.net/pdf/ORM2_TechReport1.pdf} +} +@book{Halpin2008, + title = {Information Modeling and Relational Databases}, + author = {Terry Halpin and Tony Morgan}, + isbn = {978-0-12-373568-3}, + publisher = {Morgan Kaufmann}, + year = 2008, + description = {2nd edition} +} +@misc{GPL2, + title = {{GNU Public License Version 2}}, + publisher = {Free Software Foundation}, + year = 1991, +} +@misc{LPPL, + title = {{LaTeX Project Public License (LPPL) Version 1.3c}}, + publisher = {LaTeX3 Project}, + year = 2008, +} diff --git a/graphics/pgf/contrib/tkz-orm/tkz-orm.pdf b/graphics/pgf/contrib/tkz-orm/tkz-orm.pdf Binary files differnew file mode 100644 index 0000000000..3f240bdb79 --- /dev/null +++ b/graphics/pgf/contrib/tkz-orm/tkz-orm.pdf diff --git a/graphics/pgf/contrib/tkz-orm/tkz-orm.sty b/graphics/pgf/contrib/tkz-orm/tkz-orm.sty new file mode 100644 index 0000000000..749a1f55ee --- /dev/null +++ b/graphics/pgf/contrib/tkz-orm/tkz-orm.sty @@ -0,0 +1,1123 @@ +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +% +% tkz-orm.sty - Object-Role Modeling Diagrams in LaTeX +% +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +% This is file may be be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% Copyright 2009-2016 by Jakob Voss, Camil Staps +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +\NeedsTeXFormat{LaTeX2e} +\ProvidesPackage{tkz-orm}[2016/01/15 v0.1.4 Object-Role Modeling] +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +\RequirePackage{tikz}[2009/09/04] + +%%%% Required pgf/TikZ libraries +%\usetikzlibrary{calc} +\usepgflibrary{shapes.multipart} +\usetikzlibrary{shadows} +\usetikzlibrary{positioning} +\usetikzlibrary{calc} +\usetikzlibrary{fit} + +\makeatletter + +%%%% Options + +%\DeclareOption*{% +% \PackageWarning{tkz-orm}{Unknown option ‘\CurrentOption’}% +%} + +\def\orm@error#1{\relax}% TODO +%\def\orm@error#1{\PackageWarning{tkz-orm}{#1}}% + +%\pgfkeysdefargs{/tikz/ormcolorlet}{#1}{\colorlet{#2}{#1}} +% \pgfkeys{/orm/.is family} % TODO + +\def\tkzorm{\textsf{tkz-orm}} + +%%%% ORM color constants +\colorlet{constraintcolor}{magenta!100} +\colorlet{ormconstraintcolor}{magenta!100} +\colorlet{ormdeonticcolor}{blue!100} +\colorlet{ormimpliedcolor}{gray!100} + +\def\orm@constraint@stroke{magenta} +\def\orm@constraint@fill{magenta} + +\pgfkeysdefargs{/tikz/constraintcolor}{#1}{\colorlet{constraintcolor}{#1}} + +%%%% ORM width and length +\newlength{\orm@linewidth} +\setlength{\orm@linewidth}{0.25mm} + +%%%% ORM fonts +\newcommand{\orm@font}{\sffamily\small} +\newcommand{\orm@font@bold}{\bfseries\sffamily\small} +\newcommand{\orm@font@tiny}{\sffamily\tiny} +\newcommand{\orm@font@scriptsize}{\sffamily\scriptsize} +\newcommand{\orm@font@bold@scriptsize}{\bfseries\sffamily\scriptsize} + +%%%% Text markup + +% textsubscript may not be defined like textsuperscript +\newcommand{\orm@textsubscript}[1]{% + {\m@th\ensuremath{_{\mbox{\fontsize\sf@size\z@#1}}}}} + +% similar to \blacktriangle (could better be implemented directly in pgf) +\def\orm@blacktriangle#1{ + \tikz \node[draw=none,inner sep=.2ex] { + \tikz [#1]\path[fill=black] + (0,0) -- (.6ex,1.3ex) -- (1.2ex,0) -- cycle;}; +} +\def\ormarrowup{\orm@blacktriangle{rotate=0}} +\def\ormarrowdown{\orm@blacktriangle{rotate=180}} +\def\ormarrowleft{\orm@blacktriangle{rotate=90}} +\def\ormarrowright{\orm@blacktriangle{rotate=-90}} + +\def\ormtext{\orm@font} +\def\ormbf{\orm@font@bold} +\def\ormc{\orm@font\color{constraintcolor}} +\def\ormsup#1{\textsuperscript{\orm@font@scriptsize #1}} +\def\ormsub#1{\orm@textsubscript{\orm@font@scriptsize #1}} +\def\ormind#1{\textsuperscript{\orm@font@bold@scriptsize\color{constraintcolor} #1}} +\def\ormbraces#1{{\orm@font\textbraceleft#1\textbraceright}} +\def\ormvalues#1{\ormc{\ormbraces{#1}}} + +\def\ormleft#1{{\ormarrowleft\ormtext #1}} +\def\ormup#1{{\ormtext #1\ormarrowup}} + +% TODO: add '*' variant in constraint color for each command + +%%% Sizes +\def\orm@role@linewidth{\orm@linewidth} % 0.25mm +\def\orm@role@width{4mm} +\def\orm@role@height{2.5mm} + + +%%%% ORM styles + +\pgfkeys{/tikz/constraint stroke/.store in=\orm@constraint@stroke} +\pgfkeys{/tikz/constraint fill/.store in=\orm@constraint@fill} +\pgfkeys{/tikz/constraint color/.style={constraint stroke=#1,constraint fill=#1}} + + +\tikzstyle{every orm line}= [solid,draw=black,line width=\orm@linewidth,-] +\tikzstyle{orm}= [font=\orm@font,node distance=4mm, + %label distance=1.5mm, + %line width=\orm@linewidth, + label distance=1.25mm + ] +\tikzstyle{orm-spacious}= [orm, + every object/.style={shape=circle} + ] + +\tikzstyle{every orm}= [every orm line,fill=white,orm] + +\tikzstyle{zoomed}= [line width=\orm@linewidth*1.5] + +\tikzstyle{every object}= [] +\tikzstyle{every entity}= [] +\tikzstyle{entity}= [every orm, + shape=rectangle,rounded corners, + align=center,minimum size=6mm, + every object,every entity] + +\tikzstyle{every value}= [] +\tikzstyle{value}= [every orm, + shape=rectangle,rounded corners,densely dashed, + align=center,minimum size=6mm, + every object,every value] + + +\tikzstyle{relationship}= [every orm line,every relationship] +\tikzstyle{relation}= [relationship] +\tikzstyle{plays}= [relationship] +\tikzstyle{every relationship}= [] + + +\tikzstyle{role index}= [font=\orm@font@tiny,inner sep=0,minimum width=\orm@role@width] + + +\tikzstyle{every predicate}= [] + +%%% Shortcuts in tikzpicture +\tikzaddtikzonlycommandshortcutdef{\entity}{\node[entity]} +\tikzaddtikzonlycommandshortcutdef{\value}{\node[value]} + +\tikzaddtikzonlycommandshortcutdef{\unary}{\node[role]} +\tikzaddtikzonlycommandshortcutdef{\role}{\node[role]} +\tikzaddtikzonlycommandshortcutdef{\binary}{\node[roles]} +\tikzaddtikzonlycommandshortcutdef{\roles}{\node[roles]} +\tikzaddtikzonlycommandshortcutdef{\ternary}{\node[roles=3]} + +\tikzaddtikzonlycommandshortcutdef{\vunary}{\node[vrole]} +\tikzaddtikzonlycommandshortcutdef{\vrole}{\node[vrole]} +\tikzaddtikzonlycommandshortcutdef{\vbinary}{\node[vroles]} +\tikzaddtikzonlycommandshortcutdef{\vroles}{\node[vroles]} +\tikzaddtikzonlycommandshortcutdef{\vternary}{\node[vroles=3]} + +\tikzaddtikzonlycommandshortcutdef{\plays}{\draw[relationship]} + +% TODO: add error message if matrix package not loaded ? +\tikzaddtikzonlycommandshortcutdef{\rules}{\matrix[row sep=0mm,nodes={right}]} + +\tikzaddtikzonlycommandshortcutdef{\limits}{\draw[limits]} +\tikzaddtikzonlycommandshortcutdef{\limited}{\draw[limits]} +\tikzaddtikzonlycommandshortcutdef{\limitsto}{\draw[limits to]} + +\tikzaddtikzonlycommandshortcutdef{\constraint}{\node[text=constraintcolor]} + +%%%% Textual rules + +\tikzset{rule/.style args={#1}{% + append after command={% + \bgroup% + [current point is local=true] + (\tikzlastnode.north west) node[font=\orm@font@bold@scriptsize, + anchor=north east,inner sep=0,text=constraintcolor] {#1} + \egroup% + }, + orm,inner sep=0.5mm, +}} +\tikzset{rule/.default={}} + + +%%%% Predicates and roles +\tikzstyle{all predicates}=[ + every orm line, + fill=white, + rectangle split, + inner sep=0 +] + +\tikzset{roles/.style args={#1}{ + all predicates,rectangle split parts=#1, rectangle split allocate boxes=#1, + rectangle split horizontal=true, + rectangle split empty part height=2.5mm,rectangle split empty part width=2.25mm, % 4-1.5 = 2.5 +% every label/.style={label distance=1.5mm} +%label distance=1.5mm + every predicate +}} +\tikzset{roles/.default={2}} + +\tikzset{vroles/.add style={}{roles=#1,rotate=90}} +\tikzset{vroles/.default={2}} +\tikzstyle{role}=[roles=1] +\tikzstyle{vrole}=[vroles=1] + +\tikzstyle{role name}=[font=\orm@font,color=blue,inner sep=0.5mm] + +%% end of roles + +% TODO: read +% http://www.latex-project.org/guides/clsguide.pdf + +\pgfkeyssetvalue{/tkzorm/constraintstroke}{constraintcolor} +\pgfkeyssetvalue{/tkzorm/constraintfill}{constraintcolor} + +%%% +% arrow heads + +% dot as arrow head (no color) +\pgfarrowsdeclare{dot}{dot}{ + \pgfutil@tempdima=0.2pt% + \advance\pgfutil@tempdima by.2\pgflinewidth% + \pgfutil@tempdimb=5.5\pgfutil@tempdima\advance\pgfutil@tempdimb + by\pgflinewidth + \pgfarrowsleftextend{+-\pgfutil@tempdimb} + \pgfutil@tempdimb=1.5\pgfutil@tempdima\advance\pgfutil@tempdimb + by.5\pgflinewidth + \pgfarrowsrightextend{+\pgfutil@tempdimb} +}{ + \pgfutil@tempdima=0.2pt% + \advance\pgfutil@tempdima by.2\pgflinewidth% + \pgfsetdash{}{+0pt} + \pgfpathcircle{\pgfqpoint{+3\pgfutil@tempdima}{0pt}}{+4.5\pgfutil@tempdima} + \pgfsetstrokecolor{\orm@constraint@stroke} + \pgfsetfillcolor{\orm@constraint@fill} + %\pgfsetfillcolor{\pgfkeysvalueof{/tkzorm/constraintfill}} + \pgfusepathqfillstroke +} + +% mandatory constraint dot arrow head +\pgfarrowsdeclare{mdot}{mdot}{ + \pgfarrowsrightextend{0pt}% put arrow head over the tip + \pgfutil@tempdima=0.25mm\advance\pgfutil@tempdima by 0.5\pgflinewidth% lw + \pgfarrowsleftextend{+-\pgfutil@tempdima}% for arrow composing +}{ + \pgfutil@tempdima=0.5mm\advance\pgfutil@tempdima by \pgflinewidth% radius + \pgfutil@tempdimb=0.25mm\advance\pgfutil@tempdimb by 0.5\pgflinewidth% lw + \pgfpathcircle{\pgfqpoint{0.5\pgflinewidth}{0pt}}{\pgfutil@tempdima} + \pgfsetfillcolor{ormconstraintcolor} + \pgfusepathqfill +} + +% implied mandatory constraint dot arrow head +\pgfarrowsdeclare{idot}{idot}{ + \pgfarrowsrightextend{0pt}% put arrow head over the tip + \pgfutil@tempdima=0.25mm\advance\pgfutil@tempdima by 0.5\pgflinewidth% lw + \pgfarrowsleftextend{+-\pgfutil@tempdima}% for arrow composing +}{ + \pgfutil@tempdima=0.5mm\advance\pgfutil@tempdima by \pgflinewidth% radius + \pgfpathcircle{\pgfqpoint{0.5\pgflinewidth}{0pt}}{\pgfutil@tempdima} + \pgfsetfillcolor{ormimpliedcolor} + \pgfusepathqfill +} + +% deontic mandatory constraint dot arrow head +\pgfarrowsdeclare{odot}{odot}{ + \pgfutil@tempdima=0.5mm\advance\pgfutil@tempdima by 1.0\pgflinewidth% radius + \pgfarrowsrightextend{0.5\pgfutil@tempdima}% put arrow head over the tip + \pgfarrowsleftextend{0pt}% for arrow composing +}{ + %\pgfutil@tempdima=0.5mm\advance\pgfutil@tempdima by 1.0\pgflinewidth% radius + %\pgfutil@tempdimb=0.25mm\advance\pgfutil@tempdimb by 0.5\pgflinewidth% lw + %\advance\pgfutil@tempdima by -0.5\pgfutil@tempdimb% -linewidth + \pgfutil@tempdima=0.475mm\advance\pgfutil@tempdima by 0.75\pgflinewidth% r-lw + \pgfutil@tempdimb=0.25mm\advance\pgfutil@tempdimb by 1\pgflinewidth% lw + \pgfpathcircle{\pgfqpoint{\pgfutil@tempdimb}{0pt}}{\pgfutil@tempdima} + \pgfutil@tempdima=0.25mm\advance\pgfutil@tempdima by 0.5\pgflinewidth% lw + \pgfsetdash{}{+0pt} + \pgfsetlinewidth{\pgfutil@tempdima} + \pgfsetstrokecolor{ormdeonticcolor} + \pgfsetfillcolor{white} + \pgfusepathqfillstroke +} + +% implied deontic mandatory constraint dot arrow head +\pgfarrowsdeclare{iodot}{iodot}{ + \pgfutil@tempdima=0.5mm\advance\pgfutil@tempdima by 1.0\pgflinewidth% radius + \pgfarrowsrightextend{0.5\pgfutil@tempdima}% put arrow head over the tip + \pgfarrowsleftextend{0pt}% for arrow composing +}{ + \pgfutil@tempdima=0.475mm\advance\pgfutil@tempdima by 0.75\pgflinewidth% r-lw + \pgfutil@tempdimb=0.25mm\advance\pgfutil@tempdimb by 1\pgflinewidth% lw + \pgfpathcircle{\pgfqpoint{\pgfutil@tempdimb}{0pt}}{\pgfutil@tempdima} + \pgfutil@tempdima=0.25mm\advance\pgfutil@tempdima by 0.5\pgflinewidth% lw + \pgfsetdash{}{+0pt} + \pgfsetlinewidth{\pgfutil@tempdima} + \pgfsetstrokecolor{ormimpliedcolor} + \pgfsetfillcolor{white} + \pgfusepathqfillstroke +} + + +% filled arrow for subtyping, subset constraints and value-comparision constraints +\pgfarrowsdeclare{orm arrow}{orm arrow} +{ + \pgfutil@tempdima=0.5pt% + \advance\pgfutil@tempdima by.1\pgflinewidth% + \pgfutil@tempdimb=8.705\pgfutil@tempdima\advance\pgfutil@tempdimb by.5\pgflinewidth% + \pgfarrowsleftextend{+-\pgfutil@tempdimb} + \pgfutil@tempdimb=.5\pgfutil@tempdima\advance\pgfutil@tempdimb by1.28\pgflinewidth% + \pgfarrowsrightextend{+\pgfutil@tempdimb} +}{ + \pgfutil@tempdima=0.5pt% + \advance\pgfutil@tempdima by.1\pgflinewidth% + \pgfsetdash{}{+0pt} + \pgfsetmiterjoin + \pgfpathmoveto{\pgfpointadd{\pgfqpoint{0.5\pgfutil@tempdima}{0pt}}{\pgfqpointpolar{157}{10\pgfutil@tempdima}}} + \pgfpathlineto{\pgfqpoint{0.5\pgfutil@tempdima}{0\pgfutil@tempdima}} + \pgfpathlineto{\pgfpointadd{\pgfqpoint{0.5\pgfutil@tempdima}{0pt}}{\pgfqpointpolar{-157}{10\pgfutil@tempdima}}} + \pgfpathclose + \pgfsetfillcolor{ormconstraintcolor} % TODO: change if implied, deontic etc. + %\pgfsetstrokefillcolor{ormconstraintcolor} % TODO: change if implied, deontic etc. + \pgfusepathqfillstroke +} + +% line styles that enable the mandatory constraint arrow tip +\tikzstyle{required} =[relationship,mdot-] +\tikzstyle{required by} =[relationship,-mdot] +\tikzstyle{both required} =[relationship,mdot-mdot] + +% aliases +\tikzstyle{mandatory} =[required] +\tikzstyle{both mandatory}=[both required] +\tikzstyle{optional} =[relationship] + + +% draw a mandatory constraint arrow tip over a node +\tikzset{constraint dot/.style={append after command={ + (\tikzlastnode.center) edge[required] (\tikzlastnode.center) +}}} +\tikzstyle{cdot} =[constraint dot] + + +%%%% Constraint symbols +\tikzstyle{every constraint}= [] +% TODO: every uniqueness bar +\tikzstyle{every constraint line}= [every orm line,draw=constraintcolor,every constraint] +%\tikzstyle{every constraint line}= [line width=\orm@linewidth,draw=constraintcolor,solid] +\tikzstyle{every constraint circle}=[] +\tikzstyle{constraint circle}= [every orm,every constraint line, + shape=circle, + font=\orm@font@scriptsize, + minimum size=4mm,,inner sep=0pt, + every constraint circle] +\tikzstyle{constraint no circle}= [constraint circle,draw=none,fill=none] + +\tikzstyle{limits}= [every constraint line,dotted] +\tikzstyle{limits to}= [every constraint line,dashed,-orm arrow] + + +% internal uniqueness constraint + +% Implied and duplicated model parts: + +\tikzstyle{duplicated}= [drop shadow] +\tikzstyle{duplicated model}= [every orm/.append style={drop shadow}, + every predicate/.append style={drop shadow}] + +\tikzstyle{every implied line}= [constraintcolor=gray!80,thin] +\tikzstyle{every implied}= [fill=gray!30,every implied line] + +\tikzstyle{implied}=[ + every orm/.append style={every implied}, + every orm line/.append style={every implied line},, + constraint color=gray!100,thin, + every relationship/.style={fill=gray!30}, + required/.append style={idot-}, + required by/.append style={-idot}, + both required/.append style={idot-idot} +] +\tikzstyle{implied model}=[implied] + +\tikzstyle{deontic}= [ + every orm line/.append style={constraintcolor=blue!100}, + constraintcolor=blue!100, + constraint color=blue!100, + required/.append style={odot-}, + required by/.append style={-odot}, + both required/.append style={odot-odot} +] + + +%%%% Constraints + +% Define a constraints type +% +% #1 = name of the constraint +% #2 = path code to be drawn above the constraint circle with |append after command| +% +\newcommand{\constraintdeclare}[2]{% + \tikzset{constraint/#1/.style={constraint circle,append after command={#2}}}% +} + +% Define a constraint alias +% +% #1 = alias name +% #2 = name of the constraint +% +\newcommand{\constraintdeclarealias}[2]{% + \tikzset{constraint/#1/.style={constraint=#2}}% +} + +% Define a constraint by drawing another node at the some position as the current node +\newcommand{\constraintdeclareasnode}[2]{ + \constraintdeclare{#1}{ + (\tikzlastnode.center) node[anchor=center] {\tikz{#2}} +}} + +% style /tikz/constraint and its keys +\tikzset{constraint/.is choice} + +%\tikzset{constraint/misc/.style={constraint circle,text=constraintcolor}}% + + +%\constraintdeclarealias{le}{symmetric} +%\tikzset{constraint/le/.append style={label={[text=constraintcolor,font=\orm@font@scriptsize]center:$<$}}} + +% TODO: clean up code +\tikzset{constraint/</.style={ + constraint circle, + append after command={ + \bgroup% + [current point is local=true] + (\tikzlastnode) +(180:2mm) node[cdot]{} + +(0:2mm) node[cdot]{} + \egroup% + }, + label={[text=constraintcolor,font=\orm@font@scriptsize]center:$<$} +}} +% TODO: clean up code +\tikzset{constraint/ge/.style={ + constraint circle, + append after command={ + \bgroup% + [current point is local=true] + (\tikzlastnode) +(180:2mm) node[cdot]{} + +(0:2mm) node[cdot]{} + \egroup% + }, + label={[text=constraintcolor,font=\orm@font@scriptsize]center:$\ge$} +}} +% TODO: clean up code +\tikzset{constraint/>/.style={ + constraint circle, + append after command={ + \bgroup% + [current point is local=true] + (\tikzlastnode) +(180:2mm) node[cdot]{} + +(0:2mm) node[cdot]{} + \egroup% + }, + label={[text=constraintcolor,font=\orm@font@scriptsize]center:$>$} +}} +% TODO: clean up code +\tikzset{constraint/le/.style={ + constraint circle, + append after command={ + \bgroup% + [current point is local=true] + (\tikzlastnode) +(180:2mm) node[cdot]{} + +(0:2mm) node[cdot]{} + \egroup% + }, + label={[text=constraintcolor,font=\orm@font@scriptsize]center:$\le$} +}} + +%\tikzstyle{entity}= [every orm, +% shape=rectangle,rounded corners, +% align=center,minimum size=6mm, +% every object,every entity] +\tikzset{constraint/text/.style={color=constraintcolor,font=\orm@font,align=center}} + +\tikzset{constraint/.default=text} + +% TODO: color=constraintcolor + + +%%%% Ring constraints + +% TODO: possibly join with cdot +\tikzstyle{ormdot}= [fill=constraintcolor,radius=.6mm,draw=none] + + +\constraintdeclareasnode{acyclic}{ + \path [ormdot] (90:2mm) circle; + \path [ormdot] (210:2mm) circle; + \path [ormdot] (330:2mm) circle; + \draw [every constraint line] + (270:1mm) edge (270:3mm); +} +%\constraintdeclarealias{DAG}{acyclic} % directed-acyclic-graph (DAG) + +\constraintdeclareasnode{intransitive}{ + \fill[every constraint line,fill=white,draw=white] circle (2.2mm); + \path [ormdot] (90:2mm) circle; + \path [ormdot] (210:2mm) circle; + \path [ormdot] (330:2mm) circle; + \path[every constraint line,rounded corners=0] (90:2mm) -- (210:2mm) -- (330:2mm) -- (90:2mm); + \draw[every constraint line] (270:0mm) to (270:1.75mm); +} + +% TODO: document +\constraintdeclareasnode{strongly intransitive}{ + \fill[every constraint line,fill=white,draw=white] circle (2.2mm); + \path [ormdot] (90:2mm) circle; + \path [ormdot] (30:1mm) circle; + \path [ormdot] (210:2mm) circle; + \path [ormdot] (330:2mm) circle; + \path[every constraint line,rounded corners=0] (90:2mm) -- (210:2mm) -- (330:2mm) -- (90:2mm); + \draw[every constraint line] (270:0mm) to (270:1.75mm); +} + +% TODO: document tree and otree +\constraintdeclareasnode{tree}{ + \fill[every constraint line,fill=white,draw=white] circle (2.2mm); + \path [ormdot] (90:2mm) circle; + \path [ormdot] (210:2mm) circle; + \path [ormdot] (330:2mm) circle; + \path[every constraint line,rounded corners=0] (339:2mm) -- (90:2mm) -- (210:2mm); +} + +\constraintdeclareasnode{otree}{ + \fill[every constraint line,fill=white,draw=white] circle (2.2mm); + \path [ormdot] (90:2mm) circle; + \path [ormdot] (210:2mm) circle; + \path [ormdot] (330:2mm) circle; + \path[every constraint line,rounded corners=0] (339:2mm) -- (90:2mm) -- (210:2mm); + \path[every constraint line,rounded corners=0] + (.8mm,-0mm) -- (-.6mm,-1mm) -- (.8mm,-2mm); +} + +\constraintdeclareasnode{purely reflexive}{ + \path[use as bounding box] (270:2.75mm) -- (90:2.75mm); + \path [ormdot] (180:2mm) circle; + \draw[every constraint line] (90:1.25mm) to (270:1.25mm); +% (-.8mm, .4mm) -- (.8mm, .4mm) +% (-.8mm,-.4mm) -- (.8mm,-.4mm); +} + +\constraintdeclareasnode{reflexive}{ + \path[use as bounding box] (270:2.75mm) -- (90:2.75mm); + \path [ormdot] (180:2mm) circle; +} + +\constraintdeclareasnode{irreflexive}{ + \path[use as bounding box] (270:2.75mm) -- (90:2.75mm); + \path [ormdot] (180:2mm) circle; +% \draw [every constraint line] (90:1.25mm) -- (270:1.25mm); + \draw [every constraint line] (270:1mm) to (270:2.75mm); +} + +\constraintdeclareasnode{symmetric irreflexive}{ + \path [ormdot] (180:2mm) circle; + \path [ormdot] ( 0:2mm) circle; + \draw [every constraint line] + (-.8mm, .4mm) -- (.8mm, .4mm) + (-.8mm,-.4mm) -- (.8mm,-.4mm) + (90:1.25mm) to (270:1.25mm); +} + +\constraintdeclareasnode{transitive}{ + \draw[every constraint line,fill=white,draw=white] circle (2.2mm); + \path [ormdot] (90:2mm) circle; + \path [ormdot] (210:2mm) circle; + \path [ormdot] (330:2mm) circle; + \draw[every constraint line] (90:2mm) -- (210:2mm) -- (330:2mm) -- (90:2mm); +} + +\constraintdeclareasnode{acyclic intransitive}{ + \path [ormdot] (90:2mm) circle; + \path [ormdot] (210:2mm) circle; + \path [ormdot] (330:2mm) circle; + \path[every constraint line] (90:2mm) -- (210:2mm) -- (330:2mm) -- (90:2mm); + \draw[every constraint line] (270:0mm) to (270:2.75mm); +} + +\constraintdeclareasnode{symmetric}{ + \path [ormdot] (180:2mm) circle; + \path [ormdot] ( 0:2mm) circle; +} + +\constraintdeclareasnode{asymmetric}{ + \path[use as bounding box] (270:2.75mm) -- (90:2.75mm); + \path [ormdot] (+2mm,0mm) circle; + \path [ormdot] (-2mm,0mm) circle; + \draw [every constraint line] (270:1mm) to (270:2.75mm); +} + +\constraintdeclareasnode{antisymmetric}{ + \path [ormdot] (180:2mm) circle; + \path [ormdot] ( 0:2mm) circle; + \draw[every constraint line] (90:2.75mm) to (270:2.75mm); +} + +\constraintdeclareasnode{tree}{ + \draw [every constraint line,fill=white,draw=white] circle (2.2mm); + \path [ormdot] (90:2mm) circle; + \path [ormdot] (210:2mm) circle; + \path [ormdot] (330:2mm) circle; + \draw [every constraint line] (210:2mm) -- (90:2mm) -- (330:2mm); +} + +% TODO: strictly order, total, connected, etc. + + +% TODO: test and document this +\tikzset{objectification/.style={ + entity,fill=none, + append after command={ + \bgroup% + [current point is local=true] + node[orm,above=0 of \tikzlastnode] {``#1''} + \egroup% + } +}} + + +%%%% Subtypes + % TODO: how to get current line width? +\tikzstyle{inheritance}=[line width=\orm@linewidth*1.5,>=orm arrow, + draw,color=constraintcolor] +\tikzstyle{subtype}=[inheritance,<-,solid] +\tikzstyle{suptype}=[inheritance,->,solid] +\tikzstyle{subinterface}=[subtype,dashed] +\tikzstyle{supinterface}=[suptype,dashed] + +%%%% Role indices + +\tikzset{index/.code={\orm@parse@index#1:\pgf@nil}} +\tikzset{index/.default=1} + +\def\orm@parse@index#1:#2\pgf@nil{% + \def\orm@temp{#2}% + \ifx\orm@temp\pgfutil@empty% + \orm@@parse@index1:#1:\pgf@nil% + \else% + \orm@@parse@index#1:#2\pgf@nil% + \fi% +} + +% \orm@verticalfalse +% \orm@verticaltrue +% \tikz@do@alignfalse + +\def\orm@@parse@index#1:#2:\pgf@nil{% + \tikzset{append after command={% + \bgroup% + [current point is local=true] + let \n1 = {#1*\orm@role@width} in + (\tikzlastnode.west) to[draw=none] + node[role index,pos=1,sloped,anchor=east] {#2} + ($(\tikzlastnode.west)!\n1!(\tikzlastnode.east)$) + \egroup% + } +}} +\tikzset{index/.default=1} + + +%%%% Uniqueness constraint bars + +\def\orm@rolebar@length#1{#1*\orm@role@width-2*\orm@role@linewidth} +\def\orm@rolebar@shift{0.75mm} % = 3*0.25mm + +\def\orm@rolebar@xshifta#1{\orm@role@linewidth+#1*\orm@role@width-\orm@role@width} +\def\orm@rolebar@xshiftb#1{#1*\orm@role@width-\orm@role@linewidth} +\def\orm@rolebar@yshift#1{% + \ifnum#1<0-\fi0.5*\orm@role@height+#1*\orm@rolebar@shift% +} + +\tikzstyle{uniqueness bar}=[every constraint line,-] +\tikzstyle{skipped uniqueness bar}=[ + every constraint line,-,dotted,preaction={every constraint line,-,white} +] + +\def\orm@unique@bar@normal{uniqueness bar} +\def\orm@unique@bar@skipped{skipped uniqueness bar} +\global\let\orm@unique@bar@style=\orm@unique@bar@normal + +%% +% Styles to draw external constraints +% +\pgfkeys{ + /orm/external constraint/.style={ + every constraint line, + fill=white,text=constraintcolor,align=center, + font=\orm@font@scriptsize,minimum size=4mm,inner sep=0pt + } +} + +% Defines an external constraints as node shape, based on the circle shape +% The symbol is *always* drawn but circle and fill can be modified. +% You can still modify the layout via color, line width, stroke opacity. +% The shapes do not respect outer sep (outer xsep/outer ysep) yet (TODO). +\newcommand{\constraintdeclareshape}[2]{% + \expandafter\pgfdeclareshape{#1}{ + \inheritsavedanchors[from=circle] + \inheritanchor[from=circle]{north} + \inheritanchor[from=circle]{north west} + \inheritanchor[from=circle]{north east} + \inheritanchor[from=circle]{center} + \inheritanchor[from=circle]{west} + \inheritanchor[from=circle]{east} + \inheritanchor[from=circle]{mid} + \inheritanchor[from=circle]{mid west} + \inheritanchor[from=circle]{mid east} + \inheritanchor[from=circle]{base} + \inheritanchor[from=circle]{base west} + \inheritanchor[from=circle]{base east} + \inheritanchor[from=circle]{south} + \inheritanchor[from=circle]{south west} + \inheritanchor[from=circle]{south east} + \inheritanchorborder[from={circle}] + \backgroundpath{% \behindbackgroundpath and \beforebackgroundpath don't do. + \pgfsetdash{}{0pt}% solid circle + \pgfutil@tempdima=\radius% + \pgfmathsetlength{\pgf@xb}{\pgfkeysvalueof{/pgf/outer xsep}}% + \pgfmathsetlength{\pgf@yb}{\pgfkeysvalueof{/pgf/outer ysep}}% + \ifdim\pgf@xb<\pgf@yb% + \advance\pgfutil@tempdima by-\pgf@yb% + \else% + \advance\pgfutil@tempdima by-\pgf@xb% + \fi% + \pgfpathcircle{\centerpoint}{\pgfutil@tempdima}% + } + \foregroundpath{% + \pgfsetdash{}{0pt}% + \pgfsetbuttcap% + \pgfsetmiterjoin% + #2 \pgfusepathqstroke% + } + } + \tikzset{constraint/#1/.style={/orm/external constraint,shape=#1}} + \tikzset{#1 constraint/.style={/orm/external constraint,shape=#1}} +} + + +\constraintdeclareshape{unique}{ + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\radius}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\radius}% +} + +\constraintdeclareshape{preferred unique}{ + \centerpoint \pgf@xc=\pgf@x \pgf@yc=\pgf@y% + \pgfutil@tempdima=\pgflinewidth% + \pgfutil@tempdima1.5\pgfutil@tempdima% + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\radius\advance\pgf@y by-\pgfutil@tempdima}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\radius\advance\pgf@y by-\pgfutil@tempdima}% + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\radius\advance\pgf@y by\pgfutil@tempdima}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\radius\advance\pgf@y by\pgfutil@tempdima}% +} + +\constraintdeclareshape{equal}{ + \pgfutil@tempdima=\radius% x + \pgfutil@tempdima0.4\pgfutil@tempdima% + \pgfutil@tempdimb=\radius% y + \pgfutil@tempdimb0.2\pgfutil@tempdimb% + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgfutil@tempdima\advance\pgf@y by\pgfutil@tempdimb}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgfutil@tempdima\advance\pgf@y by\pgfutil@tempdimb}% + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgfutil@tempdima\advance\pgf@y by-\pgfutil@tempdimb}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgfutil@tempdima\advance\pgf@y by-\pgfutil@tempdimb}% +} + +\constraintdeclareshape{subset}{ + \pgf@xa=\radius \pgf@xa0.4\pgf@xa% xa = 0.5 r + \pgf@ya=\radius \pgf@ya0.4\pgf@ya% ya = 0.4 r + \pgf@yb0.5\pgf@ya% yb = 0.5 ya = 0.2 r + \pgf@xb=\pgf@xa \advance\pgf@xb by -\pgf@yb% + + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgf@xa\advance\pgf@y by-\pgf@ya}% + \pgfpathlineto{\centerpoint\advance\pgf@x by \pgf@xa\advance\pgf@y by-\pgf@ya}% + \pgfpathmoveto{\centerpoint\advance\pgf@x by \pgf@xa}% + \pgfpathlineto{\centerpoint\advance\pgf@x by-\pgf@xb}% + \pgfpathmoveto{\centerpoint\advance\pgf@x by \pgf@xa\advance\pgf@y by\pgf@ya}% + \pgfpathlineto{\centerpoint\advance\pgf@x by-\pgf@xb\advance\pgf@y by\pgf@ya}% + \pgfpatharc{90}{270}{\pgf@yb} +} + +\constraintdeclareshape{supset}{ + \pgf@xa=\radius \pgf@xa0.4\pgf@xa% xa = 0.5 r + \pgf@ya=\radius \pgf@ya0.4\pgf@ya% ya = 0.4 r + \pgf@yb0.5\pgf@ya% yb = 0.5 ya = 0.2 r + \pgf@xb=\pgf@xa \advance\pgf@xb by -\pgf@yb% + + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgf@xa\advance\pgf@y by-\pgf@ya}% + \pgfpathlineto{\centerpoint\advance\pgf@x by \pgf@xa\advance\pgf@y by-\pgf@ya}% + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgf@xa}% + \pgfpathlineto{\centerpoint\advance\pgf@x by \pgf@xb}% + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgf@xa\advance\pgf@y by\pgf@ya}% + \pgfpathlineto{\centerpoint\advance\pgf@x by \pgf@xb\advance\pgf@y by\pgf@ya}% + \pgfpatharc{90}{-90}{\pgf@yb} +} + +\constraintdeclareshape{exclusive}{% exclusive constraint ('x') + \pgfpathmoveto{\pgfpointadd{\centerpoint}{\pgfqpointpolar{45}{\radius}}}% + \pgfpathlineto{\pgfpointadd{\centerpoint}{\pgfqpointpolar{225}{\radius}}}% + \pgfpathmoveto{\pgfpointadd{\centerpoint}{\pgfqpointpolar{135}{\radius}}}% + \pgfpathlineto{\pgfpointadd{\centerpoint}{\pgfqpointpolar{-45}{\radius}}}% +} + +% inclusive-or (disjunctive mandatory role) constraint +\constraintdeclareshape{mandatory}{ + \pgf@xa=\radius \pgf@xa0.4\pgf@xa% + \pgfpathcircle{\centerpoint}{\pgf@xa} + \pgfsetfillcolor{constraintcolor} % TODO: constraitfillcolor / not for deontic + % use deontic dot instead? + \pgfusepathqfillstroke +} + +% exclusive-or constraint ('xor' or 'partition') +\constraintdeclareshape{partition}{ + \pgf@xa=\radius \pgf@xa0.4\pgf@xa% + \pgfpathcircle{\centerpoint}{\pgf@xa} + \pgfsetfillcolor{constraintcolor} % TODO: constraitfillcolor / not for deontic + \pgfusepathqfillstroke + \pgfpathmoveto{\pgfpointadd{\centerpoint}{\pgfqpointpolar{45}{\radius}}}% + \pgfpathlineto{\pgfpointadd{\centerpoint}{\pgfqpointpolar{225}{\radius}}}% + \pgfpathmoveto{\pgfpointadd{\centerpoint}{\pgfqpointpolar{135}{\radius}}}% + \pgfpathlineto{\pgfpointadd{\centerpoint}{\pgfqpointpolar{-45}{\radius}}}% +} + +% Collection constraints (not standard ORM2) +\constraintdeclareshape{rank}{% aka ordered set + \pgf@xa=\radius \pgf@xa0.3\pgf@xa% + \pgf@ya=\radius \pgf@ya0.4\pgf@ya% + \pgfpathmoveto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by\pgf@ya}% + \pgfpathlineto{\centerpoint\advance\pgf@x by-\pgf@ya}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by-\pgf@ya}% +} +\constraintdeclareshape{sequence}{% + \pgf@xa=\radius \pgf@xa0.3\pgf@xa% + \pgf@ya=\radius \pgf@ya0.4\pgf@ya% + \pgf@xc=\radius \pgf@xc0.2\pgf@xc% + + \pgfpathmoveto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by\pgf@ya}% + \pgfpathlineto{\centerpoint\advance\pgf@x by-\pgf@ya}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by-\pgf@ya}% + \pgfusepathqstroke + + \pgfsetdash{{\pgflinewidth}{1pt}}{0pt}% dotted + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\radius}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\radius}% +} +\constraintdeclareshape{weak sequence}{% + \pgf@xa=\radius \pgf@xa0.3\pgf@xa% + \pgf@xb=\pgflinewidth% + \pgf@yb=\radius \pgf@yb0.15\pgf@yb% + \pgf@ya=\radius \pgf@ya0.4\pgf@ya% + + \pgfpathmoveto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by\pgf@ya\advance\pgf@y by\pgf@yb}% + \pgfpathlineto{\centerpoint\advance\pgf@x by-\pgf@xa\advance\pgf@y by\pgf@yb}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by-\pgf@ya\advance\pgf@y by\pgf@yb}% + + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgf@xa\advance\pgf@x by-\pgf@xb\advance\pgf@y by-\pgf@yb}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@x by-\pgf@xb\advance\pgf@y by-\pgf@ya\advance\pgf@y by-\pgf@yb}% + \pgfusepathqstroke + + \pgfsetdash{{\pgflinewidth}{1pt}}{0pt}% dotted + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\radius\advance\pgf@y by\pgf@yb}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\radius\advance\pgf@y by\pgf@yb}% +} + +\constraintdeclareshape{weak rank}{% aka poset + \pgf@xa=\radius \pgf@xa0.3\pgf@xa% + \pgf@xb=\pgflinewidth% + \pgf@yb=\radius \pgf@yb0.15\pgf@yb% + \pgf@ya=\radius \pgf@ya0.4\pgf@ya% + + \pgfpathmoveto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by\pgf@ya\advance\pgf@y by\pgf@yb}% + \pgfpathlineto{\centerpoint\advance\pgf@x by-\pgf@xa\advance\pgf@y by\pgf@yb}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by-\pgf@ya\advance\pgf@y by\pgf@yb}% + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgf@xa\advance\pgf@x by-\pgf@xb\advance\pgf@y by-\pgf@yb}% + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@x by-\pgf@xb\advance\pgf@y by-\pgf@ya\advance\pgf@y by-\pgf@yb}% +} + +\constraintdeclareshape{counted}{ + \pgf@xa=\radius \pgf@xa0.5\pgf@xa% + \pgf@xb=\radius \pgf@xb0.25\pgf@xb% + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgf@xa\advance\pgf@y by\pgf@xb} + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by\pgf@xb} + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgf@xa\advance\pgf@y by-\pgf@xb} + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgf@xa\advance\pgf@y by-\pgf@xb} + \pgfpathmoveto{\centerpoint\advance\pgf@x by\pgf@xb\advance\pgf@y by\pgf@xa} + \pgfpathlineto{\centerpoint\advance\pgf@x by\pgf@xb\advance\pgf@y by-\pgf@xa} + \pgfpathmoveto{\centerpoint\advance\pgf@x by-\pgf@xb\advance\pgf@y by\pgf@xa} + \pgfpathlineto{\centerpoint\advance\pgf@x by-\pgf@xb\advance\pgf@y by-\pgf@xa} +} +%\constraintdeclarealias{in bag}{counted} +%\constraintdeclarealias{in multiset}{counted} + +\constraintdeclareshape{external}{} % needed because shapes are in /orm/... +\constraintdeclareshape{misc}{} % alias for 'external' + +%\constraintdeclare{custom}{} % empty constraint circle + +\constraintdeclarealias{required}{mandatory} +\constraintdeclarealias{total}{mandatory} +\constraintdeclarealias{or}{mandatory} +\constraintdeclarealias{x}{exclusive} +\constraintdeclarealias{xor}{partition} + +%% +% Styles to draw uniqueness bars +% +\pgfkeys{/orm/.cd, + uniqueness bar from/.initial=1,% + uniqueness bar to/.initial=1,% + uniqueness bar level/.initial=1,% + uniqueness bar roles/.initial=1,% + uniqueness bar set roles/.style={% + /orm/uniqueness bar roles=#1, + /pgf/minimum width=#1*4mm + }, + uniqueness bar lower/.initial=0,% + uniqueness bar from/.value required,% + uniqueness bar to/.value required,% + uniqueness bar level/.value required,% + uniqueness bar roles/.value required,% + uniqueness bar set roles/.value required,% + uniqueness bar lower/.value required,% + uniqueness bar style/.style={} +} + +% +% This node shape draws a uniqueness bar above or below a predicate node. +% You should use is to shape an invisible node of same size and position +% as the predicate to constraint. The bar is affected by several styles +% named '/orm/uniqueness bar ...' each. +% +\pgfdeclareshape{uniqueness bar}{ + \inheritsavedanchors[from=rectangle] + \inheritanchorborder[from=rectangle] + \inheritanchor[from=rectangle]{north} + \inheritanchor[from=rectangle]{west} + \inheritanchor[from=rectangle]{east} + \inheritanchor[from=rectangle]{south} + \inheritanchor[from=rectangle]{center} + \savedmacro\barlevel{% + \edef\barlevel{\pgfkeysvalueof{/orm/uniqueness bar level}}% + \edef\barfrom{\pgfkeysvalueof{/orm/uniqueness bar from}}% + \edef\barto{\pgfkeysvalueof{/orm/uniqueness bar to}}% + \edef\barroles{\pgfkeysvalueof{/orm/uniqueness bar roles}}% + \edef\barlower{\pgfkeysvalueof{/orm/uniqueness bar lower}}% + } + \foregroundpath{ + \southwest \pgf@xa=\pgf@x \pgf@ya=\pgf@y + \northeast \pgf@xb=\pgf@x \pgf@yb=\pgf@y + \pgfmathsetlength\pgfutil@tempdima{ + (\pgf@xb-\pgf@xa-\pgflinewidth) / (\barroles>0 ? \barroles : 1) + }% role width + \pgf@xb=\pgf@xa + \advance\pgf@xa by 1.5\pgflinewidth% + \advance\pgf@xa by -1\pgfutil@tempdima% + \advance\pgf@xa by \barfrom\pgfutil@tempdima% + \advance\pgf@xb by-0.5\pgflinewidth% + \advance\pgf@xb by \barto\pgfutil@tempdima% + \pgfmathsetlength\pgfutil@tempdima{\barlevel}% + \pgfutil@tempdimb=3\pgflinewidth% level distance + \ifdim\pgfutil@tempdima<0pt% + \advance\pgf@ya by +0.5\pgflinewidth% + \advance\pgf@ya by \barlower\pgfutil@tempdimb% + \advance\pgf@ya by \barlevel\pgfutil@tempdimb% + \pgf@yb=\pgf@ya% + \else% + \advance\pgf@yb by-0.5\pgflinewidth% + \advance\pgf@yb by -\barlower\pgfutil@tempdimb% + \advance\pgf@yb by \barlevel\pgfutil@tempdimb% + \fi% + \pgfpathmoveto{\pgfqpoint{\pgf@xa}{\pgf@yb}}% + \pgfpathlineto{\pgfqpoint{\pgf@xb}{\pgf@yb}}% + } +} + + +% Power types +\tikzset{power/.style args={#1}{ + append after command={ + \pgfextra{ + \node[entity,shape=rectangle,rounded corners,fit={(\tikzlastnode)},label={[font=\orm@font]#1}] at (\tikzlastnode) (\tikzlastnode-power) {}; + } + } + } +} + + +% Sequence types +\tikzset{sequence/.style args={#1}{ + append after command={ + \pgfextra{ + \node[entity,shape=rectangle,rounded corners=0pt,fit={(\tikzlastnode)},label={[font=\orm@font]#1}] at (\tikzlastnode) (\tikzlastnode-sequence) {}; + } + } + } +} + + +\tikzset{ + unique/.code={\orm@parse@xunique#1:\pgf@nil}, + unique/.default=1, +} + +% parses '<which>:<level>' and '<which>' +\def\orm@parse@xunique#1:#2\pgf@nil{% + \def\orm@temp{#2}% + \ifx\orm@temp\pgfutil@empty% + \orm@@parse@xunique#1:1:\pgf@nil% + \else% + \orm@@parse@xunique#1:#2\pgf@nil% + \fi% +} + +% parses n-m:<level> and n:<level> +\def\orm@@parse@xunique#1:#2:\pgf@nil{% + \pgfutil@in@{-}{#1}% + \ifpgfutil@in@% + \orm@parse@xunique@@bar#1:#2\pgf@nil% + \else% + \orm@parse@xunique@@bar#1-#1:#2\pgf@nil% + \fi% +} + +\def\orm@parse@xunique@@bar#1-#2:#3\pgf@nil{% + \def\orm@tempA{#1}% + \ifx\orm@tempA\pgfutil@empty% + \relax% + \orm@parse@xunique@@bar#2-#2:-1\pgf@nil + \else% +\tikzset{append after command={ + \bgroup% + [current point is local=true] + let \p1 = (\tikzlastnode.west), \p2 = (\tikzlastnode.east) + in \pgfextra{\pgfmathparse{(\x2-\x1)/4mm}} + (\tikzlastnode) node[ + /orm/uniqueness bar from/.expand once=#1, + /orm/uniqueness bar to/.expand once=#2, + /orm/uniqueness bar set roles/.expand once=\pgfmathresult, + /orm/uniqueness bar level=#3, + shape=uniqueness bar, + \orm@unique@bar@style, + minimum height=2.5mm, + /orm/uniqueness bar style + ]{} + \egroup + }}% + \fi% +} + +%% Skipped uniqueness bar +% TODO: remove this duplicated code. + +\tikzset{ + skip unique/.code={\orm@parse@sunique#1:\pgf@nil}, + skip unique/.default=1, +} + +% parses '<which>:<level>' and '<which>' +\def\orm@parse@sunique#1:#2\pgf@nil{% + \def\orm@temp{#2}% + \ifx\orm@temp\pgfutil@empty% + \orm@@parse@sunique#1:1:\pgf@nil% + \else% + \orm@@parse@sunique#1:#2\pgf@nil% + \fi% +} + +% parses n-m:<level> and n:<level> +\def\orm@@parse@sunique#1:#2:\pgf@nil{% + \pgfutil@in@{-}{#1}% + \ifpgfutil@in@% + \orm@parse@sunique@@bar#1:#2\pgf@nil% + \else% + \orm@parse@sunique@@bar#1-#1:#2\pgf@nil% + \fi% +} + +\def\orm@parse@sunique@@bar#1-#2:#3\pgf@nil{% + \def\orm@tempA{#1}% + \ifx\orm@tempA\pgfutil@empty% + \relax% + \orm@parse@xunique@@bar#2-#2:-1\pgf@nil + \else% +\tikzset{append after command={ + \bgroup% + [current point is local=true] + let \p1 = (\tikzlastnode.west), \p2 = (\tikzlastnode.east) + in \pgfextra{\pgfmathparse{(\x2-\x1)/4mm}} + \pgfextra{\let\orm@unique@bar@style=\orm@unique@bar@skipped}% + (\tikzlastnode) node[ + /orm/uniqueness bar from/.expand once=#1, + /orm/uniqueness bar to/.expand once=#2, + /orm/uniqueness bar set roles/.expand once=\pgfmathresult, + /orm/uniqueness bar level=#3, + shape=uniqueness bar, + \orm@unique@bar@style, + minimum height=2.5mm + ]{} + \egroup + }}% + \fi% +} + +% TODO: add optional parameters and document this +\tikzstyle{preferred unique}=[unique=1:1,unique=1:2] + +\makeatother + +%<–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––> +\endinput diff --git a/graphics/pgf/contrib/tkz-orm/tkz-orm.tex b/graphics/pgf/contrib/tkz-orm/tkz-orm.tex new file mode 100644 index 0000000000..dd540d79a6 --- /dev/null +++ b/graphics/pgf/contrib/tkz-orm/tkz-orm.tex @@ -0,0 +1,937 @@ +\documentclass[a4paper,10pt]{article} + +\usepackage{tkz-orm} +\usepackage{pgfmanualstyle} + +\usetikzlibrary{fit} % fitting library +\usetikzlibrary{positioning} % for left/right=of ... + +\usepackage[colorlinks=false,pdfborder={0 0 0}]{hyperref} +% [pagebackref=true, backref=true +\usepackage{multirow} + +\usepackage{makeidx} +\makeindex + +\def\ormVersion{0.1.4} +\def\ormDate{January 15, 2016} +\newif\ifappendix +\appendixfalse +\appendixtrue + +% -------------------------------------------------------------- +%% Beginning of the documentation +% -------------------------------------------------------------- +\title{The \tkzorm\ package\\Object-Role Model Drawing Library} +\author{Jakob Vo\ss\footnote{jakob.voss@gbv.de}, Camil Staps\footnote{info@camilstaps.nl}} +\date{Version \ormVersion\\\ormDate\\[5mm]\url{http://purl.org/net/tkz-orm}} + +\begin{document} +\maketitle + +\begin{abstract}\noindent +This package provides styles for drawing Object-Role Model (ORM2) diagrams +in \TeX\ based on the \textsc{pgf} and \tikzname\ picture environment. +\end{abstract} + +\tableofcontents +\pagebreak + +\section{Introduction} +\label{sec:introduction} + +\tkzorm\ is intended to help you creating Object-Role Model (ORM) diagrams. It is based on the \textsc{pgf} and \tikzname\footnote{Available at \url{http://sourceforge.net/projects/pgf/}.\\This document was created with \tikzname\ version \pgftypesetversion} picture macro package for \TeX. and provides additional styles and commands to typeset ORM2 diagrams. With \tkzorm\ you can ``program'' ORM diagrams just as you ``program'' your document when you use \LaTeX\ -- including the inherental lack of \textsc{wysiwyg}. Unless multi-touch e-paper interfaces become usable, \tkzorm\ can best be combined with a whiteboard or paper and pencil --- but you may also find ways to automatically create ORM diagrams with \tkzorm. + +\subsection*{Status of this package} +This is the developer version of \tkzorm. Please send your comments to the author so the package can be improved. All parts of the package are available at least under the \LaTeX{} Project Public License\cite{LPPL} and the GNU Public license\cite{GPL2}. For details have a look at the file |LICENSE| that is part of this package. The permament URL of \tkzorm is \url{http://purl.org/net/tkz-orm} which redirects you to its current location and a collection of examples. + +\subsection*{ORM in a nutshell} +Object-Role Modeling (ORM)\footnote{See \url{http://www.orm.net/}.} is a fact-oriented modeling language that evolved from the \textit{Natural-language Information Analysis Method} (NIAM) by G.M. Nijssen. The current version (ORM2) is mainly based on works of Terry Halpin. Like ERM, UML, and other data modeling languages ORM helps to identify and abstract information objects, relationships, and rules of a Universe of Discourse to be formalized and implemented on another level. ORM includes a graphical notation and a precise verbalization in natural language. Models can further be validated by populating fact tables with sample data. An overview of the ORM2 graphical notation is given in \cite{Halpin2005} and more details in \cite{Halpin2008}. An ORM model consists of object types (section~\ref{sec:objecttypes}) and predicates (section~\ref{sec:predicates}). Each of the $n$ roles of an $n$-ary predicate is connected to an object type that plays the specific role in this predicate. Furthermore a model can contain constraints (section~\ref{sec:constraints}), subtypes (section~\ref{sec:subtyping}), and other features (section~\ref{sec:additionalfeatures}). \tkzorm also allows you to change the appearance of ORM diagrams (section~\ref{sec:generalstyles}). + +\begin{figure}[ht] + \centering + \begin{tikzpicture} + \entity (A) at (0,0) {A}; + \entity[right=of A] (blank) {}; + \value[right=of blank] (value) {Value type}; + \entity[right=of value] (fixedwidth) {Person}; + \entity[right=of fixedwidth] (tabular) {Activity\\(Code)}; + \entity[right=of tabular] (typenamelabel) {Type name\\(.reference)}; + \entity[right=of typenamelabel,zoomed] () {Zoomed}; + \end{tikzpicture} + \caption{Examples of object types in ORM} +\end{figure} + +\pagebreak +\section{Object Types} +\label{sec:objecttypes}\index{Object types}\index{Entities}\index{Values} +Object types are drawn as rectangles with rounded borders. The object's type name is written as node text inside. \emph{Entity types} use solid border lines and \emph{value types} use dashed border lines. The minimal size of an object is set to 6mm$\times$6mm. This package provides the following styles for entities and values: + +\begin{stylekey}{entity} +This style is to be used with nodes that represent entity types. +\begin{codeexample}[] +\begin{tikzpicture} + \node[entity] at (0,0) {Foo}; + \node[entity] (unnamed) at (1.2,0) {}; + \node[entity] at (2.5,0) {Person\\(.name)}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{value} +This style is to be used with nodes that represent value types. +\begin{codeexample}[] +\begin{tikzpicture} + \node[value] {Name}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{power} +This style is to be used with nodes that represent power types. +\begin{codeexample}[] +\begin{tikzpicture} + \node[entity,power=below:As] {A}; + \node[entity,power=Bs] at (1.1,0) {B}; + \node[entity,power] at (2.2,0) {C}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{sequence} +This style is to be used with nodes that represent sequence types. +\begin{codeexample}[] +\begin{tikzpicture} + \node[entity,sequence=below:As] {A}; + \node[entity,sequence=Bs] at (1.1,0) {B}; + \node[entity,sequence] at (2.2,0) {C}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{every entity} +\stylekeyheadline[]{every value} +Each of this styles is envoked by the styles \sty{entity} or \sty{value}. Change one of this styles to change the appearance of entity or value types. +\begin{codeexample}[width=3cm] +\begin{tikzpicture}[ + every entity/.style={draw=blue!50,fill=blue!20}, + every value/.style={draw=green!50,fill=green!20}] + \node[entity] (P) at (0,0) {Person}; + \node[value] (N) at (1.5,0) {Name}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{every object} + This style is envoked by the styles \sty{entity} and \sty{value}. Change this style to change the common appearance of entity and value types. +\begin{codeexample}[width=3cm] +\begin{tikzpicture}[ + every object/.style={shape=rectangle,draw=red}] + \node[entity] (P) at (0,0) {Person}; + \node[value] (N) at (1.5,0) {Name}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\noindent +Since entity types and value types are very frequent node types in an ORM diagram, there are two special abbreviations for creating object types: + +\begin{command}{entity} +Inside |{tikzpicture}| this is an abbreviation for |\node[entity]|. +\end{command} + +\begin{command}{value} +Inside |{tikzpicture}| this is an abbreviation for |\node[value]|. +\end{command} + + +\section{Predicates and Roles} +\label{sec:predicates}\index{predicates}\index{roles} +Relationship parts (\emph{roles}) played by objects are shown as boxes of fixed size (4mm$\times$2.5mm). A \emph{predicate} is a sequence of one or more concatenated role boxes. Predicates can be created with the following styles: + +\begin{stylekey}[\opt{\meta{number of roles}}]{roles} +\stylekeyheadline[\opt{1}]{role} +Shapes the current node as predicate with a given number of role boxes. Numbers from 1 to 20 are supported. The default value is 2 (binary). + +\begin{codeexample}[] +\begin{tikzpicture}[orm] + \entity (A) at (0,1) {A}; + \entity (B) at (2.8,1) {B} + edge node[roles=3] (p) {} (A); + \entity (C) at (1.4,0) {C} edge (p.south); + \node[role] at (2.2,0){} edge (C); + \draw (A) |- node[roles,xshift=2mm]{} (C); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} % roles + +\begin{stylekey}[\opt{\meta{number of roles}}]{vroles} +\stylekeyheadline[\opt{1}]{vrole} +Shapes the current node as predicate rotated by 90 degree (vertical). +\end{stylekey} % vroles + +\begin{stylekey}{relation} +\stylekeyheadline[]{relationship} +\stylekeyheadline[]{plays} + This equivalent styles are to be used with connection lines between objects and roles. By default it just includes the style \sty{every orm line} which results in a solid, black line of 0.25mm width. +% Alternatively of using this style you can enable the general style \sty{orm} +% (see section~\ref{sec:generalstyles}) and just draw a normal line. +\begin{codeexample}[width=3cm] +\begin{tikzpicture} + \node[entity,power] (A) {A}; + \node[roles] (r) at (1,0) {}; + \draw[relation] (A-power) -- (r); + \node[vrole] at (0,-.8){} edge[relation] (A); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\noindent +The following table lists abbreviations that can be used for creating predicate nodes and relationship lines inside |{tikzpicture}|: + +\begin{table}[ht] +\begin{tabular}{lll} +\textbf{command(s)} & \textbf{abbreviation for} & \\ +\commandentry{unary} or \commandentry{role} & |\node[role]| & + \colorbox{graphicbackground}{\tikz \unary{};} \\ +\commandentry{binary} or \commandentry{roles} & |\node[roles]| & + \colorbox{graphicbackground}{\tikz \binary{};} \\ +\commandentry{ternary} & |\node[roles=3]| & + \colorbox{graphicbackground}{\tikz \ternary{};} \\ +\commandentry{vunary} or \commandentry{vrole} & |\node[vrole]| & + \multirow{3}{2cm}{\colorbox{graphicbackground}{ + \begin{tikzpicture} + \vunary at (0,0){} ; + \vbinary at (0.6,-0.2){}; + \vternary at (1.2,-0.4){}; + \end{tikzpicture} + }} \\ +\commandentry{vbinary} or \commandentry{vroles} & |\node[vroles]| \\ +\commandentry{vternary} & |\node[vroles=3]| \\ +\commandentry{plays} & |\draw[relationship]| & + \colorbox{graphicbackground}{\tikz \plays (0,0) -- (1,0);} \\ +\end{tabular} +\end{table} + +\noindent The general style of predicates and roles can be modified by the following keys: + +\begin{stylekey}{every predicate} +Changing this style to modify the common appearance of predicates. +\begin{codeexample}[width=3cm] +\begin{tikzpicture}[ + every predicate/.style={draw=blue,fill=green!20}] + \entity at (2,0) (B) {B}; + \entity (A) {A} edge[relation] node[roles]{} (B); + \vunary at (0,-0.8) (r) {} edge[relation] (A); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{every relationship} + This style is envoked by the style \sty{relationship}. To change the appearance of explicit relationship lines you can change this style. Please keep in mind that nodes placed on a line by |node| in one operation inherit properties from the line they refer to, so you should create relationship lines with \cmd{plays}. +\begin{codeexample}[width=3cm] +\begin{tikzpicture}[orm, + every relationship/.style={draw=blue,dotted}] + \entity (A) {A}; + \plays (A) to node[roles]{} (2,0) node(B){B}; + \vunary at (0,-0.8) (r) {} edge[relation] (A); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\noindent +Predicates are drawn either horizontally (\sty{roles}) or vertically (\sty{vroles}) as nodes with one or more parts. Figure~\ref{fig:hanchors} shows some of the anchors. Vertical predicates are rotated by 90 degree so |north| is at the left, |west| is at the bottom etc. +% TODO: define better anchors or anchor aliases (start=west, end=east, top=north, bottom=south, role 1=one north) + +\begin{figure}[h] +\centering +\begin{codeexample}[width=10cm] +\Large +\begin{tikzpicture} + \node[roles=3,shape example,inner ysep=0.75cm] (s) {}; + \foreach \anchor/\placement in + {one north/below, one south/above, + three north/below, three south/above, + one split/below, one split north/above, one split south/below, + two split/below, two split north/above, two split south/below, + north/below, south/above, east/below, west/below, center/above, + north west/above, north east/above, south west/below, south east/below} + \draw[shift=(s.\anchor)] plot[mark=x] coordinates{(0,0)} + node[\placement] {\scriptsize\texttt{s.\anchor}}; +\end{tikzpicture} +\end{codeexample} +\caption{Node anchors of an ORM predicate} +\label{fig:hanchors} +\end{figure} + +\noindent +The verbalization of a predicate can be given as |label| next to a predicate. For binary relationships forward and inverse readings can be seperated by a slash. To show the inverse reading, add an arrow tip with the commands \cmd{ormleft} or \cmd{ormup}. Labels for predicates with more then two roles must contain three dots (|\ldots|) for each inner role. Role names and indices can be added by different styles. +% TODO: Show how to change label distance with style |label distance| : +% \begin{tikzgraphic}[orm] % needed - there is no "every label/.style={orm}" +% \node[role,label={R}] (r1) {}; % put the label above +% \node[role,right=of r1,label={below:R}] (r2) {}; % put the label below +% \node[role,right=of r2,label={[label distance=1.5mm]above:{R}},unique] (r3) {}; +% \end{tikzgraphic} + +\begin{figure}[h] +\centering +\begin{codeexample}[] +\begin{tikzpicture}[orm] + \entity at (0,3) (P) {Person}; + \entity at (3,3) (C) {Car}; + \entity at (0,0) (L) {License}; + \entity at (6.6,3) (M) {Maker}; + \unary[label=valid] at (1.2,0) (V) {} edge (L); + \draw (P) to node[roles, + label=below:drives,label=\ormleft{is driven by}]{} (C); + \draw (P) to node[vroles,label=has,label=below:\ormup{of}]{} (L); + \draw (C) to node[roles,label=created by/created]{} (M); + \ternary[label=below:drives \ldots by] at (3,1) (t) {}; + \plays (P) -- (t.west); + \plays (C) -- (t); + \plays (M) -- (t.east); +\end{tikzpicture} +\end{codeexample} +\end{figure} + +\begin{stylekey}{role name} +This style is to be used with role names. Role names can be displayed in square brackets and blue color next to a role box. % TODO: add role name as 'label' style +\begin{codeexample}[width=3cm] +\begin{tikzpicture}[orm] + \entity (A) at (0,0) {A}; + \entity (B) at (2.8,0) {B}; + \plays (A) edge node(r)[roles]{} (B); + \node[role name, + at=(r.north),anchor=south east] {[role1]}; + \node[role name, + at=(r.north),anchor=south west] {[role2]}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}[\meta{n}\opt{\texttt{:}\meta{index}}]{index} +Adds a role index as small label at the $n$th role box (default: $n$). +\begin{codeexample}[] +\begin{tikzpicture} +\binary[index=1,index=2:X] {}; +\vroles[index=A.1,index=2:A.2] at (.8,0) {}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + + +\section{Constraints} +\label{sec:constraints}\index{Constraints} +ORM provides a rich set of constraints: Mandatory constraints (section~\ref{sec:mandatoryconstraints}) and uniqueness constraints (section~\ref{sec:uniquenessconstraints}) limit the way objects can be combined in predicates. External constraints (section~\ref{sec:externalconstraints}) and subtype constraints (section~\ref{sec:subtyping}) involve multiple roles or object types. All constraints are displayed in magenta and either drawn directly at an object type or role, or linked to one or more object types or role with dotted or dashed lines or arrows (see the styles \sty{limits} and \sty{limits to}). ORM2 defines a set of symbols for external (section~\ref{sec:externalconstraints}), ring (section~\ref{sec:ringconstraints}) and other types of constraints. The general \textsc{tkz-orm} constraint key \sty{constraint} only sets the font to violet. An optional key value can be used to add a predefined constraint symbol at the current position. + +\begin{stylekey}[\meta{color}]{constraintcolor} +Changes the constraint color (default: |magenta!100|). +\end{stylekey} + +\subsection{Uniqueness Constraints} +\label{sec:uniquenessconstraints} +By default every row in a fact table is unique. To express additional uniqueness constraints on one or more roles of a fact table or to explicitly express the uniqueness on the full predicate, a \emph{uniqueness bar} is drawn above or below the fact roles. If the bar spans two or more non-adjacent roles, it is drawn as dotted line above or below the excluded roles. Bars can be stacked in multiple levels. To draw uniqueness bars you can use the following styles at predicate nodes: + +% TODO: add preferred unique (double line) + +\begin{stylekey}[\opt{\meta{from}\texttt{-}\meta{to}\texttt{:}\meta{level}}]{unique} +Draws a uniqueness constraint bar above one or more roles. All parts of the key value are optional. As default a simple uniqueness bar above (\meta{level}|=1|) the first role (\meta{from}|=1|) is drawn. To make a bar span multiple roles, use the \meta{from}|-|\meta{to} syntax. Negative levels drawn the bar below the roles. +\begin{codeexample}[] +\begin{tikzpicture} +\binary[unique] at (0,0) {}; +\binary[unique=2] at (1.2,0) {}; +\ternary[unique=2-3:-1] at (0.2,-0.6) {}; +\unary[unique=1,unique=1:2] at (1.4,-0.6) {}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}[\opt{\meta{from}\texttt{-}\meta{to}\texttt{:}\meta{level}}]{skip unique} +Draws a dotted uniqueness constraint bar. The syntax is the same as at the \sty{unique} key. +The bar includes background color in the gaps between dots, so it can be drawn on top of +another bar. +\begin{codeexample}[] +\begin{tikzpicture} +\ternary[unique=1-3,skip unique=2] {}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{uniqueness bar} +\stylekeyheadline[]{skipped uniqueness bar} +This styles can be used to draw a line in the same style as a uniqueness constraint bar or a dotted uniqueness constraint bar. +\begin{codeexample}[width=3cm] +\tikz\draw[uniqueness bar] (0,0) -- (2,0); +\end{codeexample} +\begin{codeexample}[width=3cm] +\tikz\draw[skipped uniqueness bar] (0,0) -- (2,0); +\end{codeexample} +\end{stylekey} + +\noindent +Please note that elementary $n$-ary predicates should only have uniqueness constraints of at least $n-1$ roles. Picture~\ref{fig:splitternary} shows how to split a ternary predicate with unique constraint bar on one role. + +\begin{figure}[h] +\centering +\begin{codeexample}[] +\begin{tikzpicture}[orm] % needs positioning library + \ternary[unique] (t) at (0,0) {}; + \entity[left=of t] {A} edge (t); + \entity[above=of t] {B} edge (t); + \entity[right=of t] {C} edge (t); + \node at (2.3,0) {$\Rightarrow$}; + \entity (A) at (3,0) {A}; + \binary[right=of A.north east,yshift=1mm,unique] (t1) {}; + \binary[right=of A.south east,yshift=-1mm,unique] (t2) {}; + \plays (A) -- (t1.west); \plays (A) -- (t2.west); + \entity[right=of t1] {B} edge (t1); + \entity[right=of t2] {C} edge (t2); +\end{tikzpicture} +\end{codeexample} +\caption{A ternary predicate can be split into to binary predicates} +\label{fig:splitternary} +\end{figure} + + +\subsection{Mandatory Role Constraints} +\label{sec:mandatoryconstraints} +To indicate explicitly that a role is mandatory, a mandatory role dot is added to either end of the line that connects the role to its object. Usually it is placed at the object type end. This package defines the style key \sty{constraint dot} (alias \sty{cdot}) and the following keys which can be used to add mandatory role dots to lines drawn with the |to| operation. + +\begin{stylekey}{constraint dot} +\stylekeyheadline[]{cdot} +Draws the current node as mandatory role dot. +\begin{codeexample}[] +\tikz \node[cdot] {}; +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{mandatory} +\stylekeyheadline[]{required} +This styles enables the \sty{relationship} style and adds a mandatory role dot at the start of a straight line. +\begin{codeexample}[] +\begin{tikzpicture} + \entity (A) {A}; + \entity at (2,0) {B} edge[mandatory] + node[roles] (p) {} (A); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{required by} +This styles enables the \sty{relationship} style and adds a mandatory role dot at the end of a straight line. +\begin{codeexample}[] +\begin{tikzpicture} + \entity (A) {A}; + \entity at (2,0) {B} edge[required by] + node[roles] (p) {} (A); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{both required} +\stylekeyheadline[]{both mandatory} +This styles enables the \sty{relationship} style and adds mandatory role dots at both ends of a straight line. +\begin{codeexample}[] +\begin{tikzpicture} + \entity (A) {A}; + \entity at (2,0) {B} edge[both required] + node[roles] (p) {} (A); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\noindent To show that either of many roles is mandatory, you can add an \emph{inclusive-or} (\emph{disjunctive mandatory}) role constraint with |constraint=mandatory| as shown in section~\ref{sec:externalconstraints}. By default it is assumed that each entity or value must play at least some role. \emph{Independent object types} whose roles are collectively optional can be marked by an exclamation mark appended to its name. It is recommended not to include implied mandatory constraints unless they they refer to subtypes (section~\ref{sec:subtyping}). +\index{Independent object types}\index{Object types!Independent} + + +\subsection{External constraints} +\label{sec:externalconstraints} +External constraints span multiple roles that may come from different predicates. They are depicted by several circle symbols next the roles they limit, possibly linked to them with a dotted or dashed line (style \sty{limits} and \sty{limits to}). \tkzorm\ implements external constraint symbols as node shapes. + +\begin{stylekey}[\opt{\meta{constraint type}}]{constraint} + This style sets the font to ORM style on constraint color (violet). If you provide a constraint type as key value, the current node is shaped as constraint circle and the symbol of the specified constraint type is drawn. The most common constraint types are |exclusive| (alias |x|) to indicate that populations of two or more role-sequences must be mutually exclusive, |mandatory| (alias |required|, |total|, and |or|) to indicate that each at least on of two more roles must be played by an object type, and |xor| (alias |partition|) to indicates that exactely one of two or more roles must be played by an object type. These constraints can also be used in subtyping (section~\ref{sec:subtyping}). The constraint type |unique| and |preferred unique| enforces combinations of object types that play a given set of roles to always be the same. The types |equal|, |subset|, and |supset| indicate that tuples of roles have to be equal, subset or superset compared to each other (|supset| is not included in standard ORM2). The constraint type is |external| only draws the circle and can be used for custom constraints. + % TODO: see more about rings and collections ... +\begin{codeexample}[] +\begin{tikzpicture}[orm] + \matrix[column sep=2mm, row sep=2mm]{ + \node[constraint=x]{}; & \node[right]{exclusive / x}; & + \node[constraint=or]{}; & \node[right,text width=2.8cm] + {mandatory / total required / or}; & + \node[constraint=xor]{}; & \node[right]{xor / partition}; \\ + \node[constraint=unique] {}; & \node[right]{unique}; & + \node[constraint=preferred unique]{};&\node[right]{preferred unique};& + \node[constraint=external]{}; & \node[right]{external}; \\ + \node[constraint=equal] {}; & \node[right]{equal}; & + \node[constraint=subset] {}; & \node[right]{subset}; & + \node[constraint=supset] {}; & \node[right]{supset}; \\ + }; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} +\index{\texttt{custom} constraint} +\index{\texttt{x} constraint} +\index{\texttt{or} constraint} +\index{\texttt{xor} constraint} +\index{\texttt{mandatory} constraint} +\index{\texttt{required} constraint} +\index{\texttt{total} constraint} +\index{\texttt{partition} constraint} +\index{\texttt{unique} constraint} +\index{\texttt{preferred unique} constraint} +\index{\texttt{equal} constraint} +\index{\texttt{subset} constraint} +\index{\texttt{supset} constraint} + + +\begin{stylekey}{limits} % TODO: add optional parameter + This style is to be used with lines that connect constraint circles and roles. It can also be used to link other kinds of constraints (for instance value constraints) to the entity, value, or role they belong to. +\begin{codeexample}[width=3cm] +\begin{tikzpicture} + \unary (r1) at (0,0) {}; + \unary (r2) at (0,-1.4) {}; + \draw[limits] (r1) to node[constraint=x] {} (r2); +\end{tikzpicture} +\end{codeexample} + % TODO: example of subtyping constraints +\end{stylekey} + +\begin{stylekey}{limits to} % TODO: add optional parameter +This style is to be used with directed lines that connect constraint circles and roles. The line is drawn in the same style as \sty{limits} but dashed and with an arrow tip of style \arrowtip{orm arrow} at the head. +\begin{codeexample}[width=3.4cm] +\begin{tikzpicture}[orm] + \unary[index=2] (a) at (0,0) {}; + \unary[index=1] (b) at (0,-1.4) {}; + \draw[limits to] (b) -- (a) + node[pos=.4,constraint=subset,name=s]{}; + \node[right=2mm of s,text width=2.3cm] + {Each object that plays role 1 also plays role 2}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{command}[]{limits} +\end{command} +\begin{command}[]{limitsto} +%\stylekeyheadline[]{limits to} +Inside |{tikzpicture}| these commands can be used as abbreviations for +|\draw[limits]| and |\draw[limits to]|. +\begin{codeexample}[width=3.4cm] +\begin{tikzpicture}[orm] +\limits (0,.4) to (1,.4); \limitsto (0,0) to (1,0); +\end{tikzpicture} +\end{codeexample} +\end{command} + +\begin{command}[\marg{constraint type name}\marg{path code}]{constraintdeclare} + This command declares a new constraint type. The \marg{path code} is passed to the |append after command| key to be drawn after the constraint circle. Unless you want to extend ORM you do not need to declare new constraint types. This command is for internal use only! +\end{command} + +\begin{command}[\marg{alias name}\marg{existing constraint type name}]{constraintdeclarealias} + This command can be used to create an alias (another name) for an existing constraint type. + This command is for internal use only! +\end{command} + +\begin{stylekey}{every constraint} + This style is envoked at every constraint. You can change this style to change for instance the constraint color. +\end{stylekey} + + +\subsection{Ring Constraints} +\label{sec:ringconstraints} + +A ring constraint can be applied to any two roles of a predicate that are +played by the same object type (or the same supertype). Such constraints can +also be viewed as properties of a binary relation or as properties of a +directed graph. There are 10 ring constraints that combined can be used in 26 +forms. The graphical syntax of `irreflexive' and `antisymmetric' provided by +this package are slightly changed compared to the official ORM2 syntax and +some combinations are omitted or changed. + +%and the two symbols for `asymmetric and +%intransitive', and for `symmetric and intransitive' have been omitted because +%of complexity. + +% TODO: additional: tree, otree +% combined: acyclic intransitive, symmetric irreflexive etc. +\begin{codeexample}[] +\centering +\begin{tikzpicture}[orm] + \foreach \n/\s in {0/irreflexive,1/asymmetric,2/strongly intransitive, + 3/antisymmetric,4/acyclic,5/acyclic intransitive, + 6/symmetric,7/purely reflexive,8/symmetric irreflexive, + 9/intransitive,10/reflexive,11/transitive}{ + \path ($mod(\n,3)*(3.4,0)-int(\n/3)*(0,0.8)$) node [constraint=\s] {} + +(4mm,0) node[anchor=west] {\s}; }; +\end{tikzpicture} +\end{codeexample} + +\begin{codeexample}[width=2.5cm] +\begin{tikzpicture}[orm] +\entity (P) {Person}; +\binary[below=of P,unique=2,label=below:mother of] (r) {}; +\plays (P) to (r.one north) (P) to (r.two north); +\limits (r.north) to +(-1,0.4) node[constraint=acyclic]{}; +\end{tikzpicture} +\end{codeexample} + + +\subsection{Number and Value Constraints} +Value constraints, cardinality constraints, and occurrence frequencies can simply be drawn beside the object type or role they refer to, optionally linked to with a dotted or dashed limitation line. + +\noindent\textbf{Frequency Constraints} specify the number of times an object can play a role. Usually it is connected to the roles with a limtation line. % TODO: better syntax as pin + +\begin{codeexample}[width=3cm] +\begin{tikzpicture} +\binary[index=1:1] (b) {}; +\limits (b.one south) -- +(0,-.4) node[constraint]{f}; +\end{tikzpicture} +\end{codeexample} + +\noindent A \textbf{Value constraint} indicates which values are allowed in an object type or role. It can be defined by declaring the set of possible values enclosed in curly brackets next to an object or role type. The commands \cmd{ormbraces} and \cmd{ormvalues} are handy abbreviations to create curly brackets. +\index{value constraints}\index{constraints!values} + +\begin{codeexample}[] +\begin{tikzpicture} +\entity (A) {A}; +\node[constraint,anchor=north west,inner ysep=0] + at (A.north east) {\ormbraces{a, b, c}}; +\end{tikzpicture} +\end{codeexample} + +\noindent\textbf{Value comparision-constraints} are depicted by one of four comparision operators $<$, $\le$ (|le|), $>$, and $\ge$ (|ge|). The constraints are shown at a dashed arrow between two roles in the same way as |constraint=subset| and |constraint=supset| (but the value-comparision is between instances not between sets). Equality can be stated with |constraint=equal| which should not be confused with similar looking |constraint=purely reflexive|. +\index{value-comparision constraints}\index{constraints!value-comparision} +\index{\texttt{<} constraint} +\index{\texttt{>} constraint} +\index{\texttt{le} constraint} +\index{\texttt{ge} constraint} + +\begin{codeexample}[] +\tikz \foreach \x/\s in {0/<,1/ge,2/>,3/le}{ + \draw[limits to] (\x,0) to (\x,1.2); + \node[constraint=\s] at (\x,.5) {}; +}; +\end{codeexample} + +\noindent\textbf{Cardinality constraints} are rarely included in ORM diagrams since the are often implied by other constraints. However you can explicitely say that each population of an object type or a role includes exactely, at most, or at least a given number of instances. This is done by adding a cardinality constraint next to the object or role. The hash sign (``\#'') stands for the cardinality. +\index{cardinality constraints}\index{constraints!cardinality} + +% TODO: Use text mode instead of math? +\begin{codeexample}[] +\begin{tikzpicture}[orm] + \entity[label={[constraint]\#=$n$}] {A}; + \entity[label={[constraint]below:1$\leq$\#$\leq$6}] + at (1.1,0) {A}; + \role[label={[constraint]\#$\leq$2}] at (2,0) {}; +\end{tikzpicture} +\end{codeexample} + + + +\subsection{Textual constraints} +\index{textual constraints}\index{constraints!textual} +Constraints not expressed by predefined graphical notation may be specified as textual rules. Textual rules can be displayed as footnotes with footnote numbers or signs that mark the involved elements in the diagram. + +\begin{stylekey}[\opt{\meta{mark}}]{rule} +This key is to be used with nodes that contain textual rules. The optional \meta{mark} is shown as footnotes index left to the rule. +\begin{codeexample}[] +\begin{tikzpicture} +\node[rule=1] {{\ormbf Each} Number identifies {\ormbf at most one} Room.}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{command}[]{rules} +This command is an abbreviation for |\matrix[row sep=0mm,nodes={right}]| inside |{tikzpicture}|. +Matrices are useful to draw multiple textual rules below each other. + +\begin{figure}[h] +\centering +\begin{codeexample}[] +\begin{tikzpicture} + \entity (E) {Employee\ormind{1}\\(.nr)}; + \binary[left=of E.north west,unique=2,label=\ormleft{has}] (h) {}; + \binary[left=of E.south west,unique=1-2, + label=below:\ormleft{uses\ormind{2,3}}] (u) {}; + \entity[left=of h] (Rank) {Rank\\(.code)}; + \entity[left=of u] (Car) {CompanyCar\\(.regNr)}; + \node[constraint=text,align=left,anchor=east] at (Rank.west) + {\textbraceleft`Exec',\\`NonExec'\textbraceright}; + \plays[mandatory] (E) to (h.east); + \plays (h) to (Rank) (E) to (u.east) (u) to (Car); + \binary[right=of E.north east,unique,label=was born on] (b) {}; + \binary[right=of E.south east,unique,label=below:was hired on] (i) {}; + \entity[right=1.8 of E] (Date) {Date\\(mdy)}; + \plays[mandatory] (E) to (b.west) (E) to (i.west); + \plays (b.east) to (Date) (i.east) to (Date); + \node[role name,anchor=south west] at (b.east) {[birthdate]}; + \node[role name,anchor=north west] at (i.east) {[hiredate]}; + \rules at (-.4,-2) { + \node[rule=1] {{\ormbf For each} Employee, birthdate $<$ hiredate.}; \\ + \node[rule=2] { + {\ormbf Each} Employee {\ormbf who} has Rank `NonExec' uses + {\ormbf at most one} CompanyCar.};\\ + \node[rule=3] { + {\ormbf Each} Employee {\ormbf who} has Rank `Exec' uses + {\ormbf some} CompanyCar.};\\ + }; +\end{tikzpicture} +\end{codeexample} +\end{figure} +\end{command} + +\section{Subtyping} +\label{sec:subtyping} + +To draw type hierarchies you can use the tree syntax of \tikzname. +Euler diagrams are a less used alternative for simple type hierarchies. +% TODO: add Euler diagram example + +\begin{stylekey}{subtype} +Draws a subtype relationship arrow from the supertype to the subtype. +\begin{figure}[h] +\centering +\begin{codeexample}[] +\begin{tikzpicture}[ + edge from parent/.style=subtype] + \node[entity] {Animal} + child {node[entity] {Mammal}} + child {node[entity] {Bird} + child {node[entity] {Penguin}} + child {node[entity] {Parrot}} + }; +\end{tikzpicture} +\end{codeexample} +\end{figure} +\end{stylekey} + +\begin{stylekey}{suptype} +Works in the same way as \sty{subtype} but with reverse direction. +\begin{codeexample}[] +\begin{tikzpicture} + \node[entity] (A) {Animal}; + \node[entity] (S) [right=6mm of A] {Sheep}; + \draw[suptype] (S) to (A); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\noindent Multiple inheritance may require to select one path as primary. +You can distinguish primary and secondary subtypes by drawing the latter +with a dashed arrow (\sty{subinterface} or \sty{supinterface}). + +\begin{stylekey}{subinterface} +\stylekeyheadline[]{supinterface} +Draw secondary subtype/supertype relationship arrows. +\begin{codeexample}[] +\begin{tikzpicture} + \node[entity] (A) {Animal}; + \node[entity] (P) [right=8mm of A] {Person}; + \draw[supinterface] (P) to (A); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + + +\noindent +Subtype constraints can be shown linked to the subtype arrrows: + +\begin{figure}[h] +\centering +\begin{codeexample}[] +\begin{tikzpicture}[orm] +\foreach \c/\x in {exclusive/0,total/2.5,partition/5}{ + \entity (A) at (\x,0) {A} [edge from parent/.style=subtype] + child {node [entity] (B) {B}} child {node [entity] (C) {C}}; + \limits ($(A)!.7!(B)$) to node[constraint=\c] {} ($(A)!.7!(C)$); + \node at (\x,-2) {\c}; +}; +\end{tikzpicture} +\end{codeexample} +\end{figure} + + +\section{Additional Features} +\label{sec:additionalfeatures} +%\ldots partly no standard ORM2 \ldots + +\subsection{Duplicated and implied parts of a model} +\label{sec:duplicatedandimplied} +Sometimes an object type or predicate is referred to without describing all its details because it is defined in an external model or because it is shown duplicated at some other place in the same model. To indicate such an external or duplicated object type or a predicate, a shadow is added to its shape. Alternatively ORM2 allows to add a circumflex ``\^{}'' to an object type's name. A different kind of redundancy are roles and constraints that deduce from other parts of the model. ORM2 includes the possibility to shade redundant roles. This is useful for instance to show conceptual pathes or join fact types that are normally excluded. Moreover ORM allows a \emph{zooming} on object types. This means that only objects and roles connected to a given object type are shown. + +\begin{stylekey}{duplicated model} +This style modifies the styles \sty{every object} and \sty{every predicate} so all object types and predicates in the current scope get a shadow. +\begin{codeexample}[] +\begin{tikzpicture}[orm] + \begin{scope}[duplicated model] + \entity (A) {A}; + \node[role] (r1) [right=of A] {}; + \node[role] (r2) [right=0 of r1] {}; + \draw[relationship] (A) -- (r1); + \end{scope} + \entity (B) [right=of r2] {B\^{}}; + \plays (r2) -- (B); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} % duplicated model + +\begin{stylekey}{implied model} + This style modifies the styles \sty{every orm line} and \sty{every object} in the current scope to draw all lines thin and all objects filled gray. + The style is currently broken. +\begin{figure}[h] +\centering +\begin{codeexample}[] +\begin{tikzpicture} + \matrix[column sep=4mm] { + \entity (A) {A}; & \binary (ab) {}; & \entity (B) {B}; & + \binary (bc) {}; & \entity (C) {C}; \\ }; + \plays (A) -- (ab) -- (B) -- (bc) -- (C); + \begin{scope}[implied model] + \node[constraint=unique] (con) [above=of B] {}; + \limits (ab.one north) -- (con) -- (bc.two north); + \ternary[unique=1-3,skip unique=2] (abc) [below=4mm of B] {}; + \plays (A) -- (abc.west); \plays (B) -- (abc); \plays (C) -- (abc.east); + \end{scope} +\end{tikzpicture} +\end{codeexample} +\end{figure} +\end{stylekey} + +\begin{stylekey}{duplicated} +\stylekeyheadline[]{implied} +This styles work like \sty{duplicated model} and \sty{implied model} but only affect the current element. +The style are currently broken. +\begin{codeexample}[] +\begin{tikzpicture} +\entity[duplicated] (P) {Person}; +\value[implied,right=1.6 of P] (V) {PersonName}; +\draw[implied,both required] (P) to + node[roles,unique=1,unique=2]{} (V); +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + + +\begin{stylekey}{zoomed} +This styles visualizes an object type as {\emph zoomed} by using a thicker line. +\begin{codeexample}[] +\begin{tikzpicture} +\entity at (0,0) {Normal}; +\entity[zoomed] at (2,0) {Zoomed}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + + +\subsection{Arrow heads} +\label{sec:arrowheads} +Constraint dots are implemented as arrow heads. The normal constraint +dot is drawn with arrow head |mdot| for mandatory. Furthemore there is an +implicit mandatory constraint dot (|idot|), a deontic mandatory constraint +dot (|odot|), and a implied deontic mandatory constraint dot (|iodot|). You +\emph{should not} directly use this arrow heads but the mandatory role +constraints |cdot|, |required| etc. (\ref{sec:mandatoryconstraints}) which +can be modified by other styles. This feature is not fully tested yet. + +\begin{codeexample}[] +\begin{tikzpicture}[orm] +\matrix [row sep=2mm,column sep=3mm,every entity/.style={minimum width=10mm}]{ + \entity[label=left:strict,label=above:explicit,right] (m) {mdot}; & + \entity[label=above:implicit] (i) {idot}; \\ + \entity[label=left:deontic,right] (o) {odot}; & + \entity (io) {iodot}; \\ }; + \plays[mdot-idot] (m) to (i); + \plays[odot-iodot] (o) to (io); +\end{tikzpicture} +\end{codeexample} + + +\subsection{Macros for text layout} +\label{sec:ormtext} +The following macros can be used both in \tikzname{} pictures or normal text: + +\begin{command}{ormtext} +Sets the font to the same sans-serif variant which is used in ORM diagrams. +\end{command} + +\begin{command}{ormbf} +Sets the font to a bold variant of \cmd{ormtext}. +\end{command} + +\begin{command}{ormc} +Sets the font to a \cmd{ormtext} in constraint color. +\end{command} + +\begin{command}[\marg{text}]{ormsup} +Puts some text in a superscript variant of \cmd{ormtext}. +\end{command} + +\begin{command}[\marg{text}]{ormsub} +Puts some text in a subscript variant of \cmd{ormtext}. +\end{command} + +\begin{command}[\marg{text}]{ormind} +Puts some text in a superscript variant of \cmd{ormbf}. +\end{command} + +\begin{command}[\marg{text}]{ormbraces} +Puts some text as \cmd{ormtext} in braces. +\end{command} + +\begin{command}[\marg{text}]{ormvalues} +Puts some text as \cmd{ormc} in braces in constraint color. +\end{command} + +\begin{codeexample}[] +\ormind{1}A {\ormtext Person} is not \ormbraces{0,1},~ +{\ormc Male} {\ormbf or} {\ormtext Female}, \ormup{up}~ +{\ormbf or} \ormleft{left} but \ormsub{queer}multi\ormsup{gender}! +\end{codeexample} + + +\section{Settings and Utilities} +\label{sec:generalstyles} + +\begin{stylekey}{orm} + This style sets the font and line width and the default node distance +\end{stylekey} + +\begin{stylekey}{orm-spacious} + If you prefer to have entities and labels typeset as circles, you can use \texttt{orm-spacious} instead of \texttt{orm}. +\begin{codeexample}[width=3cm] +\begin{tikzpicture}[orm-spacious] + \node[entity] (P) at (0,0) {Person}; + \node[value] (N) at (1.5,0) {Name}; +\end{tikzpicture} +\end{codeexample} +\end{stylekey} + +\begin{stylekey}{every orm line} + This style is envoked by all styles of this package that draw lines. By default it sets the line width to 0.3mm. +\end{stylekey} + +% \begin{stylekey}{every orm object} +% \end{stylekey} +% For this purpose (and for subtype arrows) this package defines the arrow tip \arrowtip{orm arrow}. +% TODO: document arrow tip \arrowtip{orm arrow} +% TODO: replace search path with |/orm/| instad of |/tikz/|. + + +\section*{Changes} + +\begin{description} + \item[\ormVersion, \ormDate] + Unstable developer version (at Github). + \item[0.1.4, January 15, 2016] + Power types, sequence types, \texttt{orm-spacious} added. + \item[0.1, January 25, 2010] + First release (at CTAN). +\end{description} + +\ifappendix + \bibliographystyle{alpha} + \addcontentsline{toc}{section}{References and Index} + \bibliography{tkz-orm} + \printindex +\fi + +\end{document} |