зеркало из https://github.com/mozilla/pjs.git
122 строки
3.0 KiB
C
122 строки
3.0 KiB
C
/* -*- 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.
|
|
*/
|
|
|
|
/*
|
|
* Intramodule declarations.
|
|
*/
|
|
|
|
#ifndef __xpidl_h
|
|
#define __xpidl_h
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <glib.h>
|
|
#include <libIDL/IDL.h>
|
|
|
|
/*
|
|
* Internal operation flags.
|
|
*/
|
|
extern gboolean enable_debug;
|
|
extern gboolean enable_warnings;
|
|
extern gboolean verbose_mode;
|
|
|
|
typedef struct TreeState TreeState;
|
|
|
|
/*
|
|
* A function to handle an IDL_tree type.
|
|
*/
|
|
typedef gboolean (*nodeHandler)(TreeState *);
|
|
|
|
/* Function that produces a table of nodeHandlers for a given mode */
|
|
typedef nodeHandler *(*nodeHandlerFactory)();
|
|
|
|
extern nodeHandler *xpidl_header_dispatch(void);
|
|
extern nodeHandler *xpidl_stub_dispatch(void);
|
|
extern nodeHandler *xpidl_typelib_dispatch(void);
|
|
extern nodeHandler *xpidl_doc_dispatch(void);
|
|
|
|
/*
|
|
* nodeHandler that reports an error.
|
|
*/
|
|
gboolean node_is_error(TreeState *state);
|
|
|
|
typedef struct ModeData {
|
|
char *mode;
|
|
char *modeInfo;
|
|
char *suffix;
|
|
nodeHandlerFactory factory;
|
|
} ModeData;
|
|
|
|
typedef struct IncludePathEntry {
|
|
char *directory;
|
|
struct IncludePathEntry *next;
|
|
} IncludePathEntry;
|
|
|
|
struct TreeState {
|
|
FILE *file;
|
|
char *basename;
|
|
IDL_ns ns;
|
|
IDL_tree tree;
|
|
GHashTable *includes;
|
|
IncludePathEntry *include_path;
|
|
nodeHandler *dispatch;
|
|
void *priv; /* mode-private data */
|
|
};
|
|
|
|
/*
|
|
* Process an IDL file, generating InterfaceInfo, documentation and headers as
|
|
* appropriate.
|
|
*/
|
|
int
|
|
xpidl_process_idl(char *filename, IncludePathEntry *include_path,
|
|
char *basename, ModeData *mode);
|
|
|
|
/*
|
|
* Iterate over an IDLN_LIST -- why is this not part of libIDL?
|
|
*/
|
|
void
|
|
xpidl_list_foreach(IDL_tree p, IDL_tree_func foreach, gpointer user_data);
|
|
|
|
/*
|
|
* Wrapper whines to stderr then exits after null return from malloc or strdup.
|
|
*/
|
|
void *
|
|
xpidl_malloc(size_t nbytes);
|
|
|
|
char *
|
|
xpidl_strdup(const char *s);
|
|
|
|
/*
|
|
* Process an XPIDL node and its kids, if any.
|
|
*/
|
|
gboolean
|
|
xpidl_process_node(TreeState *state);
|
|
|
|
/*
|
|
* Write a newline folllowed by an indented, one-line comment containing IDL
|
|
* source decompiled from state->tree.
|
|
*/
|
|
void
|
|
xpidl_write_comment(TreeState *state, int indent);
|
|
|
|
#endif /* __xpidl_h */
|