-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathisd.cpp
158 lines (125 loc) · 3.02 KB
/
isd.cpp
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#include "piecedev.h"
#include "piecefat.h"
#include <string>
#include <algorithm>
#include <cstdio>
#include <getopt.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
static void usage( std::FILE *out )
{
std::fputs("isd -c -- device check only\n",out);
std::fputs("isd -d filename -- delete file\n",out);
std::fputs("isd -F -- format file system\n",out);
std::fputs("isd -f -- show file system status\n",out);
std::fputs("isd -l -- list file\n",out);
std::fputs("isd -R filename -- run srf file\n",out);
std::fputs("isd -r filename -- download file\n",out);
std::fputs("isd -s filename -- upload file\n",out);
std::fputs("isd -v -- show version\n",out);
}
static int download( n::piece::Device &d, n::piece::Fs &fs, char const *fname )
{
n::piece::Fs::File file( fs, fname );
std::FILE *out = std::fopen( fname, "wb" );
if ( out == NULL ) {
std::perror("fopen");
return 1;
}
file.download( out );
return 0;
}
static int upload( n::piece::Device &d, n::piece::Fs &fs, char const *fname )
{
struct stat buf;
if ( stat( fname, &buf ) < 0 ) {
std::perror("stat");
return 1;
}
std::string uploadFileName(fname);
size_t pathDelimiterPos = uploadFileName.rfind('/');
if (pathDelimiterPos != std::string::npos)
uploadFileName.erase(0, pathDelimiterPos + 1);
std::transform(uploadFileName.begin(), uploadFileName.end(), uploadFileName.begin(), std::tolower);
size_t size = buf.st_size;
FILE *fp = fopen( fname, "rb" );
if ( fp == NULL ) {
std::perror("fopen");
return 1;
}
fs.createFile( uploadFileName.c_str(), size );
n::piece::Fs::File file( fs, uploadFileName.c_str() );
file.upload( fp );
fclose( fp );
return 0;
}
static int run_srf_file( n::piece::Device &d, char *fname )
{
struct stat buf;
if ( stat( fname, &buf ) < 0 ) {
std::perror("stat");
return 1;
}
FILE *fp = fopen( fname, "rb" );
if ( fp == NULL ){
std::perror("fopen");
return 1;
}
d.setAppStat( n::piece::Device::APP_STOP );
d.uploadSrf( fp );
d.setAppStat( n::piece::Device::APP_RUN );
fclose( fp );
return 0;
}
static int fs_status( n::piece::Device &d, n::piece::Fs &fs )
{
size_t size = fs.getFreeBlockCount();
printf("%5zu sectors (%zu bytes) free\n", size, size*4096);
return 0;
}
int main( int argc, char **argv )
{
try {
n::piece::Device d;
n::piece::Fs fs( d );
while ( 1 ) {
int c = getopt( argc, argv, "lr:d:c?hs:fFvR:" );
switch ( c ) {
case 'l':
fs.dumpDir();
return fs_status( d, fs );
case '?':
case 'h':
usage( stdout );
return 0;
case 'r':
return download( d, fs, optarg );
case 'd':
fs.removeFile( optarg );
return 0;
case 'c':
return 0;
case 's':
return upload( d, fs, optarg );
case 'f':
return fs_status( d, fs );
case 'F':
fs.format();
return 0;
case 'v':
d.dumpVersion();
return 0;
case 'R':
return run_srf_file( d, optarg );
default:
usage( stderr );
return 1;
}
}
} catch ( const char *err ) {
std::fprintf( stderr, "%s\n", err );
return 1;
}
return 0;
}