зеркало из https://github.com/mozilla/pjs.git
Initial revision. Not currently in the build.
This commit is contained in:
Родитель
4ade3b797e
Коммит
40f906ee1e
|
@ -0,0 +1,52 @@
|
||||||
|
#!gmake
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the Netscape Public License
|
||||||
|
# Version 1.0 (the "NPL"); you may not use this file except in
|
||||||
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
||||||
|
# http://www.mozilla.org/NPL/
|
||||||
|
#
|
||||||
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
||||||
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
||||||
|
# for the specific language governing rights and limitations under the
|
||||||
|
# NPL.
|
||||||
|
#
|
||||||
|
# The Initial Developer of this code under the NPL is Netscape
|
||||||
|
# Communications Corporation. Portions created by Netscape are
|
||||||
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||||||
|
# Reserved.
|
||||||
|
|
||||||
|
|
||||||
|
DEPTH = ..\..\..
|
||||||
|
MODULE=rdfsink
|
||||||
|
|
||||||
|
MAKE_OBJ_TYPE=EXE
|
||||||
|
|
||||||
|
EXENAME=rdfsink
|
||||||
|
PDBFILE=rdfsink.pdb
|
||||||
|
MAPFILE=rdfsink.map
|
||||||
|
|
||||||
|
PROGRAM= .\$(OBJDIR)\$(EXENAME).exe
|
||||||
|
|
||||||
|
OBJS= .\$(OBJDIR)\rdfsink.obj
|
||||||
|
|
||||||
|
LINCS= -I$(PUBLIC)\rdf \
|
||||||
|
-I$(LIBNSPR) \
|
||||||
|
-I$(PUBLIC)\xpcom \
|
||||||
|
-I$(PUBLIC)\netlib \
|
||||||
|
-I$(PUBLIC)\raptor \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
LLIBS= \
|
||||||
|
$(DIST)\lib\rdf.lib \
|
||||||
|
$(DIST)\lib\xpcom32.lib \
|
||||||
|
$(DIST)\lib\raptorbase.lib \
|
||||||
|
$(DIST)\lib\netlib.lib \
|
||||||
|
$(DIST)\lib\libplc21.lib \
|
||||||
|
$(LIBNSPR)
|
||||||
|
|
||||||
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
|
install:: $(PROGRAM)
|
||||||
|
$(MAKE_INSTALL) $(PROGRAM) $(DIST)\bin
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,135 @@
|
||||||
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||||
|
*
|
||||||
|
* The contents of this file are subject to the Netscape Public License
|
||||||
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
||||||
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
||||||
|
* http://www.mozilla.org/NPL/
|
||||||
|
*
|
||||||
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
||||||
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
||||||
|
* for the specific language governing rights and limitations under the
|
||||||
|
* NPL.
|
||||||
|
*
|
||||||
|
* The Initial Developer of this code under the NPL is Netscape
|
||||||
|
* Communications Corporation. Portions created by Netscape are
|
||||||
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||||||
|
* Reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "nsIContent.h"
|
||||||
|
#include "nsIInputStream.h"
|
||||||
|
#include "nsINetService.h"
|
||||||
|
#include "nsINetService.h"
|
||||||
|
#include "nsIPostToServer.h"
|
||||||
|
#include "nsIRDFDataBase.h"
|
||||||
|
#include "nsIRDFDataSource.h"
|
||||||
|
#include "nsIRDFDocument.h"
|
||||||
|
#include "nsIRDFNode.h"
|
||||||
|
#include "nsIRDFResourceManager.h"
|
||||||
|
#include "nsIServiceManager.h"
|
||||||
|
#include "nsIStreamListener.h"
|
||||||
|
#include "nsIURL.h"
|
||||||
|
#include "nsParserCIID.h"
|
||||||
|
#include "nsRDFCID.h"
|
||||||
|
#include "nsRDFCID.h"
|
||||||
|
#include "nsRepository.h"
|
||||||
|
#include "plevent.h"
|
||||||
|
#include "plstr.h"
|
||||||
|
|
||||||
|
#define RDF_DB "rdf:bookmarks"
|
||||||
|
#define SUCCESS 0
|
||||||
|
#define FAILURE -1
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef XP_PC
|
||||||
|
#define NETLIB_DLL "netlib.dll"
|
||||||
|
#define PARSER_DLL "raptorhtmlpars.dll"
|
||||||
|
#define RDF_DLL "rdf.dll"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////
|
||||||
|
// CIDs
|
||||||
|
|
||||||
|
// netlib
|
||||||
|
static NS_DEFINE_CID(kNetServiceCID, NS_NETSERVICE_CID);
|
||||||
|
|
||||||
|
// rdf
|
||||||
|
static NS_DEFINE_CID(kRDFBookMarkDataSourceCID, NS_RDFBOOKMARKDATASOURCE_CID);
|
||||||
|
static NS_DEFINE_CID(kRDFHTMLDocumentCID, NS_RDFHTMLDOCUMENT_CID);
|
||||||
|
static NS_DEFINE_CID(kRDFMemoryDataSourceCID, NS_RDFMEMORYDATASOURCE_CID);
|
||||||
|
static NS_DEFINE_CID(kRDFRegistryCID, NS_RDFREGISTRY_CID);
|
||||||
|
static NS_DEFINE_CID(kRDFResourceManagerCID, NS_RDFRESOURCEMANAGER_CID);
|
||||||
|
static NS_DEFINE_CID(kRDFSimpleDataBaseCID, NS_RDFSIMPLEDATABASE_CID);
|
||||||
|
static NS_DEFINE_CID(kRDFStreamDataSourceCID, NS_RDFSTREAMDATASOURCE_CID);
|
||||||
|
static NS_DEFINE_CID(kRDFTreeDocumentCID, NS_RDFTREEDOCUMENT_CID);
|
||||||
|
|
||||||
|
// parser
|
||||||
|
static NS_DEFINE_CID(kParserCID, NS_PARSER_IID);
|
||||||
|
static NS_DEFINE_CID(kWellFormedDTDCID, NS_WELLFORMEDDTD_CID);
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////
|
||||||
|
// IIDs
|
||||||
|
|
||||||
|
//NS_DEFINE_IID(kIPostToServerIID, NS_IPOSTTOSERVER_IID);
|
||||||
|
NS_DEFINE_IID(kIRDFDataSourceIID, NS_IRDFDATASOURCE_IID);
|
||||||
|
NS_DEFINE_IID(kIRDFResourceManagerIID, NS_IRDFRESOURCEMANAGER_IID);
|
||||||
|
|
||||||
|
static nsresult
|
||||||
|
SetupRegistry(void)
|
||||||
|
{
|
||||||
|
nsRepository::RegisterFactory(kNetServiceCID, NETLIB_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
|
||||||
|
nsRepository::RegisterFactory(kRDFBookMarkDataSourceCID, RDF_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
nsRepository::RegisterFactory(kRDFHTMLDocumentCID, RDF_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
nsRepository::RegisterFactory(kRDFMemoryDataSourceCID, RDF_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
nsRepository::RegisterFactory(kRDFRegistryCID, RDF_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
nsRepository::RegisterFactory(kRDFResourceManagerCID, RDF_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
nsRepository::RegisterFactory(kRDFSimpleDataBaseCID, RDF_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
nsRepository::RegisterFactory(kRDFStreamDataSourceCID, RDF_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
nsRepository::RegisterFactory(kRDFTreeDocumentCID, RDF_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
|
||||||
|
nsRepository::RegisterFactory(kParserCID, PARSER_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
nsRepository::RegisterFactory(kWellFormedDTDCID, PARSER_DLL, PR_FALSE, PR_FALSE);
|
||||||
|
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
nsresult rv;
|
||||||
|
|
||||||
|
if (argc < 2) {
|
||||||
|
fprintf(stderr, "usage: %s [url]\n", argv[0]);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
PL_InitializeEventsLib("");
|
||||||
|
PLEventQueue* mainQueue = PL_GetMainEventQueue();
|
||||||
|
|
||||||
|
SetupRegistry();
|
||||||
|
|
||||||
|
nsString uri(argv[1]);
|
||||||
|
nsIRDFDataSource* ds = nsnull;
|
||||||
|
|
||||||
|
if (NS_FAILED(rv = nsRepository::CreateInstance(kRDFStreamDataSourceCID,
|
||||||
|
nsnull,
|
||||||
|
kIRDFDataSourceIID,
|
||||||
|
(void**) &ds)))
|
||||||
|
goto done;
|
||||||
|
|
||||||
|
if (NS_FAILED(rv = ds->Init(uri)))
|
||||||
|
goto done;
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
PLEvent* event = PL_GetEvent(mainQueue);
|
||||||
|
PL_HandleEvent(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
done:
|
||||||
|
NS_IF_RELEASE(ds);
|
||||||
|
return (NS_FAILED(rv) ? 1 : 0);
|
||||||
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче