mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
0fd9123eac
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
154 lines
4.4 KiB
C++
154 lines
4.4 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/**
|
|
* A simple test program that reads in RDF/XML into an in-memory data
|
|
* source, then serializes NTriples format back to stdout (or none).
|
|
*
|
|
* The program takes a single parameter: the URL from which to read,
|
|
* plus an optional parameter -q
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "nsXPCOM.h"
|
|
#include "nsCOMPtr.h"
|
|
//#include "nsString.h"
|
|
#include "nsIComponentManager.h"
|
|
#include "nsComponentManagerUtils.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
#include "nsThreadUtils.h"
|
|
#include "nsIIOService.h"
|
|
#include "nsIInputStream.h"
|
|
#include "nsIOutputStream.h"
|
|
#include "nsIRDFCompositeDataSource.h"
|
|
#include "nsIRDFNode.h"
|
|
#include "nsIRDFRemoteDataSource.h"
|
|
#include "nsIRDFService.h"
|
|
#include "nsIRDFXMLSource.h"
|
|
#include "nsIServiceManager.h"
|
|
#include "nsIStreamListener.h"
|
|
#include "nsIURL.h"
|
|
#include "nsRDFCID.h"
|
|
#include "plstr.h"
|
|
#include "prio.h"
|
|
#include "prthread.h"
|
|
|
|
#include "rdf.h"
|
|
#include "rdfIDataSource.h"
|
|
#include "rdfITripleVisitor.h"
|
|
#include "rdfISerializer.h"
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
// Blatantly stolen from netwerk/test/
|
|
#define RETURN_IF_FAILED(rv, step) \
|
|
PR_BEGIN_MACRO \
|
|
if (NS_FAILED(rv)) { \
|
|
printf(">>> %s failed: rv=%x\n", step, rv); \
|
|
return 1;\
|
|
} \
|
|
PR_END_MACRO
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
class ConsoleOutputStreamImpl : public nsIOutputStream
|
|
{
|
|
public:
|
|
ConsoleOutputStreamImpl(void) {}
|
|
virtual ~ConsoleOutputStreamImpl(void) {}
|
|
|
|
// nsISupports interface
|
|
NS_DECL_ISUPPORTS
|
|
|
|
// nsIOutputStream interface
|
|
NS_IMETHOD Close(void) {
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHOD Write(const char* aBuf, uint32_t aCount, uint32_t *aWriteCount) {
|
|
PR_Write(PR_GetSpecialFD(PR_StandardOutput), aBuf, aCount);
|
|
*aWriteCount = aCount;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHOD
|
|
WriteFrom(nsIInputStream *inStr, uint32_t count, uint32_t *_retval) {
|
|
NS_NOTREACHED("WriteFrom");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHOD
|
|
WriteSegments(nsReadSegmentFun reader, void * closure, uint32_t count, uint32_t *_retval) {
|
|
NS_NOTREACHED("WriteSegments");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHOD
|
|
IsNonBlocking(bool *aNonBlocking) {
|
|
NS_NOTREACHED("IsNonBlocking");
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHOD Flush(void) {
|
|
PR_Sync(PR_GetSpecialFD(PR_StandardOutput));
|
|
return NS_OK;
|
|
}
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS1(ConsoleOutputStreamImpl, nsIOutputStream)
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
nsresult rv;
|
|
|
|
if (argc < 2) {
|
|
fprintf(stderr, "usage: %s <url>\n", argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
NS_InitXPCOM2(nullptr, nullptr, nullptr);
|
|
|
|
// Create a stream data source and initialize it on argv[1], which
|
|
// is hopefully a "file:" URL.
|
|
nsCOMPtr<nsIRDFDataSource> ds =
|
|
do_CreateInstance(NS_RDF_DATASOURCE_CONTRACTID_PREFIX "xml-datasource",
|
|
&rv);
|
|
RETURN_IF_FAILED(rv, "RDF/XML datasource creation");
|
|
|
|
nsCOMPtr<nsIRDFRemoteDataSource> remote = do_QueryInterface(ds, &rv);
|
|
RETURN_IF_FAILED(rv, "QI to nsIRDFRemoteDataSource");
|
|
|
|
rv = remote->Init(argv[1]);
|
|
RETURN_IF_FAILED(rv, "datasource initialization");
|
|
|
|
// Okay, this should load the XML file...
|
|
rv = remote->Refresh(false);
|
|
RETURN_IF_FAILED(rv, "datasource refresh");
|
|
|
|
// Pump events until the load is finished
|
|
nsCOMPtr<nsIThread> thread = do_GetCurrentThread();
|
|
bool done = false;
|
|
while (!done) {
|
|
NS_ENSURE_TRUE(NS_ProcessNextEvent(thread), 1);
|
|
remote->GetLoaded(&done);
|
|
}
|
|
|
|
nsCOMPtr<rdfIDataSource> rdfds = do_QueryInterface(ds, &rv);
|
|
RETURN_IF_FAILED(rv, "QI to rdIDataSource");
|
|
{
|
|
nsCOMPtr<nsIOutputStream> out = new ConsoleOutputStreamImpl();
|
|
nsCOMPtr<rdfISerializer> ser =
|
|
do_CreateInstance(NS_RDF_SERIALIZER "ntriples", &rv);
|
|
RETURN_IF_FAILED(rv, "Creation of NTriples Serializer");
|
|
rv = ser->Serialize(rdfds, out);
|
|
RETURN_IF_FAILED(rv, "Serialization to NTriples");
|
|
out->Close();
|
|
}
|
|
|
|
return 0;
|
|
}
|