CSC/ECE 517 Fall 2013/oss M803 ana: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
Line 58: Line 58:
==Project Description==
==Project Description==
• The project requirement stated us to develop a Binding for a CanvasRenderingContext2D.webidl and the HTMLCanvasElement.webidl  interface.
• The project requirement stated us to develop a Binding for a CanvasRenderingContext2D.webidl and the HTMLCanvasElement.webidl  interface.
• We had to write a canvasrenderingcontext2d.rs file, which is written in the Rust programming language. We needed a struct containing a Reflector at minimum, as well as implementation of the Reflectable and BindingObject traits.
• We had to write a canvasrenderingcontext2d.rs file, which is written in the Rust programming language. We needed a struct containing a Reflector at minimum, as well as implementation of the Reflectable and BindingObject traits.
• We also had to write an htmlcanvaselement.rs file which is also written in the Rust Language.
• We also had to write an htmlcanvaselement.rs file which is also written in the Rust Language.
• The above files get compiled to generate Binding Files named CanvasRenderingContext2DBinding.rs and HTMLCanvasELementBinding.rs
• The above files get compiled to generate Binding Files named CanvasRenderingContext2DBinding.rs and HTMLCanvasELementBinding.rs
• We then added <canvas> element support to the HTML parser using the hubbub_html_parser.rs file.
• We then added <canvas> element support to the HTML parser using the hubbub_html_parser.rs file.
• Then we successfully built and compiled our project on the Servo Engine.
• Then we successfully built and compiled our project on the Servo Engine.
• This was Part one of our Mozilla project.
• This was Part one of our Mozilla project.
• Our Final Project of OOLS will consist of Part two of the Mozilla project which includes implementing Canvas API for Mozilla using the CanvasRenderingContext2D and the HTMLCanvasElement interfaces.
• Our Final Project of OOLS will consist of Part two of the Mozilla project which includes implementing Canvas API for Mozilla using the CanvasRenderingContext2D and the HTMLCanvasElement interfaces.

Revision as of 00:54, 31 October 2013

CANVAS 2D with RUST and MOZILLA SERVO

This wiki deals with our implementation of a CANVAS for the Mozilla Servo Project using the Rust Programming Language.

Introduction

Mozilla are working on a project called Servo which is being implemented in the Rust programming language.

Design

Rust

Rust is a curly-brace, block-structured expression language.

It visually resembles the C language family, but differs significantly in syntactic and semantic details.

Its design is oriented toward concerns of “programming in the large”, that is, of creating and maintaining boundaries – both abstract and operational – that preserve large-system integrity, availability and concurrency.

It supports a mixture of imperative procedural, concurrent actor, object-oriented and pure functional styles. Rust also supports generic programming and metaprogramming, in both static and dynamic styles.

Example:

                 fn main() {
  			 println("hello, world");
                       }

Servo

Servo is an experimental web browser layout engine being developed by Mozilla.

The prototype seeks to create a highly parallel environment, in which many components (such as rendering, layout, HTML parsing, image decoding, etc.) are handled by fine-grained, isolated tasks.

The project has a symbiotic relationship with the Rust programming language, in which it is being developed.

Servo is explicitly not aiming to create a full Web browser (except for demonstration and experimentation purposes). Rather it is focused on creating a solid, embeddable engine. Although Servo is a research project, it is designed to be "productizable"—the code that we write should be of high enough quality that it could eventually be shipped to users.

Design Diagrams

Task Supervision Diagram

Task Communication Diagram

Each box represents a Rust task.

Blue boxes represent the primary tasks in the browser pipeline.

Gray boxes represent tasks auxiliary to the browser pipeline.

White boxes represent worker tasks. Each such box represents several tasks, the precise number of which will vary with the workload.

Dashed lines indicate supervisor relationships.

Solid lines indicate communication channels.

Project Description

• The project requirement stated us to develop a Binding for a CanvasRenderingContext2D.webidl and the HTMLCanvasElement.webidl interface.

• We had to write a canvasrenderingcontext2d.rs file, which is written in the Rust programming language. We needed a struct containing a Reflector at minimum, as well as implementation of the Reflectable and BindingObject traits.

• We also had to write an htmlcanvaselement.rs file which is also written in the Rust Language.

• The above files get compiled to generate Binding Files named CanvasRenderingContext2DBinding.rs and HTMLCanvasELementBinding.rs

• We then added <canvas> element support to the HTML parser using the hubbub_html_parser.rs file.

• Then we successfully built and compiled our project on the Servo Engine.

• This was Part one of our Mozilla project.

• Our Final Project of OOLS will consist of Part two of the Mozilla project which includes implementing Canvas API for Mozilla using the CanvasRenderingContext2D and the HTMLCanvasElement interfaces.