summaryrefslogtreecommitdiffstats
path: root/vcl/workben/pasteboard.mm
blob: 4123f8eae022e8361d41b6ae404024d5a7fa3b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// -*- Mode: ObjC; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*-

/*
 * This file is part of the LibreOffice project.
 *
 * 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/.
 */

// List the contents of the macOS pasteboard

// Build with: clang++ -g -Wall -o pasteboard pasteboard.mm -framework AppKit -framework UniformTypeIdentifiers

#import <unistd.h>

#import <iostream>
#import <AppKit/AppKit.h>
#import <UniformTypeIdentifiers/UniformTypeIdentifiers.h>

static void usage()
{
    std::cout << "Usage: pasteboard\n"
                 "          List the types on the pasteboard and in each pasteboard item.\n"
                 "       pasteboard -a\n"
                 "          Output the data for all types to stdout. Note: output will\n"
                 "          in many cases be binary. The different types are separated by a textual header.\n"
                 "       pasteboard -t type\n"
                 "          Output the data for the type in question to stdout. Note: output will\n"
                 "          in many cases be binary.\n";
}

int main(int argc, char** argv)
{
    NSString* requestedType = @"";

    int ch;

    while ((ch = getopt(argc, argv, "at:")) != -1)
    {
        switch (ch)
        {
            case 'a':
                requestedType = @"*";
                break;
            case 't':
                requestedType = [NSString stringWithUTF8String:optarg];
                break;
            case '?':
                usage();
                return 0;
        }
    }

    argc -= optind;
    argv += optind;

    if (argc > 0)
    {
        usage();
        return 1;
    }

    NSPasteboard* pb = [NSPasteboard generalPasteboard];

    if ([requestedType isEqualToString:@"*"])
    {
        NSArray<NSPasteboardType>* types = [pb types];
        for (unsigned i = 0; i < [types count]; i++)
        {
            NSData* data = [pb dataForType:types[i]];
            std::cout << i << ": " << [types[i] UTF8String] << ": " << std::to_string([data length]) << " bytes:\n";
            if (data != nil)
            {
                std::cout.write((const char*)[data bytes], [data length]);
                std::cout << "\n";
            }
        }
        return 0;
    }

    if ([requestedType length] > 0)
    {
        NSData* data = [pb dataForType:requestedType];

        if (data == nil)
            std::cerr << "No data for " << [requestedType UTF8String] << std::endl;
        else
            std::cout.write((const char*)[data bytes], [data length]);

        return 0;
    }

    {
        NSArray<NSPasteboardType>* types = [pb types];
        std::cout << "Types directly on pasteboard:\n";
        for (unsigned i = 0; i < [types count]; i++)
        {
            std::cout << "  " << i << ": " << [types[i] UTF8String] << "\n";
        }
    }

    NSArray<NSPasteboardItem*>* items = [pb pasteboardItems];
    std::cout << "New-style items on pasteboard:\n";

    for (unsigned i = 0; i < [items count]; i++)
    {
        std::cout << "  Item " << i << ", types:\n";
        NSArray<NSPasteboardType>* types = [items[i] types];
        for (unsigned j = 0; j < [types count]; j++)
        {
            std::cout << "    " << j << ": " << [types[j] UTF8String] << std::flush;

            if ([types[j] isEqualToString:[UTTypePlainText identifier]] ||
                [types[j] isEqualToString:[UTTypeUTF8PlainText identifier]] ||
                [types[j] isEqualToString:[UTTypeText identifier]] ||
                [types[j] isEqualToString:[UTTypeHTML identifier]] ||
                [types[j] isEqualToString:[UTTypeRTF identifier]] ||
                [types[j] isEqualToString:[UTTypeUTF16ExternalPlainText identifier]])
            {
                NSString* string = [items[i] stringForType:NSPasteboardTypeString];
                if ([string length] > 500)
                    string = [[string substringToIndex:501] stringByAppendingString:@"..."];
                std::cout << ": '" << [string UTF8String] << "'";
            }
            std::cout << "\n";
        }
    }

    return 0;
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */