2

1 つのアプリケーション インスタンスを 1 回だけ開きたいので
NSArray *apps = [NSRunningApplication runningApplicationsWithBundleIdentifier:@"com.my.app"];、main.mのようにし
ます。コンソールからアプリを開くと、apps 配列のカウントは 0 になります。ただし、アプリをダブルクリックすると、 1
では、ダブルクリックとコンソールを開くことの違いを誰か教えてもらえますか? または、すでに 1 つのインスタンスが実行されているかどうかを確認する別の方法を教えてください。

4

2 に答える 2

1

そのコマンドはワークスペースを照会し、「遅延」して更新されます

アプリがファインダーから起動されると、 経由で起動されるためNSWorkspace、ワークスペースはすぐに更新されます

コンソール/xcode を介してアプリを起動すると、 を介して起動されない NSWorkspaceため、クラスは開始時に 0 を返します。プロセスが起動するNSApplicationと、ワークスペースに通知され、その 1.

=>常に正しい- (void)applicationDidFinishLaunching:(NSNotification *)aNotification


そのため、NSApplication が開始するのを待ってから、それを強制終了します (今と同じですが、後で)

また

ココアなしでそれを行う方法については、Linux での複数のプロセス インスタンスの防止を参照してください。

また

これを実行できるlaunchdを見てください:) http://developer.apple.com/library/mac/#documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingLaunchdJobs.html

于 2012-12-28T01:53:13.040 に答える
-1

以下のコードを使用できます。 getBSDProcessList関数はNSArray実行中のプロセスを返します。[1]

static int GetBSDProcessList(kinfo_proc **procList, size_t *procCount)
// Returns a list of all BSD processes on the system.  This routine
// allocates the list and puts it in *procList and a count of the
// number of entries in *procCount.  You are responsible for freeing
// this list (use "free" from System framework).
// On success, the function returns 0.
// On error, the function returns a BSD errno value.
{
    int                 err;
    kinfo_proc *        result;
    bool                done;
    static const int    name[] = { CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0 };
    // Declaring name as const requires us to cast it when passing it to
    // sysctl because the prototype doesn't include the const modifier.
    size_t              length;

    //    assert( procList != NULL);
    //    assert(*procList == NULL);
    //    assert(procCount != NULL);

    *procCount = 0;

    // We start by calling sysctl with result == NULL and length == 0.
    // That will succeed, and set length to the appropriate length.
    // We then allocate a buffer of that size and call sysctl again
    // with that buffer.  If that succeeds, we're done.  If that fails
    // with ENOMEM, we have to throw away our buffer and loop.  Note
    // that the loop causes use to call sysctl with NULL again; this
    // is necessary because the ENOMEM failure case sets length to
    // the amount of data returned, not the amount of data that
    // could have been returned.

    result = NULL;
    done = false;
    do {
        assert(result == NULL);

        // Call sysctl with a NULL buffer.

        length = 0;
        err = sysctl( (int *) name, (sizeof(name) / sizeof(*name)) - 1,
                     NULL, &length,
                     NULL, 0);
        if (err == -1) {
            err = errno;
        }

        // Allocate an appropriately sized buffer based on the results
        // from the previous call.

        if (err == 0) {
            result = malloc(length);
            if (result == NULL) {
                err = ENOMEM;
            }
        }

        // Call sysctl again with the new buffer.  If we get an ENOMEM
        // error, toss away our buffer and start again.

        if (err == 0) {
            err = sysctl( (int *) name, (sizeof(name) / sizeof(*name)) - 1,
                         result, &length,
                         NULL, 0);
            if (err == -1) {
                err = errno;
            }
            if (err == 0) {
                done = true;
            } else if (err == ENOMEM) {
                assert(result != NULL);
                free(result);
                result = NULL;
                err = 0;
            }
        }
    } while (err == 0 && ! done);

    // Clean up and establish post conditions.

    if (err != 0 && result != NULL) {
        free(result);
        result = NULL;
    }
    *procList = result;
    if (err == 0) {
        *procCount = length / sizeof(kinfo_proc);
    }

    assert( (err == 0) == (*procList != NULL) );

    return err;
}

+ (NSArray*)getBSDProcessList
{
    NSMutableArray *ret = [NSMutableArray arrayWithCapacity:1];
    kinfo_proc *mylist;
    size_t mycount = 0;
    mylist = (kinfo_proc *)malloc(sizeof(kinfo_proc));
    GetBSDProcessList(&mylist, &mycount);
    int k;
    for(k = 0; k < mycount; k++) {
        kinfo_proc *proc = NULL;
        proc = &mylist[k];
        NSString *fullName = [[self infoForPID:proc->kp_proc.p_pid] objectForKey:(id)kCFBundleNameKey];
        NSLog(@"fullName %@", fullName);
        if (fullName != nil) 
        {
            [ret addObject:fullName];
        }                                        
    }
    free(mylist);  
    return ret;
}

+ (NSDictionary *)infoForPID:(pid_t)pid 
{
    NSDictionary *ret = nil;
    ProcessSerialNumber psn = { kNoProcess, kNoProcess };
    if (GetProcessForPID(pid, &psn) == noErr) {
        CFDictionaryRef cfDict = ProcessInformationCopyDictionary(&psn,kProcessDictionaryIncludeAllInformationMask); 
        ret = [NSDictionary dictionaryWithDictionary:(NSDictionary *)cfDict];
        CFRelease(cfDict);
    }
    return ret;
}

Technical Q&A QA1123 ( Mac OS X でのすべてのプロセスの取得リスト) をご覧ください。

于 2012-12-28T06:23:41.460 に答える