mirror of
https://review.haiku-os.org/haiku
synced 2025-02-13 17:19:10 +01:00
56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
|
/* Launches an application/document from the shell
|
||
|
**
|
||
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
||
|
** Distributed under the terms of the OpenBeOS License.
|
||
|
*/
|
||
|
|
||
|
#include <InterfaceDefs.h>
|
||
|
#include <Roster.h>
|
||
|
#include <Entry.h>
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
|
||
|
int
|
||
|
main(int argc, char **argv)
|
||
|
{
|
||
|
char *progName = argv[0];
|
||
|
if (strrchr(progName, '/'))
|
||
|
progName = strrchr(progName, '/') + 1;
|
||
|
|
||
|
if (argc < 2)
|
||
|
fprintf(stderr,"usage: %s <file or application signature> ...\n", progName);
|
||
|
|
||
|
BRoster roster;
|
||
|
|
||
|
while (*++argv) {
|
||
|
status_t rc;
|
||
|
|
||
|
BEntry entry(*argv);
|
||
|
if ((rc = entry.InitCheck()) == B_OK && entry.Exists()) {
|
||
|
entry_ref ref;
|
||
|
entry.GetRef(&ref);
|
||
|
|
||
|
BMessenger tracker("application/x-vnd.Be-TRAK");
|
||
|
if (tracker.IsValid()) {
|
||
|
BMessage message(B_REFS_RECEIVED);
|
||
|
message.AddRef("refs", &ref);
|
||
|
|
||
|
tracker.SendMessage(&message);
|
||
|
} else
|
||
|
rc = roster.Launch(&ref);
|
||
|
} else if (!strncasecmp("application/", *argv, 12)) {
|
||
|
// maybe it's an application-mimetype?
|
||
|
rc = roster.Launch(*argv);
|
||
|
} else if (rc == B_OK)
|
||
|
rc = B_ENTRY_NOT_FOUND;
|
||
|
|
||
|
if (rc != B_OK)
|
||
|
fprintf(stderr, "%s: \"%s\": %s\n", progName, *argv, strerror(rc));
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|