Difference between revisions of "Yhc web service"

From HaskellWiki
Jump to navigation Jump to search
m (Added note about user account)
m (markup)
Line 97: Line 97:
 
Start the service by running <code>ywsd</code>. This program acts as a compile job scheduler polling the database for updates every second, and running Yhc if there is anything new to compile.
 
Start the service by running <code>ywsd</code>. This program acts as a compile job scheduler polling the database for updates every second, and running Yhc if there is anything new to compile.
   
As the database is accessed every second, logs of the database itself and also http access logs grow fast. It makes sense to cut those logs frequently as they are of little value: use an utility provided with your distro, or write your own, similar to <code>logcut</code> shell script found at <code>src/yhcws></code> relatively to the root of Yhc source tree.
+
As the database is accessed every second, logs of the database itself and also http access logs grow fast. It makes sense to cut those logs frequently as they are of little value: use an utility provided with your distro, or write your own, similar to <code>logcut</code> shell script found at <code>src/yhcws</code> relatively to the root of Yhc source tree.
   
 
It however saves you a lot of time just to use the online version of the Service.
 
It however saves you a lot of time just to use the online version of the Service.

Revision as of 02:10, 11 March 2008

Part of Yhc

(Download)

Yhc Web Service

Purpose

Yhc Web Service is a web-based tool to use Yhc's Javascript back end without installation of any additional software on user's computer. Only a standards-compilant web browser is needed. The service allows to submit some Haskell source code for compilation into Javascript, and generates a xhtml1 page which is temporarily stored. A link is provided to load the generated page into user's web browser. In general, Yhc web service's user interface is similar to one of a pastebin.

Hosting

The service is currently available at the following URL: http://www.golubovsky.org:5984/static/yhcws/MainGUI.html

Technical overview

Yhc Web Service is built around CouchDB which itself is written in Erlang. CouchDB uses JSON as encoding for queries and responses. A special daemon regularly polls the database for updates. If a new Haskell source is submitted for compilation as a new document, the daemon extracts it from the database, and invokes Yhc to transform it along with modules imported into linked Yhc Core. Next, Javascript Backend is invoked, to convert the linked Core into Javascript. Finally, using the XHTML template (user-supplied or standard), a Web page is built. Output from the compiler and other programs called during compilation is also collected. Results of compilation are stored in the database as attachments to the document which contains the submitted Haskell source.

The service runs a slightly modified version of SearchPath to chase imports across the Internet. This removes the limitation on the number of modules compiled simultaneously, while only one Haskell module may be submitted via user interface.

The Service runs under Linux inside a 32-bit virtual machine which is an instance of KVM administered by KVMADM on a 64-bit Linux host. Since CouchDB currently lacks any access control to its databases, Squid is used as reverse proxy with proper access control settings.

Users guide

User interface

Initially, the Service displays the following form in the web browser window. Each row of the form corresponds to a single pastebin entry. The links column contains icons that correspond to possible user actions that can be performed over each document. The author column identifies the submitter (author name is arbitrary: the Service does not authrnticate users). The time column shows the submission time (UTC). The title column shows the title that author gave to the entry. The status column shows whether the code submitted with the entry is being comipled, or that compilation was successful, or it failed.

document browser

The view Haskell source Hssrc.png icon is always present regardless of current status of an entry. Clicking on it shows the source code submitted with the entry. Clicking on the Close button restores the document browser.

source viewer

The view compilation log Log.png and view error log Error.png icons when clicked, show either the compilation log, or error log depending on success or failure of compilation. These icons appear only after compilation is complete (successful or failed). Similarly, the Close button restores the document browser.

log viewer

Clicking on the edit source code Edit.png icon opens the new entry form with the source of the corresponding entry. Thus, source code may be edited and resubmitted. The service does not keep track of source code revisions: each time source is edited, it is submitted as a new entry. This icon is always present with each entry.

new entry form

The view compiled page Webpage.png icon opens a new browser window where the compiled web page is loaded. This icon appears only after successful compilation.

On the document browser form, buttons << Prev and Next >> "turn pages" of the pastebin. Upon startup, the document browser shows the most recent entries. The New Entry button invokes the new entry form with all fields empty, so new code may be entered from scratch.

On the new entry form, the Clear All button clears all entry fields, Browse switches back to the document browser (showing the most recent entries) regardless of whether the new code was submitted or not. The Submit button sends the user input for compilation. After pressing the Submit button, the new entry form remains active, and submission results appear in the Source field. If submission was successful (that is, successfully stored in the database), new document's DocId appears in the Source field. Otherwise (e. g. HTTP error) error message appears in the Source field. Compilation results never appear in the new entry form.

Yhc Web Service does not limit the size of Haskell code entered.

Typical usage scenario

  1. In the document browser, press the New Entry button. The new entry form appears.
  2. Type or paste into the Source field whatever is desired to be submitted. Also fill in the Author and Title form. If empty, these fields will be initialized with default values at the moment of submission.
  3. Press the Submit button. Make sure that new DocId appears in the Source field.
  4. Press the Browse button to switch back to the document browser. Locate the entry just submitted by author and title. Note the compilation status.
  5. Press the << Prev button several times with approximately 5 second interval and wait until compilation status changes to 'Success' or 'Error'.
  6. If the status becomes 'Error', observe the error log by clicking on Error.png icon, then click on Edit.png icon to correct the source code in error.
  7. If the status becomes 'Success', click on Webpage.png icon to load the compiled page.

Build it yourself

There is no unified way to build the instance of the Service as it depends largely upon other software distributions. The version presently online was built based on Arch Linux Duke, however Arch Linux users are advised to see this message.

In order to build the Service, make sure CouchDB is built and running; follow instructions.

Check out the Yhc darcs repo:

darcs get http://darcs.haskell.org/yhc

Change to the root of Yhc source tree. Build Yhc:

scons core=1 build && scons prefix=/where/you/install install

Stay at the root of Yhc source tree. Build the Javascript backend:

(cd src/translator/js; make all cdbtools install)

At this point CouchDB must be running. It is assumed that everything runs at the same host, that is, the database is accessed at http://localhost:5984.

Stay at the root of Yhc source tree. Build the Service:

(cd src/yhcws; make all init-db install)

At the moment of making init-db, you will be asked to remove and re-create several databases in the running CouchDB instance. Make sure you are not going to lose any valuable data.

Everything will be installed relatively to Yhc binary location. That is, if yhc is located as /usr/bin/yhc, all binaries associated with the Service will be installed in the same directory. Make sure that this directory is on your path.

Create a user account under which the compiler will run. All that such a user needs is just a home directory.

Start the service by running ywsd. This program acts as a compile job scheduler polling the database for updates every second, and running Yhc if there is anything new to compile.

As the database is accessed every second, logs of the database itself and also http access logs grow fast. It makes sense to cut those logs frequently as they are of little value: use an utility provided with your distro, or write your own, similar to logcut shell script found at src/yhcws relatively to the root of Yhc source tree.

It however saves you a lot of time just to use the online version of the Service.