再说一次,当前的frameloader确实复杂呀,代码大概的了解了一片,从load一直到构建dom tree,从网络获得的数据html构建dom tree部分没有仔细看,以后回来看,接下来应该是看render tree生成,因为其主页上有很详细的介绍,所以看起来会比较舒服一些。webkit的网络数据获取部分取决于具体平台的实现,相当的独立,这种方式在跨平台程序编写里面应该是十分常见的。以下是webkit主页上的codepath介绍,也就是我今天所了解的内容:
Tokenizing HTML/XML document
From the moment, piece by piece of an HTML document is obtained from the network, this is what happens:
[HTML,XML]Tokenizer::write(const SegmentedString& str, bool appendData)
FrameLoader::write(const char* data, int len, bool flush)
FrameLoader::addData(const char* bytes, int length)
FrameLoaderClientQt::committedLoad(DocumentLoader* loader, const char* data, int length)
FrameLoader::committedLoad(DocumentLoader* loader, const char* data, int length)
DocumentLoader::commitLoad(const char* data, int length)
DocumentLoader::receivedData(const char* data, int length)
FrameLoader::receivedData(const char* data, int length)
MainResourceLoader::addData(const char* data, int length, bool allAtOnce)
ResourceLoader::didReceivedData(const char* data, int length, long long received, bool allAtOnce)
ResourceLoader::didReceiveData(ResourceHandle*, const char* data, int len, long long received)
Get data from network
Shown here for the Qt port, might vary a bit for other ports.
QNetworkReplyHandler::start()
QNetworkReplyHandler(ResourceHandle* handle, LoadMode loadMode)
ResourceHandle::start(Frame* frame)
ResourceHandle::create(const ResourceRequest& request, ResourceHandleClient* client,
Frame* frame, bool defersLoading, bool shouldContentSniff, bool mightDownloadFromHandle)
MainResourceLoader::loadNow(ResourceRequest& r)
MainResourceLoader::load(const ResourceRequest& r, const SubstituteData& substituteData)
DocumentLoader::startLoadingMainResource(unsigned long identifier)
FrameLoader::continueLoadAfterWillSubmitForm(PolicyAction)
FrameLoader::continueLoadAfterNavigationPolicy(const ResourceRequest&, PassRefPtr<FormState> formState, bool shouldContinue)
FrameLoader::callContinueLoadAfterNavigationPolicy(void* argument,
const ResourceRequest& request, PassRefPtr<FormState> formState, bool shouldContinue)
PolicyCheck::call(bool shouldContinue)
FrameLoader::continueAfterNavigationPolicy(PolicyAction policy)
FrameLoaderClientQt::callPolicyFunction(FramePolicyFunction function, PolicyAction action)
FrameLoaderClientQt::dispatchDecidePolicyForNavigationAction(FramePolicyFunction function,
const WebCore::NavigationAction& action, const WebCore::ResourceRequest& request,
PassRefPtr<WebCore::FormState>)
FrameLoader::checkNavigationPolicy(const ResourceRequest& request, DocumentLoader* loader,
PassRefPtr<FormState> formState, NavigationPolicyDecisionFunction function, void* argument)
FrameLoader::loadWithDocumentLoader(DocumentLoader* loader, FrameLoadType type, PassRefPtr<FormState> prpFormState)
FrameLoader::load(DocumentLoader* newDocumentLoader)
FrameLoader::load(const ResourceRequest& request, const String& frameName, bool lockHistory)
FrameLoader::load(const ResourceRequest& request, bool lockHistory)
QWebFrame::load(const QNetworkRequest &req, QNetworkAccessManager::Operation operation,
const QByteArray &body)
QWebFrame::load(const QUrl &url)
另外一个很好的参考:http://webkit.org/blog/1188/how-webkit-loads-a-web-page/