blob: f139343474d10be20f1e3c22b559522711884b79 [file] [log] [blame]
Linus Walleij8a199282011-03-05 22:28:41 +01001/**
Linus Walleij543badf2007-02-05 19:07:38 +00002 * \file folders.c
3 * Example program that lists all folders on a device.
4 *
Linus Walleij8a199282011-03-05 22:28:41 +01005 * Copyright (C) 2005-2011 Linus Walleij <triad@df.lth.se>
tedbullock69a445b2007-02-15 07:41:04 +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 Walleij9c6ca022006-04-21 10:24:15 +000023#include "common.h"
Linus Walleij2eaaff02009-01-15 21:30:36 +000024#include <stdlib.h>
Linus Walleij9c6ca022006-04-21 10:24:15 +000025
Linus Walleija823a702006-08-27 21:27:46 +000026static void dump_folder_list(LIBMTP_folder_t *folderlist, int level)
Linus Walleij9c6ca022006-04-21 10:24:15 +000027{
28 int i;
29 if(folderlist==NULL) {
30 return;
31 }
32
33 printf("%u\t", folderlist->folder_id);
34 for(i=0;i<level;i++) printf(" ");
35
36 printf("%s\n", folderlist->name);
37
38 dump_folder_list(folderlist->child, level+1);
39 dump_folder_list(folderlist->sibling, level);
40}
41
42int main (int argc, char **argv)
43{
Linus Walleij7fe4a392012-01-12 22:16:19 +010044 LIBMTP_mtpdevice_t *device_list, *device;
Linus Walleij9c6ca022006-04-21 10:24:15 +000045
46 LIBMTP_Init();
Linus Walleij8a199282011-03-05 22:28:41 +010047 printf("Attempting to connect device(s)\n");
tedbullock69a445b2007-02-15 07:41:04 +000048
Linus Walleij7fe4a392012-01-12 22:16:19 +010049 switch(LIBMTP_Get_Connected_Devices(&device_list))
tedbullock69a445b2007-02-15 07:41:04 +000050 {
tedbullock433d2172007-02-23 22:39:12 +000051 case LIBMTP_ERROR_NO_DEVICE_ATTACHED:
Linus Walleij1e4dfea2011-03-05 22:50:39 +010052 printf("mtp-folders: no devices found\n");
tedbullock69a445b2007-02-15 07:41:04 +000053 return 0;
54 case LIBMTP_ERROR_CONNECTING:
55 fprintf(stderr, "mtp-folders: There has been an error connecting. Exit\n");
56 return 1;
57 case LIBMTP_ERROR_MEMORY_ALLOCATION:
58 fprintf(stderr, "mtp-folders: Memory Allocation Error. Exit\n");
59 return 1;
Linus Walleij8a199282011-03-05 22:28:41 +010060
tedbullock69a445b2007-02-15 07:41:04 +000061 /* Unknown general errors - This should never execute */
62 case LIBMTP_ERROR_GENERAL:
63 default:
64 fprintf(stderr, "mtp-folders: Unknown error, please report "
65 "this to the libmtp developers\n");
66 return 1;
67
68 /* Successfully connected at least one device, so continue */
69 case LIBMTP_ERROR_NONE:
Linus Walleij8a199282011-03-05 22:28:41 +010070 printf("mtp-folders: Successfully connected\n");
Linus Walleij9c6ca022006-04-21 10:24:15 +000071 }
Linus Walleij8a199282011-03-05 22:28:41 +010072
tedbullock69a445b2007-02-15 07:41:04 +000073 /* iterate through connected MTP devices */
Linus Walleij7fe4a392012-01-12 22:16:19 +010074 for(device = device_list; device != NULL; device = device->next)
tedbullock69a445b2007-02-15 07:41:04 +000075 {
Linus Walleij1e4dfea2011-03-05 22:50:39 +010076 LIBMTP_devicestorage_t *storage;
Linus Walleij8a199282011-03-05 22:28:41 +010077 char *friendlyname;
Linus Walleij1e4dfea2011-03-05 22:50:39 +010078 int ret;
Linus Walleij8a199282011-03-05 22:28:41 +010079
tedbullockf47695a2007-02-22 22:00:28 +000080 /* Echo the friendly name so we know which device we are working with */
Linus Walleij7fe4a392012-01-12 22:16:19 +010081 friendlyname = LIBMTP_Get_Friendlyname(device);
tedbullockf47695a2007-02-22 22:00:28 +000082 if (friendlyname == NULL) {
83 printf("Friendly name: (NULL)\n");
84 } else {
85 printf("Friendly name: %s\n", friendlyname);
86 free(friendlyname);
87 }
Linus Walleij8a199282011-03-05 22:28:41 +010088
Linus Walleij7fe4a392012-01-12 22:16:19 +010089 LIBMTP_Dump_Errorstack(device);
90 LIBMTP_Clear_Errorstack(device);
tedbullock69a445b2007-02-15 07:41:04 +000091
Linus Walleij1e4dfea2011-03-05 22:50:39 +010092 /* Get all storages for this device */
93 ret = LIBMTP_Get_Storage(device, LIBMTP_STORAGE_SORTBY_NOTSORTED);
94 if (ret != 0) {
95 perror("LIBMTP_Get_Storage()\n");
Linus Walleij7fe4a392012-01-12 22:16:19 +010096 LIBMTP_Dump_Errorstack(device);
97 LIBMTP_Clear_Errorstack(device);
Linus Walleij1e4dfea2011-03-05 22:50:39 +010098 continue;
tedbullock69a445b2007-02-15 07:41:04 +000099 }
100
Linus Walleij1e4dfea2011-03-05 22:50:39 +0100101 /* Loop over storages, dump folder for each one */
102 for (storage = device->storage; storage != 0; storage = storage->next) {
103 LIBMTP_folder_t *folders;
104
105 printf("Storage: %s\n", storage->StorageDescription);
Linus Walleij7fe4a392012-01-12 22:16:19 +0100106 folders = LIBMTP_Get_Folder_List_For_Storage(device, storage->id);
Linus Walleij1e4dfea2011-03-05 22:50:39 +0100107
108 if (folders == NULL) {
109 fprintf(stdout, "No folders found\n");
Linus Walleij7fe4a392012-01-12 22:16:19 +0100110 LIBMTP_Dump_Errorstack(device);
111 LIBMTP_Clear_Errorstack(device);
Linus Walleij1e4dfea2011-03-05 22:50:39 +0100112 } else {
113 dump_folder_list(folders,0);
114 }
115 LIBMTP_destroy_folder_t(folders);
116 }
Linus Walleij9c6ca022006-04-21 10:24:15 +0000117 }
118
Linus Walleij7fe4a392012-01-12 22:16:19 +0100119 LIBMTP_Release_Device_List(device_list);
Linus Walleij9c6ca022006-04-21 10:24:15 +0000120 printf("OK.\n");
tedbullock69a445b2007-02-15 07:41:04 +0000121
122 return 0;
Linus Walleij9c6ca022006-04-21 10:24:15 +0000123}