summaryrefslogtreecommitdiffstats
path: root/dev/afccheck.c
diff options
context:
space:
mode:
Diffstat (limited to 'dev/afccheck.c')
-rw-r--r--dev/afccheck.c133
1 files changed, 133 insertions, 0 deletions
diff --git a/dev/afccheck.c b/dev/afccheck.c
new file mode 100644
index 0000000..028110a
--- /dev/null
+++ b/dev/afccheck.c
@@ -0,0 +1,133 @@
1/*
2 * afccheck.c
3 * creates threads and check communication through AFC is done rigth
4 *
5 * Copyright (c) 2008 Jonathan Beck All Rights Reserved.
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <stdio.h>
23#include <string.h>
24#include <glib.h>
25
26#include <libiphone/libiphone.h>
27
28#define BUFFER_SIZE 20000
29#define NB_THREADS 10
30
31
32typedef struct {
33 iphone_afc_client_t afc;
34 int id;
35} param;
36
37
38void check_afc(gpointer data)
39{
40 //prepare a buffer
41 int buffersize = BUFFER_SIZE * sizeof(int);
42 int *buf = (int *) malloc(buffersize);
43 int *buf2 = (int *) malloc(buffersize);
44 int bytes = 0;
45 //fill buffer
46 int i = 0;
47 for (i = 0; i < BUFFER_SIZE; i++) {
48 buf[i] = ((param *) data)->id * i;
49 }
50
51 //now writes buffer on iphone
52 iphone_afc_file_t file = NULL;
53 char path[50];
54 sprintf(path, "/Buf%i", ((param *) data)->id);
55 iphone_afc_open_file(((param *) data)->afc, path, IPHONE_AFC_FILE_WRITE, &file);
56 iphone_afc_write_file(((param *) data)->afc, file, (char *) buf, buffersize, &bytes);
57 iphone_afc_close_file(((param *) data)->afc, file);
58 file = NULL;
59 if (bytes != buffersize)
60 printf("Write operation failed\n");
61
62 //now read it
63 bytes = 0;
64 iphone_afc_open_file(((param *) data)->afc, path, IPHONE_AFC_FILE_READ, &file);
65 iphone_afc_read_file(((param *) data)->afc, file, (char *) buf2, buffersize, &bytes);
66 iphone_afc_close_file(((param *) data)->afc, file);
67 if (bytes != buffersize)
68 printf("Read operation failed\n");
69
70 //compare buffers
71 for (i = 0; i < BUFFER_SIZE; i++) {
72 if (buf[i] != buf2[i]) {
73 printf("Buffers are differents, stream corrupted\n");
74 break;
75 }
76 }
77
78 //cleanup
79 iphone_afc_delete_file(((param *) data)->afc, path);
80 g_thread_exit(0);
81}
82
83int main(int argc, char *argv[])
84{
85 iphone_lckd_client_t control = NULL;
86 iphone_device_t phone = NULL;
87 GError *err;
88 int port = 0;
89 iphone_afc_client_t afc = NULL;
90
91 if (IPHONE_E_SUCCESS != iphone_get_device(&phone)) {
92 printf("No iPhone found, is it plugged in?\n");
93 return 1;
94 }
95
96 if (IPHONE_E_SUCCESS != iphone_lckd_new_client(phone, &control)) {
97 iphone_free_device(phone);
98 return 1;
99 }
100
101 if (IPHONE_E_SUCCESS == iphone_lckd_start_service(control, "com.apple.afc", &port) && !port) {
102 iphone_lckd_free_client(control);
103 iphone_free_device(phone);
104 fprintf(stderr, "Something went wrong when starting AFC.");
105 return 1;
106 }
107
108 iphone_afc_new_client(phone, 3432, port, &afc);
109
110 //makes sure thread environment is available
111 if (!g_thread_supported())
112 g_thread_init(NULL);
113
114 GThread *threads[NB_THREADS];
115 param data[NB_THREADS];
116
117 int i = 0;
118 for (i = 0; i < NB_THREADS; i++) {
119 data[i].afc = afc;
120 data[i].id = i + 1;
121 threads[i] = g_thread_create((GThreadFunc) check_afc, data + i, TRUE, &err);
122 }
123
124 for (i = 0; i < NB_THREADS; i++) {
125 g_thread_join(threads[i]);
126 }
127
128
129 iphone_lckd_free_client(control);
130 iphone_free_device(phone);
131
132 return 0;
133}