2014-06-30 15:39:45 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-01-19 21:23:24 +00:00
|
|
|
|
|
|
|
#ifndef _nsPROCESSWIN_H_
|
|
|
|
#define _nsPROCESSWIN_H_
|
|
|
|
|
2010-03-13 01:56:06 +00:00
|
|
|
#if defined(XP_WIN)
|
2009-03-09 16:47:39 +00:00
|
|
|
#define PROCESSMODEL_WINAPI
|
|
|
|
#endif
|
|
|
|
|
2012-06-05 23:51:58 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
#include "mozilla/Mutex.h"
|
2001-01-19 21:23:24 +00:00
|
|
|
#include "nsIProcess.h"
|
2002-04-27 05:33:09 +00:00
|
|
|
#include "nsIFile.h"
|
2009-03-25 08:57:21 +00:00
|
|
|
#include "nsIThread.h"
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsIWeakReferenceUtils.h"
|
|
|
|
#include "nsIObserver.h"
|
2002-04-27 05:33:09 +00:00
|
|
|
#include "nsString.h"
|
2010-10-01 13:01:04 +00:00
|
|
|
#ifndef XP_MACOSX
|
2001-01-19 21:23:24 +00:00
|
|
|
#include "prproces.h"
|
2010-10-01 13:01:04 +00:00
|
|
|
#endif
|
|
|
|
#if defined(PROCESSMODEL_WINAPI)
|
2009-03-09 16:47:39 +00:00
|
|
|
#include <windows.h>
|
2009-03-18 11:00:20 +00:00
|
|
|
#include <shellapi.h>
|
2009-03-09 16:47:39 +00:00
|
|
|
#endif
|
2001-01-19 21:23:24 +00:00
|
|
|
|
|
|
|
#define NS_PROCESS_CID \
|
|
|
|
{0x7b4eeb20, 0xd781, 0x11d4, \
|
|
|
|
{0x8A, 0x83, 0x00, 0x10, 0xa4, 0xe0, 0xc9, 0xca}}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
class nsProcess MOZ_FINAL
|
|
|
|
: public nsIProcess
|
|
|
|
, public nsIObserver
|
2001-01-19 21:23:24 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2013-07-19 02:31:26 +00:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2001-01-19 21:23:24 +00:00
|
|
|
NS_DECL_NSIPROCESS
|
2009-03-25 08:57:21 +00:00
|
|
|
NS_DECL_NSIOBSERVER
|
2001-01-19 21:23:24 +00:00
|
|
|
|
|
|
|
nsProcess();
|
|
|
|
|
|
|
|
private:
|
2009-03-09 16:47:39 +00:00
|
|
|
~nsProcess();
|
2014-05-27 07:15:35 +00:00
|
|
|
static void Monitor(void* aArg);
|
2009-03-25 08:57:21 +00:00
|
|
|
void ProcessComplete();
|
2014-05-27 07:15:35 +00:00
|
|
|
nsresult CopyArgsAndRunProcess(bool aBlocking, const char** aArgs,
|
|
|
|
uint32_t aCount, nsIObserver* aObserver,
|
|
|
|
bool aHoldWeak);
|
|
|
|
nsresult CopyArgsAndRunProcessw(bool aBlocking, const char16_t** aArgs,
|
|
|
|
uint32_t aCount, nsIObserver* aObserver,
|
|
|
|
bool aHoldWeak);
|
2010-10-01 13:01:04 +00:00
|
|
|
// The 'args' array is null-terminated.
|
2014-05-27 07:15:35 +00:00
|
|
|
nsresult RunProcess(bool aBlocking, char** aArgs, nsIObserver* aObserver,
|
|
|
|
bool aHoldWeak, bool aArgsUTF8);
|
2009-03-25 08:57:21 +00:00
|
|
|
|
|
|
|
PRThread* mThread;
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
mozilla::Mutex mLock;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mShutdown;
|
2012-07-31 18:59:18 +00:00
|
|
|
bool mBlocking;
|
2004-01-15 06:14:18 +00:00
|
|
|
|
2001-01-19 21:23:24 +00:00
|
|
|
nsCOMPtr<nsIFile> mExecutable;
|
2010-03-18 08:37:12 +00:00
|
|
|
nsString mTargetPath;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mPid;
|
2009-03-25 08:57:21 +00:00
|
|
|
nsCOMPtr<nsIObserver> mObserver;
|
|
|
|
nsWeakPtr mWeakObserver;
|
2001-01-19 21:23:24 +00:00
|
|
|
|
2009-03-25 08:57:21 +00:00
|
|
|
// These members are modified by multiple threads, any accesses should be
|
|
|
|
// protected with mLock.
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mExitValue;
|
2010-10-01 13:01:04 +00:00
|
|
|
#if defined(PROCESSMODEL_WINAPI)
|
2009-03-18 11:00:20 +00:00
|
|
|
HANDLE mProcess;
|
2010-10-01 13:01:04 +00:00
|
|
|
#elif !defined(XP_MACOSX)
|
2014-05-27 07:15:35 +00:00
|
|
|
PRProcess* mProcess;
|
2009-03-09 16:47:39 +00:00
|
|
|
#endif
|
2001-01-19 21:23:24 +00:00
|
|
|
};
|
|
|
|
|
2001-01-22 21:40:33 +00:00
|
|
|
#endif
|