blob: 6af3b7b95d99d716c5c80ea786c1fa28b6a8eabe [file] [log] [blame]
Linus Walleij71c79292011-03-05 22:08:07 +01001/**
Linus Walleij543badf2007-02-05 19:07:38 +00002 * \file files.c
3 * Example program that lists all files on a device.
4 *
Linus Walleij7fe4a392012-01-12 22:16:19 +01005 * Copyright (C) 2005-2012 Linus Walleij <triad@df.lth.se>
tedbullock51649202007-02-23 03:04:33 +00006 * Copyright (C) 2007 Ted Bullock <tbullock@canada.com>
Linus Walleij543badf2007-02-05 19:07:38 +00007 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
22 */
Linus Walleij6fd2f082006-03-28 07:19:22 +000023#include "common.h"
Linus Walleij2eaaff02009-01-15 21:30:36 +000024#include <stdlib.h>
Linus Walleij6fd2f082006-03-28 07:19:22 +000025
26static void dump_fileinfo(LIBMTP_file_t *file)
27{
Linus Walleij64ad9ae2006-11-27 11:23:26 +000028 printf("File ID: %u\n", file->item_id);
Linus Walleij6fd2f082006-03-28 07:19:22 +000029 if (file->filename != NULL)
30 printf(" Filename: %s\n", file->filename);
Linus Walleijcd3eb3d2006-09-02 21:33:22 +000031
32 // This is sort of special...
33 if (file->filesize == (uint32_t) -1) {
34 printf(" None. (abstract file, size = -1)\n");
35 } else {
Linus Walleije73f74a2007-04-02 08:51:35 +000036#ifdef __WIN32__
Linus Walleijca2a1702007-10-02 20:41:45 +000037 printf(" File size %llu (0x%016I64X) bytes\n", file->filesize, file->filesize);
Linus Walleije73f74a2007-04-02 08:51:35 +000038#else
Linus Walleijea68f1f2008-06-22 21:54:44 +000039 printf(" File size %llu (0x%016llX) bytes\n",
Linus Walleij71c79292011-03-05 22:08:07 +010040 (long long unsigned int) file->filesize,
Linus Walleijea68f1f2008-06-22 21:54:44 +000041 (long long unsigned int) file->filesize);
Linus Walleije73f74a2007-04-02 08:51:35 +000042#endif
Linus Walleijcd3eb3d2006-09-02 21:33:22 +000043 }
Linus Walleij64ad9ae2006-11-27 11:23:26 +000044 printf(" Parent ID: %u\n", file->parent_id);
Linus Walleijea68f1f2008-06-22 21:54:44 +000045 printf(" Storage ID: 0x%08X\n", file->storage_id);
Linus Walleij16c51f02006-05-04 13:20:22 +000046 printf(" Filetype: %s\n", LIBMTP_Get_Filetype_Description(file->filetype));
Linus Walleij6fd2f082006-03-28 07:19:22 +000047}
48
Linus Walleij0c754e32015-08-21 22:19:10 +020049static void
50dump_files(LIBMTP_mtpdevice_t *device, uint32_t storageid, int leaf)
Linus Walleij6fd2f082006-03-28 07:19:22 +000051{
Linus Walleij6fd2f082006-03-28 07:19:22 +000052 LIBMTP_file_t *files;
53
Linus Walleijbb5322e2015-08-21 22:05:06 +020054 /* Get file listing. */
55 files = LIBMTP_Get_Files_And_Folders(device,
56 storageid,
57 leaf);
58 if (files == NULL) {
59 LIBMTP_Dump_Errorstack(device);
60 LIBMTP_Clear_Errorstack(device);
61 } else {
62 LIBMTP_file_t *file, *tmp;
63 file = files;
64 while (file != NULL) {
65 /* Please don't print these */
66 if (file->filetype == LIBMTP_FILETYPE_FOLDER) {
67 dump_files(device, storageid, file->item_id);
68 } else {
69 dump_fileinfo(file);
70 }
71 tmp = file;
72 file = file->next;
73 LIBMTP_destroy_file_t(tmp);
74 }
75 }
76}
77
78int main(int argc, char **argv)
79{
80 LIBMTP_raw_device_t *rawdevices;
81 int numrawdevices;
Linus Walleijbb5322e2015-08-21 22:05:06 +020082 LIBMTP_error_number_t err;
83 int i;
84
tedbullockcd9f4992007-03-29 06:00:40 +000085 fprintf(stdout, "libmtp version: " LIBMTP_VERSION_STRING "\n\n");
86
Linus Walleij6fd2f082006-03-28 07:19:22 +000087 LIBMTP_Init();
tedbullock51649202007-02-23 03:04:33 +000088
Linus Walleijbb5322e2015-08-21 22:05:06 +020089 err = LIBMTP_Detect_Raw_Devices(&rawdevices, &numrawdevices);
90 switch(err)
tedbullock51649202007-02-23 03:04:33 +000091 {
tedbullock433d2172007-02-23 22:39:12 +000092 case LIBMTP_ERROR_NO_DEVICE_ATTACHED:
tedbullock51649202007-02-23 03:04:33 +000093 fprintf(stdout, "mtp-files: No Devices have been found\n");
94 return 0;
95 case LIBMTP_ERROR_CONNECTING:
96 fprintf(stderr, "mtp-files: There has been an error connecting. Exit\n");
97 return 1;
98 case LIBMTP_ERROR_MEMORY_ALLOCATION:
99 fprintf(stderr, "mtp-files: Memory Allocation Error. Exit\n");
100 return 1;
Linus Walleij71c79292011-03-05 22:08:07 +0100101
tedbullock51649202007-02-23 03:04:33 +0000102 /* Unknown general errors - This should never execute */
103 case LIBMTP_ERROR_GENERAL:
104 default:
105 fprintf(stderr, "mtp-files: Unknown error, please report "
106 "this to the libmtp developers\n");
Linus Walleijbb5322e2015-08-21 22:05:06 +0200107 return 1;
tedbullock51649202007-02-23 03:04:33 +0000108
109 /* Successfully connected at least one device, so continue */
110 case LIBMTP_ERROR_NONE:
111 fprintf(stdout, "mtp-files: Successfully connected\n");
112 fflush(stdout);
Linus Walleijbb5322e2015-08-21 22:05:06 +0200113 break;
Linus Walleij6fd2f082006-03-28 07:19:22 +0000114 }
Linus Walleij71c79292011-03-05 22:08:07 +0100115
tedbullock51649202007-02-23 03:04:33 +0000116 /* iterate through connected MTP devices */
Linus Walleijbb5322e2015-08-21 22:05:06 +0200117 for (i = 0; i < numrawdevices; i++) {
118 LIBMTP_mtpdevice_t *device;
119 LIBMTP_devicestorage_t *storage;
tedbullock51649202007-02-23 03:04:33 +0000120 char *friendlyname;
Linus Walleij71c79292011-03-05 22:08:07 +0100121
Linus Walleijbb5322e2015-08-21 22:05:06 +0200122 device = LIBMTP_Open_Raw_Device_Uncached(&rawdevices[i]);
123 if (device == NULL) {
124 fprintf(stderr, "Unable to open raw device %d\n", i);
125 continue;
126 }
127
tedbullock51649202007-02-23 03:04:33 +0000128 /* Echo the friendly name so we know which device we are working with */
Linus Walleij7fe4a392012-01-12 22:16:19 +0100129 friendlyname = LIBMTP_Get_Friendlyname(device);
tedbullock51649202007-02-23 03:04:33 +0000130 if (friendlyname == NULL) {
131 printf("Listing File Information on Device with name: (NULL)\n");
132 } else {
133 printf("Listing File Information on Device with name: %s\n", friendlyname);
134 free(friendlyname);
Linus Walleij6fd2f082006-03-28 07:19:22 +0000135 }
Linus Walleij71c79292011-03-05 22:08:07 +0100136
Linus Walleijbb5322e2015-08-21 22:05:06 +0200137 LIBMTP_Dump_Errorstack(device);
138 LIBMTP_Clear_Errorstack(device);
139
140 /* Loop over storages */
141 for (storage = device->storage; storage != 0; storage = storage->next) {
Stanisław Pitucha4c162fa2017-02-04 09:35:54 +1100142 dump_files(device, storage->id, LIBMTP_FILES_AND_FOLDERS_ROOT);
Linus Walleijbb5322e2015-08-21 22:05:06 +0200143 }
144 LIBMTP_Release_Device(device);
Linus Walleij6fd2f082006-03-28 07:19:22 +0000145 }
Linus Walleij71c79292011-03-05 22:08:07 +0100146
Linus Walleijbb5322e2015-08-21 22:05:06 +0200147 free(rawdevices);
148
Linus Walleij6fd2f082006-03-28 07:19:22 +0000149 printf("OK.\n");
150 exit (0);
151}