File: check.cpp

package info (click to toggle)
libspiff 1.0.0-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,240 kB
  • ctags: 1,556
  • sloc: cpp: 10,398; sh: 9,149; makefile: 379; ansic: 83
file content (219 lines) | stat: -rw-r--r-- 5,338 bytes parent folder | download
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/*
 * libSpiff - XSPF playlist handling library
 *
 * Copyright (C) 2006-2008, Sebastian Pipping / Xiph.Org Foundation
 * All rights reserved.
 *
 * Redistribution  and use in source and binary forms, with or without
 * modification,  are permitted provided that the following conditions
 * are met:
 *
 *     * Redistributions   of  source  code  must  retain  the   above
 *       copyright  notice, this list of conditions and the  following
 *       disclaimer.
 *
 *     * Redistributions  in  binary  form must  reproduce  the  above
 *       copyright  notice, this list of conditions and the  following
 *       disclaimer   in  the  documentation  and/or  other  materials
 *       provided with the distribution.
 *
 *     * Neither  the name of the Xiph.Org Foundation nor the names of
 *       its  contributors may be used to endorse or promote  products
 *       derived  from  this software without specific  prior  written
 *       permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS  IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT  NOT
 * LIMITED  TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND  FITNESS
 * FOR  A  PARTICULAR  PURPOSE ARE DISCLAIMED. IN NO EVENT  SHALL  THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL,    SPECIAL,   EXEMPLARY,   OR   CONSEQUENTIAL   DAMAGES
 * (INCLUDING,  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES;  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT  LIABILITY,  OR  TORT (INCLUDING  NEGLIGENCE  OR  OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * Sebastian Pipping, sping@xiph.org
 */

#include <spiff/Spiff.h>
#include <iostream>
#include <cassert>
using namespace Spiff;


#if defined(__WIN32__) || defined(WIN32)
# if defined(UNICODE)
#  define PORT_COUT std::wcout
# else
#  define PORT_COUT std::cout
# endif
#else
# define PORT_COUT std::cout
#endif


class Validator : public SpiffReaderCallback {

private:
	int version;
	bool valid;
	bool fatal;
	bool loose;

public:
	Validator(bool loose)
			: version(-1), valid(true), fatal(false), loose(loose) {

	}

	bool isValid() {
		return loose ? !fatal : valid;
	}

private:
	void setProps(SpiffProps * props) {
		this->version = props->getVersion();
		delete props;
	}

	void handle(int line, int column, int code,
			XML_Char const * description, bool isError) {
		assert(description != NULL);
		PORT_COUT << (isError ? "Error" : "Warning")
				<< " (line " << line
				<< ", col " << column
				<< "): \"" << std::basic_string<XML_Char>(description) << "\""
				<< std::endl << std::flush;
	}

	void notifyFatalError(int line, int column, int errorCode,
			XML_Char const * description) {
		valid = false;
		fatal = true;
		handle(line, column, errorCode, description, true);
	}

	bool handleError(int line, int column, int errorCode,
			XML_Char const * description) {
		valid = false;
		handle(line, column, errorCode, description, !loose);
		return true; // Continue parsing
	}

	bool handleWarning(int line, int column, int warningCode,
			XML_Char const * description) {
		handle(line, column, warningCode, description, false);
		return true; // Continue parsing
	}

	void notifySuccess() {
		if (valid) {
			std::cout << "Valid XSPF-" << this->version << "."
					<< std::endl << std::flush;
		} else if (loose && !fatal) {
			std::cout << "Not valid XSPF, still readable "
					<< "by libSpiff " << SPIFF_VER_MAJOR << "."
					<< SPIFF_VER_MINOR << "." << SPIFF_VER_RELEASE
					<< SPIFF_VER_SUFFIX_ASCII << "."
					<< std::endl << std::flush;
		}
	}

};


int
printUsage() {
	std::cout << "USAGE: spiff_check ([--loose] -|--version)" << std::endl << std::flush;
	return 1;
}


int
printVersion() {
	std::cout << "spiff_check "
			<< SPIFF_VER_MAJOR << "."
			<< SPIFF_VER_MINOR << "."
			<< SPIFF_VER_RELEASE
			<< SPIFF_VER_SUFFIX_ASCII
			<< std::endl << std::flush;
	return 0;
}


int
checkStdin(bool loose) {
	// Read until EOF
	std::stringbuf buffer;
	for (;;) {
		char const c = std::cin.get();
		if (c == -1) {
			break;
		}
		buffer.sputc(c);
	}

	// Convert to byte array
	const std::string input = buffer.str();
	char const * memory = input.c_str();
	int const numBytes = static_cast<int>(strlen(memory));

	// Valid XSPF?
	SpiffReader reader;
	Validator validator(loose);
	int const res = reader.parseMemory(memory, numBytes, &validator,
			_PT("http://www.example.org/"));
	return validator.isValid() ? 0 : 1;
}


int
main(int argc, char ** argv) {
	bool loose = false;
	bool usage = false;
	bool error = false;
	bool fromStdin = false;
	bool version = false;

	for (int i = 1; i < argc; i++) {
		if (argv[i][0] != '-') {
			error = true;
			break;
		}

		if (argv[i][1] == '\0') {
			fromStdin = true;
		} else if (!strcmp(argv[i] + 1, "-version")) {
			version = true;
		} else if (!strcmp(argv[i] + 1, "-loose")) {
			loose = true;
		} else {
			error = true;
		}
	}

	if (!usage && !version && !fromStdin) {
		usage = true;
		error = true;
	}

	if (error) {
		printUsage();
		return 1;
	}

	if (usage) {
		printUsage();
		return 0;
	}

	if (version) {
		printVersion();
		return 0;
	}

	return checkStdin(loose);
}