111 lines
3.0 KiB
C++
111 lines
3.0 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.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code,
|
|
* released March 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
* Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Daniel Veditz <dveditz@netscape.com>
|
|
*/
|
|
|
|
#ifndef nsXPITriggerInfo_h
|
|
#define nsXPITriggerInfo_h
|
|
|
|
#include "nsString.h"
|
|
#include "nsVoidArray.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsISupportsUtils.h"
|
|
//#include "nsIXPINotifier.h"
|
|
#include "nsIFileSpec.h"
|
|
#include "nsILocalFile.h"
|
|
#include "nsIOutputStream.h"
|
|
#include "jsapi.h"
|
|
#include "prthread.h"
|
|
#include "plevent.h"
|
|
#include "nsIXPConnect.h"
|
|
|
|
|
|
|
|
typedef struct XPITriggerEvent {
|
|
PLEvent e;
|
|
nsString URL;
|
|
PRInt32 status;
|
|
JSContext* cx;
|
|
jsval global;
|
|
jsval cbval;
|
|
nsCOMPtr<nsISupports> ref;
|
|
} XPITriggerEvent;
|
|
|
|
|
|
|
|
class nsXPITriggerItem
|
|
{
|
|
public:
|
|
nsXPITriggerItem( const PRUnichar* name, const PRUnichar* URL, PRInt32 flags = 0);
|
|
~nsXPITriggerItem();
|
|
|
|
nsString mName;
|
|
nsString mURL;
|
|
nsString mArguments;
|
|
PRInt32 mFlags;
|
|
|
|
nsCOMPtr<nsILocalFile> mFile;
|
|
nsCOMPtr<nsIOutputStream> mOutStream;
|
|
|
|
PRBool IsFileURL() { return Substring(mURL, 0, 6).Equals(NS_LITERAL_STRING("file:/")); }
|
|
PRBool IsRelativeURL();
|
|
|
|
private:
|
|
//-- prevent inadvertent copies and assignments
|
|
nsXPITriggerItem& operator=(const nsXPITriggerItem& rhs);
|
|
nsXPITriggerItem(const nsXPITriggerItem& rhs);
|
|
};
|
|
|
|
|
|
|
|
class nsXPITriggerInfo
|
|
{
|
|
public:
|
|
nsXPITriggerInfo();
|
|
~nsXPITriggerInfo();
|
|
|
|
void Add( nsXPITriggerItem *aItem )
|
|
{ if ( aItem ) mItems.AppendElement( (void*)aItem ); }
|
|
|
|
nsXPITriggerItem* Get( PRUint32 aIndex )
|
|
{ return (nsXPITriggerItem*)mItems.ElementAt(aIndex);}
|
|
|
|
void SaveCallback( JSContext *aCx, jsval aVal );
|
|
|
|
PRUint32 Size() { return mItems.Count(); }
|
|
|
|
void SendStatus(const PRUnichar* URL, PRInt32 status);
|
|
|
|
private:
|
|
nsVoidArray mItems;
|
|
JSContext *mCx;
|
|
nsCOMPtr<nsIXPConnectJSObjectHolder> mGlobalWrapper;
|
|
jsval mCbval;
|
|
PRThread* mThread;
|
|
|
|
//-- prevent inadvertent copies and assignments
|
|
nsXPITriggerInfo& operator=(const nsXPITriggerInfo& rhs);
|
|
nsXPITriggerInfo(const nsXPITriggerInfo& rhs);
|
|
};
|
|
|
|
#endif /* nsXPITriggerInfo_h */
|