gecko-dev/rdf/opendir/opendir.c

126 строки
3.2 KiB
C
Исходник Обычный вид История

1998-12-10 02:08:59 +03:00
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* 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 <sys/types.h>
#include "ONEiiop.h"
#include "rdf.h"
#if !defined(WIN32) && !defined(HPUX) && !defined(OSF1)
extern "C" int gethostname(char *name, int namelen);
#endif
void
WriteClient (void* obj, char* buffer) {
size_t len = strlen(buffer);
WAIWriteClient((ServerSession_t)obj, (const unsigned char *) buffer, len);
}
void AnswerOpenDirQuery(WriteClientProc callBack, void* obj, char* query);
#define PREFIX "<html><body>"
#define POSTFIX "</body><html>"
1998-12-10 02:08:59 +03:00
long
Run(ServerSession_t obj)
{
char* query = malloc(300);
WAIgetRequestInfo(obj, "QUERY", &query);
//WAIsetResponseContentLength(obj, 10000);
1998-12-10 02:08:59 +03:00
WAIStartResponse(obj);
WriteClient(obj, PREFIX);
AnswerOpenDirQuery(WriteClient, obj, query);
WriteClient(obj, POSTFIX);
/* WAIWriteClient(obj, (const unsigned char *)query, strlen(query)); */
1998-12-10 02:08:59 +03:00
return 0;
}
#if defined(WIN32)
int WINAPI WinMain(
HINSTANCE hInstance, // handle to current instance
HINSTANCE hPrevInstance, // handle to previous instance
LPSTR lpCmdLine, // pointer to command line
int nCmdShow // show state of window
)
{
int argc = 0;
char **argv = NULL;
#else
int main(int argc, char **argv)
{
#endif
char localhost[256];
char *host;
RDF_Resource u;
1998-12-10 02:08:59 +03:00
IIOPWebAppService_t obj;
//
// Normally we expect to see a hostname:port as
// our one and only argument. If we are started by
// the OAD we will see an extra argument which should
// be ignored.
// The recommended registration with the OAD should
// specify the hostname:port as an argument to the
// object provider.
//
// So try to ferrit out the hostname:port
#ifndef WIN32
// Easier if we just have a normal main.
if (argc > 1){
if (argc == 1)
host = argv[1];
else if (*argv[1] != '-')
host = argv[1];
#else
// Windows command line drops the program name
// that appears as argv[0].
// GetCommandLine can be used to retrieve the
// whole thing.
if (lpCmdLine && *lpCmdLine){
if (*lpCmdLine != '-'){
char *sep = strchr(lpCmdLine, ' ');
if (sep)
*sep = '\0';
host = lpCmdLine;
}
#endif
}else{
gethostname(localhost, sizeof(localhost));
host = localhost;
}
//
// Pass in argc/argv if we have 'em.
#ifndef WIN32
obj = WAIcreateWebAppService("OpenDir", Run, argc, argv);
#else
obj = WAIcreateWebAppService("OpenDir", Run, 0, 0);
#endif
WAIregisterService(obj, host);
RDF_Initialize();
RDF_ReadFile("opendir.rdf");
printf("done");
1998-12-10 02:08:59 +03:00
WAIimplIsReady();
1998-12-10 02:08:59 +03:00
return 0;
}