CSC/ECE 517 Spring 2016/Implement private browsing

From Expertiza_Wiki
Revision as of 01:35, 2 April 2016 by Kpjani (talk | contribs)
Jump to navigation Jump to search

Implement Private Browsing

Servo<ref>https://github.com/servo/servo</ref> is a prototype web browser engine written in the RUST language. Servo currently does not support the mode where the cookies, login, history and downloads are forgotten after the session ends. The goal of this project is to implement incognito/private browsing feature in Servo.


Introduction

Servo is an experimental web browser layout engine being developed by Mozilla Research. Servo is written in the Rust<ref> https://doc.rust-lang.org/ </ref> language, which is also being developed by Mozilla Research. The language is being refined through feedback from Servo development, and writing the Rust compiler itself. Rust is a systems programming language similar to C and C++ in syntax (but semantically very different). The emphasis is on speed, safety, concurrency and control of memory layout.

Motivation

When a user browses the web, Firefox remembers lots of information for the user - like the sites visited. There may be times, however, when the users don't want people with access to their computer to see this information, such as when shopping for a present. Private Browsing allows the users to browse the Internet without saving any information about which sites and pages they have visited. Private Browsing also includes Tracking Protection in Private Browsing, which prevents companies from tracking the browsing history across multiple sites.

Installing Servo

Prerequisites on Debian based linuxes

    sudo apt-get install curl freeglut3-dev autoconf \
    libfreetype6-dev libgl1-mesa-dri libglib2.0-dev xorg-dev \
    gperf g++ build-essential cmake virtualenv python-pip \
    libssl-dev libbz2-dev libosmesa6-dev libxmu6 libxmu-dev \
    libglu1-mesa-dev libgles2-mesa-dev libegl1-mesa-dev

Building Servo

git clone https://github.com/servo/servo
cd servo
./mach build --dev

Running Servo

./mach run [url] --devtools <port number>

Implementation

The following steps were followed to meet the requirements as described in the link here:[1].

Step 1

As required we have added the is_private member to the struct IFrameLoadInfo to check if it's a private iframe or not


We are working on implementing the function to set this member based on the mozprivatebrowsing attribute. We are in touch with Josh regarding the same as currently there is no mozprivatebrowsing attribute in the servo project and hence we are trying to understand how it can be implemented. We have written a basic stub for the same which is as below.

Step 2

We have created an enum that holds an isPrivate message containing pipelineId and sender as attributes

The below member has been added to the pipeline struct to check if it's private

Step 2

We are working on implementing the below function to check if the pipeline is private


Design Pattern

The requirements so far did not require us to implement any design pattern.

References

<references/>