mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
90 lines
3.1 KiB
C++
90 lines
3.1 KiB
C++
/* -*- Mode: C++; tab-width: 2; 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.
|
|
*/
|
|
|
|
#ifndef _JSStubGen_h__
|
|
#define _JSStubGen_h__
|
|
|
|
#include <string.h>
|
|
#include "plhash.h"
|
|
#include "FileGen.h"
|
|
|
|
#ifdef XP_MAC
|
|
#include <ostream.h> // required for namespace resolution
|
|
#else
|
|
class ofstream;
|
|
#endif
|
|
|
|
class IdlSpecification;
|
|
class IdlInterface;
|
|
class IdlAttribute;
|
|
|
|
class JSStubGen : public FileGen {
|
|
public:
|
|
JSStubGen();
|
|
~JSStubGen();
|
|
|
|
virtual void Generate(char *aFileName, char *aOutputDirName,
|
|
IdlSpecification &aSpec, int aIsGlobal);
|
|
|
|
friend PRIntn JSStubGen_IIDEnumerator(PLHashEntry *he,
|
|
PRIntn i,
|
|
void *arg);
|
|
friend PRIntn JSStubGen_DefPtrEnumerator(PLHashEntry *he,
|
|
PRIntn i,
|
|
void *arg);
|
|
|
|
protected:
|
|
enum {
|
|
JSSTUBGEN_PRIMARY,
|
|
JSSTUBGEN_NONPRIMARY,
|
|
JSSTUBGEN_DEFAULT,
|
|
JSSTUBGEN_DEFAULT_NONPRIMARY,
|
|
JSSTUBGEN_NAMED_ITEM,
|
|
JSSTUBGEN_NAMED_ITEM_NONPRIMARY
|
|
};
|
|
|
|
void GenerateIncludes(IdlSpecification &aSpec);
|
|
void GenerateIIDDefinitions(IdlSpecification &aSpec);
|
|
void GenerateDefPtrs(IdlSpecification &aSpec);
|
|
void GeneratePropertySlots(IdlSpecification &aSpec);
|
|
void GeneratePropertyFunc(IdlSpecification &aSpec, PRBool aIsGetter);
|
|
void GenerateFinalize(IdlSpecification &aSpec);
|
|
void GenerateEnumerate(IdlSpecification &aSpec);
|
|
void GenerateResolve(IdlSpecification &aSpec);
|
|
void GenerateMethods(IdlSpecification &aSpec);
|
|
void GenerateJSClass(IdlSpecification &aSpec);
|
|
void GenerateClassProperties(IdlSpecification &aSpec);
|
|
void GenerateClassFunctions(IdlSpecification &aSpec);
|
|
void GenerateConstructor(IdlSpecification &aSpec);
|
|
void GenerateInitClass(IdlSpecification &aSpec);
|
|
void GenerateNew(IdlSpecification &aSpec);
|
|
|
|
void GeneratePropGetter(ofstream *file,
|
|
IdlInterface &aInterface,
|
|
IdlVariable &aAttribute,
|
|
PRInt32 aType);
|
|
void GeneratePropSetter(ofstream *file,
|
|
IdlInterface &aInterface,
|
|
IdlAttribute &aAttribute,
|
|
PRBool aIsPrimary);
|
|
|
|
int mIsGlobal;
|
|
};
|
|
|
|
#endif // _JSStubGen_h__
|