Skip to main content

Installing Ampersand

Ampersand is great for rapid prototyping. We advise you to use Ampersand on the web because it works without installing anything. But sometimes you want to run your prototypes on your own computer(s). For different purposes there are different ways of doing that. This chapter shows you how.

How to edit Ampersand scripts

You can use any text editor to create Ampersand scripts. However, for those that use the Visual Studio Code (vscode) editor, there is language support. Search for the vscode extension "Ampersand language support" and install it, and then choose the coloring theme called "Ampersand".

How to use Ampersand on your own laptop

Using Ampersand offline does not require you to install Ampersand. Ampersand runs in Docker so you can use it independently and on almost any platform. Here is an explanation of how to do this (don't mind the title of that page). It can be summarized as follows:

  1. Make sure Docker runs on your laptop or install it if it doesn't.
  2. Copy the files Dockerfile and docker-compose.yml and adapt them for your own Ampersand prototype. Read this if you don't know where to find them.
  3. Run your .adl-file on the Docker platform.

How to compile Ampersand programs manually

To run an Ampersand program, DIY-engineers will need a webserver that can run javascript, PHP7, the PHP composer, and a (My)SQL or MariaDB database server. For generating functional specifications, you might use LaTeX, Markdown, Word .docx and other formats. This chapter gives an overview of the Ampersand production line for whoever needs to circumvent the automated process.

How to install your own copy of RAP4 on a server of your own choosing

RAP4 is an Ampersand repository, in which multiple users can store and use their Ampersand scripts. Consult the tools we use at Ampersand. This is work in progress.

How to change Ampersand itself

If you want to change the Ampersand compiler for your own purposes, you need access to the source files, and a Haskell development environment. This section still has to be written. It will describe the software process for developing Ampersand itself.

The remainder of this chapter explains in detail all the things you need to get you up and running with Ampersand. The instructions presume that you are familiar with your own computer(s).

Installing the Ampersand compiler manually

  1. All graphical output is created using GraphViz. You need to install it.
info

Make sure dot and neato are in your path (set the $PATH environment variable if necessary).

  1. There are several formats that you can generate a functional specification document in. Currently, the best results can be obtained in docx or LaTeX (PDF). Depending on your taste, you need appropriate software:
    1. For docx, you could of course use Microsoft Word, but there are other options as well.
    2. If you want to generate PDF files, using LaTeX, you need a LaTeX compiler. On Windows, we recommend MiKTeX. On Linux and MacOS, we recommend texlive.

Ampersand models are written as source code files. Hence, you need a text editor in which you can do so. We recomend Visual Studio Code, which has a nice extention for Ampersand scripts. You could however use any text editor that you are familiar with, as long as you make sure it saves files as UTF8 format.

Installing an Ampersand compiler

The following instructions presume that you are familiar with the basics of your own computer.

The easy way: Use a prebuilt executable file

The easiest way is by use of available executables. We release frequently. Have a look at our latest release. For Windows users, there is a file called ampersand.exe in the release. Put it on your disk on a location of your choice, for example /Ampersand/bin/. Make sure your $PATH(or: PATH) environment variable contains this location, so the command "ampersand" is known on the command line. That's all. Note that double-clickingampersand.exewill not work, because it is a command line tool.

Here is a way to test whether or not you have succeeded: open a command line tool (e.g. CMD on Windows), and type ampersand -v. If all is well, the version number of the Ampersand tool is output.

Now you can compile and check your Ampersand scripts. However, you are likely to want to do more with such scripts. Currently it is possible to generate functional specifications and/or functional prototypes from such scrips. You will need to install some additional software in order to do that.

Additional software for generating functional SPECIFICATIONS:

If you want to generate functional specifications from ampersand scripts with pictures, you need the following additional software:

  1. All graphical output is created using GraphViz. You need to install it.
caution

Make sure dot and neato are in your path (set the $PATH environment variable if necessary).

If you want to generate functional specifications from ampersand scripts in LaTeX, you need the following additional software (if you don't, don't bother installing them):

  1. On Windows, we recommend MiKTeX.
  2. On Linux and MacOS, we recommend texlive.

Additional software for generating functional PROTOTYPES

If you want to generate functional prototypes from ampersand scripts, you need the following additional software (if you don't, don't bother installing them):

  1. In order to run the generated prototype, you need Apache (or another web server) with SQL and PHP v 7.1 or higher. In Windows, a practical way is to install XAMPP

    • You must create an account in SQL for

      localhost

      , that has a user called

      ampersand

      with a password

      ampersand

      , with rights to create/read/update/delete databases as well as their contents.

    • The webserver must run on localhost . By default you will use port 80, but you could change that if required. See the documentation of you webserver.

  2. You will also need to install Composer, because at runtime, the prototype has dependencies of libraries . Composer will take care of that.

The less easy way: Installing from Source

If there is no executable for your operating system, or if you prefer to build an Ampersand compiler yourself, follow these steps:

  1. Install stack, the haskell tool stack. instructions are here

  2. use git to clone the latest version of Ampersand. The code can be found at github. (the main branch is our stable branch)

  3. Open a command line terminal, and go to the directory that contains the file named ampersand.cabal

  4. Then, close your command line terminal and reopen another one (this helps to reload the environment variables that the stack installation may have added or modified),

  5. Let stack install everything you need to compile (see the Notes below!) by executing:

    $ stack setup

  6. Build the Ampersand.exe file (see the Notes below!) by executing: $ stack install

This will build an Ampersand-compiler named "ampersand.exe" and install it into your path.

Testing your installation

  • Open a command prompt.

  • Type "Ampersand --version". The expected behavior is that Ampersand replies with the version of Ampersand. It will look something like:

    ```
    C:> ampersand.exe --version
    Ampersand v3.1.0[master:2fa348f*], build time: 08-Sep-15 14:04:58 West-Europa (zomertijd)
    ```
    tip

    The version number is important to specify, whenever you have a question of like to report an issue. It really helps us when you add the version number, including everything between the brackets when you contact us.

Test to see if you can build your first prototype

Ampersand allows you to generate a working prototype of your ampersand model. An Ampersand prototype is a website that requires a webserver to run on and a (My)SQL database server. This chapter describes the prerequisites for getting such prototypes up, and running.

First, you should get a working script. Let's assume it is called myModel.adl and it contains valid content such as is shown here below:

CONTEXT HelloWorld IN ENGLISH
PURPOSE CONTEXT HelloWorld
{+This script allows you to check whether or not you can actually use Ampersand.+}

REPRESENT MyName TYPE ALPHANUMERIC
sessionMyName :: SESSION * MyName [UNI]
MEANING "My name can be known in the current session."

ROLE User MAINTAINS ClickRegistration
RULE ClickRegistration : "_SESSION LABEL "Please click on 'Registration' to specify your name": "_SESSION"[SESSION] |- sessionMyName;sessionMyName~
VIOLATION (TXT "You can find the 'Registration' item in the navigation bar (top of the screen).")

INTERFACE Registration: "_SESSION"[SESSION] cRud BOX<TABLE>
[ "My name is" : sessionMyName cRUd
]

sayHelloReq :: SESSION * SESSION [PROP]
ROLE ExecEngine MAINTAINS SayHello
RULE SayHello: "_SESSION LABEL "Say hello when name is specified": "_SESSION"[SESSION] /\ sessionMyName;sessionMyName~ |- sayHelloReq
VIOLATION (TXT "{EX} SetNavToOnCommit;/Hello_44__32_World"
,TXT "{EX} InsPair;sayHelloReq;SESSION;", SRC I, TXT ";SESSION;", TGT I
)

INTERFACE "Hello, World": "_SESSION"[SESSION] cRud BOX<TABLE>
[ "Hello, world. My name is" : sessionMyName cRud
]

ENDCONTEXT

Don't worry if you do not understand what everything in this script means. That isn't important for now.

If you do not have such a script, you can copy the above text, paste it in a text editor and save it. Different novice users have shown that this may present some problems. One is that in some browsers (e.g. IE), copying the text will include the line numbers. If you see your file has line numbers embedded in the text, you should get rid of them before saving it. Another one is that it may contain characters that are not displayable in the editor - some editors will turn such characters into printable ones, e.g. a question mark. If that's the case with you, you should also get rid of them. You should end up with text in a file that is as is shown above.

Then, you can generate the prototype website for the script in file myModel.adl by typing the command:

 ampersand --proto myModel.adl

This creates a directory myModel.proto (in the current directory), that contains the prototype website. Obviously, you will need a web server and a database server to run the prototype.

Usually, you would have some demands regarding particulars of the generation. For example, you may want to generate the website in a specific directory, specify a particular CSS file for this website, etc. For the complete syntax of the Ampersand executable, see the chapter about the command line interface****

Notes:\ 1. Do not use Hackage to get ampersand. It does not contain all non-haskell files. (See issue #213)\ 2. stack memory usage may require other applications to be terminated (e.g. on 8GB Windows systems). If stack terminates prematurely, re-invoking the command will pick-up where it stopped.\ 3. stack may terminate on various errors (See this issue), e.g. that it doesn't have permission to access or rename files. Again, if stack terminates prematurely, re-invoking the command will pick-up where it stopped. Users have mentioned having to restart stack several times before it would finally complete building Ampersand.exe.