/* -*- 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 */ #ifndef nsXPITriggerInfo_h #define nsXPITriggerInfo_h #include "nsString.h" #include "nsVoidArray.h" #include "nsCOMPtr.h" #include "nsISupportsUtils.h" #include "nsIFileSpec.h" #include "nsILocalFile.h" #include "nsIOutputStream.h" #include "jsapi.h" #include "prthread.h" #include "plevent.h" #include "nsIXPConnect.h" #include "nsIPrincipal.h" typedef struct XPITriggerEvent { PLEvent e; nsString URL; PRInt32 status; JSContext* cx; jsval global; jsval cbval; nsCOMPtr ref; } XPITriggerEvent; class nsXPITriggerItem { public: nsXPITriggerItem( const PRUnichar* name, const PRUnichar* URL, const PRUnichar* iconURL, PRInt32 flags = 0); ~nsXPITriggerItem(); nsString mName; nsString mURL; nsString mIconURL; nsString mArguments; nsString mCertName; PRInt32 mFlags; nsCOMPtr mFile; nsCOMPtr mOutStream; nsCOMPtr mPrincipal; PRBool IsFileURL() { return StringBeginsWith(mURL, NS_LITERAL_STRING("file:/")); } PRBool IsRelativeURL(); void SetPrincipal(nsIPrincipal* aPrincipal); 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 mGlobalWrapper; jsval mCbval; PRThread* mThread; //-- prevent inadvertent copies and assignments nsXPITriggerInfo& operator=(const nsXPITriggerInfo& rhs); nsXPITriggerInfo(const nsXPITriggerInfo& rhs); }; #endif /* nsXPITriggerInfo_h */