]> git.treefish.org Git - usetaglib.git/blob - usetaglib.cpp
Reenabled help.
[usetaglib.git] / usetaglib.cpp
1 /* Copyright (C) 2015 Alexander Schmidt <alex@treefish.org>
2  *
3  * This program is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 3 of the License, or
6  * (at your option) any later version.
7  * 
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  * 
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>. 
15  */
16
17 #include <iostream>
18 #include <iomanip>
19 #include <iostream>
20 #include <taglib/fileref.h>
21 #include <taglib/tag.h>
22 #include <taglib/tpropertymap.h>
23 #include <taglib/tstringlist.h>
24 #include <getopt.h>
25 #include <vector>
26
27 using namespace std;
28
29 enum action {LIST, REPLACE, INSERT, ERASE, AUDIO};
30 typedef pair<action,string> actionpair;
31 typedef vector<actionpair> actionqueue;
32 typedef pair<string,string> tagpair;
33
34 TagLib::StringList argToStringList (const string &rawtagarg)
35 {
36   TagLib::StringList newlist;
37
38   size_t delpos = 0;
39   while (1) {
40     size_t nextdelpos = rawtagarg.find('=', delpos+1);
41     if (nextdelpos == -1)
42       break;
43     newlist.append(rawtagarg.substr(delpos,nextdelpos-delpos));
44     delpos = nextdelpos+1;
45   }
46   newlist.append(rawtagarg.substr(delpos,string::npos));  
47
48   return newlist;
49 }
50
51 tagpair splitToTagPair (const string &rawarg)
52 {
53   const size_t delpos = rawarg.find('=');
54   return make_pair(rawarg.substr(0, delpos), rawarg.substr(delpos+1, string::npos));
55 }
56
57 void action_eraseTag (TagLib::PropertyMap &propmap, const string &key)
58 {
59   propmap.erase(key);
60 }
61
62 void action_replaceTag (TagLib::PropertyMap &propmap, const tagpair &tagPair)
63 {
64   propmap.replace(tagPair.first, argToStringList(tagPair.second));
65 }
66
67 void action_insertTag (TagLib::PropertyMap &propmap, const tagpair &tagPair)
68 {
69   propmap.insert(tagPair.first, argToStringList(tagPair.second));
70 }
71
72 int action_printTags (const TagLib::FileRef f, TagLib::PropertyMap &propmap)
73 {
74   if(f.tag()) {
75     unsigned int longest = 0;
76     for(TagLib::PropertyMap::ConstIterator i = propmap.begin(); i != propmap.end(); ++i) {
77       if (i->first.size() > longest) {
78         longest = i->first.size();
79       }
80     }
81     cout << "-- TAG (properties) --" << endl;
82     for(TagLib::PropertyMap::ConstIterator i = propmap.begin(); i != propmap.end(); ++i) {
83       for(TagLib::StringList::ConstIterator j = i->second.begin(); j != i->second.end(); ++j) {
84         cout << i->first << "=" << *j << endl;
85       }
86     }
87     return 0;
88   }
89   else
90     return 1;
91 }
92
93 int action_printAudio (const TagLib::FileRef f)
94 {
95   if(f.audioProperties()) {
96     TagLib::AudioProperties *properties = f.audioProperties();
97     int seconds = properties->length() % 60;
98     int minutes = (properties->length() - seconds) / 60;
99     cout << "-- AUDIO --" << endl;
100     cout << "BITRATE=" << properties->bitrate() << endl;
101     cout << "SAMPLERATE=" << properties->sampleRate() << endl;
102     cout << "CHANNELS=" << properties->channels() << endl;
103     cout << "LENGTH=" << minutes << ":" << setfill('0') << setw(2) << seconds << endl;
104     return 0;
105   }
106   else
107     return 1;
108 }
109
110 void printHelp ()
111 {  
112   cout << "Usage: usetaglib [ACTION]... [FILE]..." << endl;
113   cout << "List and edit tags on mediafiles in formats supported by libtag." << endl;
114   cout << endl;
115   cout << "-h, --help   Show this help" << endl;
116   cout << endl;
117   cout << "ACTIONS" << endl;
118   cout << setfill(' ') << setw(37) << left << "  -l, --list"
119        << "list all tags (implicit if no action specified)"<< endl;
120   cout << setfill(' ') << setw(37) << left << "  -a, --listaudio"
121        << "show audio information"<< endl;
122   cout << setfill(' ') << setw(37) << left << "  -e, --erase=TAGNAME"
123        << "erase tag TAGNAME"<< endl;
124   cout << setfill(' ') << setw(37) << left << "  -r, --replace=TAGNAME=TAGVALSPEC"
125        << "replace tag TAGNAME with value TAGVALSPEC"<< endl;
126   cout << setfill(' ') << setw(37) << left << "  -i, --insert=TAGNAME=TAGVALSPEC"
127        << "insert value TAGVALSPEC for tag TAGNAME"<< endl;
128   cout << endl;
129   cout << "TAGVALSPEC" << endl;
130   cout << "  a list of values separated by '=': val1=val2=val3..." << endl;
131   cout << endl;
132   cout << "EXAMPLES" << endl;
133   cout << "  usetaglib file.ogg" << endl;
134   cout << "  usetaglib -e ALBUM file.flac" << endl;
135   cout << "  usetaglib -i ARTIST=Horst=Hubert file.mp3" << endl;
136   cout << "  usetaglib -r ARTIST=Horst file.ogg" << endl;
137 }
138   
139 int main(int argc, char *argv[])
140 {
141   int c;
142   actionqueue requestedActions;
143   
144   while (1)
145     {
146       static struct option long_options[] =
147         {
148           {"help",      no_argument,       0, 'h'},
149           {"list",      no_argument,       0, 'l'},
150           {"listaudio", no_argument,       0, 'a'},
151           {"insert",    required_argument, 0, 'i'},
152           {"erase",     required_argument, 0, 'e'},
153           {"replace",   required_argument, 0, 'r'},
154           {0, 0, 0, 0}
155         };
156
157       int option_index = 0;      
158       c = getopt_long (argc, argv, "hlai:e:r:",
159                        long_options, &option_index);
160
161       if (c == -1)
162         break;
163
164       switch (c)
165         {
166         case 0:
167           if (long_options[option_index].flag != 0)
168             break;
169
170         case 'h':
171           printHelp();
172           return 0;
173           break;
174           
175         case 'l':
176           requestedActions.push_back( make_pair(LIST, "") );
177           break;
178
179         case 'a':
180           requestedActions.push_back( make_pair(AUDIO, "") );
181           break;
182
183         case 'i':
184           requestedActions.push_back( make_pair(INSERT, optarg) );
185           break;
186
187         case 'e':
188           requestedActions.push_back( make_pair(ERASE, optarg) );
189           break;
190
191         case 'r':
192           requestedActions.push_back( make_pair(REPLACE, optarg) );
193           break;
194
195         case '?':
196           break;
197
198         default:
199           abort ();
200         }
201     }
202
203   if ( optind == argc ) {
204     printHelp();
205     return 0;
206   }
207   
208   if (requestedActions.size() == 0)
209     requestedActions.push_back( make_pair(LIST, "") );
210         
211   for(int i = optind; i < argc; i++) {
212     cout << "******************** \"" << argv[i] << "\" ********************" << endl;
213     TagLib::FileRef f(argv[i]);
214
215     if(f.isNull())
216       continue;
217
218     TagLib::PropertyMap propmap = f.file()->properties();    
219     bool FCHANGED = false;
220     
221     for (actionqueue::iterator actit = requestedActions.begin(); actit != requestedActions.end(); ++actit) {
222       switch (actit->first) {
223       case LIST:
224         action_printTags(f, propmap);
225         break;
226         
227       case AUDIO:
228         action_printAudio(f);
229         break;
230         
231       case ERASE:
232         action_eraseTag(propmap, actit->second);
233         FCHANGED = true;
234         break;
235         
236       case REPLACE:
237         action_replaceTag(propmap, splitToTagPair(actit->second));
238         FCHANGED = true;
239         break;
240
241       case INSERT:
242         action_insertTag(propmap, splitToTagPair(actit->second));
243         FCHANGED = true;
244         break;
245       }
246     }
247
248     if (FCHANGED) {
249       f.file()->setProperties(propmap);
250       f.file()->save();
251     }
252   }
253   
254   return 0;
255 }