I decided to put some effort in building a web browser (from scratch), any recommendations on how to get started! not only coding, also design patterns, and best practices advices are highly appreciated.
PS: I'm using C# .NET
|
|
|||||||||||||||||||
|
closed as not a real question by casperOne♦ Mar 21 at 12:15
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Well break it down into pieces. What is a Web browser? What does it do? It:
And that's basically a Web browser in a nutshell. Now some of these tasks are incredibly complex. Even the easy sounding ones can be hard. Take fetching external content. You need to deal with use cases like:
The reason I and others are colletively raising our eyebrows is the rendering engine is hard (and, as someone noted, man years have gone into their development). The major rendering engines around are:
The top three have to be considered the major rendering engines used today. Javascript engines are also hard. There are several of these that tend to be tied to the particular rendering engine:
And of course there's all the user interface stuff: navigation between pages, page history, clearing temporary files, typing in a URL, autocompleting URLs and so on. That is a lot of work. |
|||||||||
|
|
It's an insanely ambitious project (especially for a single developer) but something I'd love to do someday - you could learn so much from it. I don't know a lot about how the protocols work (something that you definitely need to research) or much about what goes on in a browser but a great place to start would be the source of the open-source browsers, primarily Chrome and Firefox. Chrome is an especially good project to look at as they only do what I'd expect you to start with: the chrome and the backend of the browser. Forget creating a rendering engine at first - use Webkit or Gekko. |
||||
|
|
|
Sounds like a really interesting project, but it will require you to invest an enormous effort. It's no easy thing, but from an academic point of view, you could learn so much from it. Some resources that you could check:
But seeing it from a realistic point of view, the huge effort needed to code it from scratch reminded me this comic: Good Luck :-) |
||||
|
You could start with well-formed and valid XHTML, which should be easier than the tag soup your browser will encounter in real "life". Then you must find a way to bend the real HTML from the web to your needs. But don't kid yourself: A browser isn't a small project. |
||||
|
|
|
You mean as in writing your own rendering engine? I can only say good luck. Many man years have gone into the current generation of the various browsers, If you want to do better than either of them you will need some serious skills. If you have to ask where to start, you probably have more than a few years of study to go before it would make any sense to attempt such a task. That said, here are some (obvious) pointers:
edit below here I didn't mean for it to be either motivating or demotivating, just an attempt to show you that a browser is a really big project and that really big projects require a whole lot of thought. Blunt honesty sprinkled with humour. I've been programming for over two thirds of my life and I like to think that I am a pretty decent programmer, but it would be foolish of me to think that I'd stand half a chance at writing a decent web browser from scratch. Ofcourse, if this is what you want to do, don't let my comment stand in your way. You can probably do better than Internet Explorer. |
|||||||||||
|
|
Udacity now has a course called "Building a Web Browser" - http://www.udacity.com/overview/Course/cs262/CourseRev/apr2012 |
|||
|
|
|
As everyone else has already said, a web browser is a huge project. You've got to worry about tcp/ip&sockets, rendering html, using css, creating a DOM model, executing javascript, dealing with malformed markup and code, and handling all types of files before you can even think about all the things people expect from a browser (ie bookmarks, history, private browsing, security, etc.) It's a huge project. That being said, it can be done. My suggestion would be to go look at the source of Firefox. I know that you said you want to build a browser from scratch, but it would be very helpful to learn from an open-source project, first. I would download the Firefox source, and slowly strip it down. In other words, I would take the source and remove all bookmarking functionality. Then, I'd remove the ability to handle addons. Then, I'd delete all code regarding saving files. I would continue this process until I got a very basic web browser. I'd look over that code. Then, I'd start building my own. I'd take the knowledge I'd gained from taking apart Firefox, and I'd put it into building a new browser. A whole lot of luck to you! |
|||
|
|
|
...then start worrying about security (non-functional and cross cutting concerns should be generally considered up front though :) ) |
|||
|
|
|
very ambitious project but one developer can't do this alone you need a team(project manager , testers ...) and maybe you should review your choise of language c# works only on windows(i know mono on linux but it is not the same) anyway i wish you good luck and i ll be happy to use your browser :D |
|||
|
|
|
You really have a lot of free time in your hand, haven't you? AFAIK, most browsers were written in C++, not all users have the .NET framework installed on their computers and if they do it might not be the version you need. This could take you years but anyway, there are many open source browsers out there, FireFox, Google Chrome .. etc, you could start by having a look on the code, good luck with that :) |
|||
|
|
|
I think this post will give you better image about the web browsers, I hope it is not too late and you didn't build your browser yet :) |
|||
|
|
|
Most modern web browsers are giant beasts, and probably fairly poorly designed because they (and the web itself) evolved in a rather haphazard way. You need to start by first making the goals of your project (and what you hope to achieve) very explicit. Is this something you're just doing for fun, or do you expect other people to use your browser? If you expect others to use it, what will the incentive for them be? It is unrealistic to expect that you will develop a new browser from scratch that everyone will be able to use as a replacement for Chrome, Safari, Firefox, IE, Opera, etc. All of those projects have a 10-15 year head start on you, and by the time you've caught up to them, they will be another 10-15 years ahead of you. Plus they have a lot more man power behind them, and so if you want your project to be successful, you will need that man power at some point. This is the reason that Apple and Google, big companies with lots of resources, did not start from scratch. Not even Microsoft started from scratch. The original IE was based on Mosaic. The only significant browsers still around today that were started from scratch are Opera, Konqueror and Lynx, which unfortunately all have minuscule market share. Let's forget about Lynx for the moment, since it's a text-only browser and presumably the only reason it's still around is because it serves that specific niche. Opera is arguably one of the best browsers ever made, and yet it's never had a great market share, so remember that success and innovation are not the same thing. KHTML is the engine behind Konqueror, which never itself became very successful, but is the basis of WebKit that both Apple and Google use. I think one could definitely argue that if KHTML had never been made, neither Safari or Chrome would exist. Interestingly enough, both KHTML and Opera were largely produced by Norwegian programmers working in the same building in Oslo. You need to look at building a web browser like building an operating system, because that's essentially what a browser is -- it's an operating system for running web apps. And like an operating system, a web browser is a very complex piece of software with many components. Of course, people have been successful at creating new operating systems from scratch. Linus Torvalds comes to mind. He made Linux, one of the most successful operating systems ever. Of course, you face an additional challenge, which makes building a new successful browser harder than building a new successful OS. Browsers are expected to flawlessly run all the legacy code floating around on the web. Now suppose that Linus Torvalds had been told that his new OS wouldn't matter unless it was perfectly backwards compatible with UNIX or some existing OS. I doubt he would have bothered, and Linux probably wouldn't exist today. Realistically, of course, the only reason Linux became popular was because it was designed well and the GNU project was able to make tools for porting huge amounts of existing code to Linux. Without GNU's ideological support for Linux, it never would have had a chance. So assuming you really are ambitious (or foolhardy) enough to try to make a new successful browser, the thing you should be focusing on is architecture and design. There is no practical reason to build a new browser from scratch unless you are sure you can improve upon the design of existing browsers in some way. That means you need to familiarize yourself enough with the code of WebKit and Gecko enough to understand the design decisions they made, but you shouldn't be attempting to copy their design because otherwise you might as well just use their code. My personal thoughts (without having done enough research) is that today's browsers are not modular enough. If I were going to make a new browser, I would find a way to make it easy to swap things in and out (like replace one JavaScript engine with another), and give the user a lot more control than they currently have with existing browsers. Modern browsers and web designers have taken almost all control away from the user. Why can't I, the user, tell the web browser how I want it to render content being displayed on my machine? The original HTML only gave guidelines for how to structure content, and over time, newer standards have become more and more dogmatic, to the point where the user is now at the total mercy of the web designer. The appeal of Linux was that it gave back control to the user, and that's why so many geeks supported it and made it into a successful OS. The other thing I would spend time researching, if I were you, is operating system design principles. Designing a good browser, should at least in theory, require the same principles as designing a good OS -- especially in regards to concurrent processes, security models, etc. Finally, after having done lots and lots of research, this is where you should start coding I think:
|
|||
|
|
|
I may be the minority here, but I don't think a C# browser is such a large Project. Of course it is large, but not THAT large. If you imagine that you will be using all the infrastructure provided by the .NET Framework, I imagine you can start playing with your own browser in matter of weeks, giving that you will be working on it in all your spare time (commonly everyday at night and weekends). You should start with your rendering engine. You can use a local XHTML file for tests and ignore for now everything about network connections, sockets, protocols, etc. You can read the file (System.IO) and use the XmlDocument (System.Xml) to parse/validate the XHTML file. Then you must construct your rendering tree and display it on the form (you can use either Windows Forms or XAML/WPF). This is basically interpreting the XML and positioning controls (labels, textboxes, etc) in the form. You can ignore CSS at first, but later you will have to implement it to define fonts, colors, backgrounds, etc. You can also ignore everything related to content types at first. I'm assuming that producing a major-performance-hardcore-bug-free-perfect browser is not your goal here. I imagine you can do all this that was said here in just one focused weekend. Then you can start to play with CSS / content types / network connections (System.Net), sockets and everything else. Don't be afraid. This will be a nice project even if you never completely finishes it. Most browsers are not finished anyway (just see the open tickets for the Chromium Project). At least you will be able to address the performance of various components like the XmlDocument against the hardcore C/C++ ones used in most browsers today. This is all just my opinion though. Not looking for discussions here. Regards. |
|||
|
|
