mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
2 bugs: - interval offset of -1 causes a crash in htmlSummary - interval offset of form nnn e+0n parses incorrectly Also remove silly -wreorder warning in ridefile.h
88 lines
3.0 KiB
Plaintext
88 lines
3.0 KiB
Plaintext
%{
|
|
/*
|
|
* Copyright (c) 2010 Mark Liversedge (liversedge@gmail.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "JsonRideFile.h"
|
|
|
|
// we use stdio for reading from FILE *JsonRideFilein
|
|
// because thats what lex likes to do, and since we're
|
|
// reading files that seems ok anyway
|
|
#include <stdio.h>
|
|
|
|
// The parser defines the token values for us
|
|
// so lets include them before declaring the
|
|
// token patterns
|
|
#include "JsonRideFile_yacc.h"/* generated by the scanner */
|
|
|
|
// the options below tell flex to no bother with
|
|
// yywrap since we only ever read a single file
|
|
// anyway. And yyunput() isn't needed for our
|
|
// parser, we read in one pass with no swanky
|
|
// interactions
|
|
|
|
%}
|
|
%option noyywrap
|
|
%option nounput
|
|
%option noinput
|
|
%%
|
|
\"RIDE\" return RIDE;
|
|
\"STARTTIME\" return STARTTIME;
|
|
\"RECINTSECS\" return RECINTSECS;
|
|
\"DEVICETYPE\" return DEVICETYPE;
|
|
\"IDENTIFIER\" return IDENTIFIER;
|
|
\"OVERRIDES\" return OVERRIDES;
|
|
\"TAGS\" return TAGS;
|
|
\"INTERVALS\" return INTERVALS;
|
|
\"NAME\" return NAME;
|
|
\"START\" return START;
|
|
\"STOP\" return STOP;
|
|
\"REFERENCES\" return REFERENCES;
|
|
\"SAMPLES\" return SAMPLES;
|
|
\"SECS\" return SECS;
|
|
\"KM\" return KM;
|
|
\"WATTS\" return WATTS;
|
|
\"NM\" return NM;
|
|
\"CAD\" return CAD;
|
|
\"KPH\" return KPH;
|
|
\"HR\" return HR;
|
|
\"ALT\" return ALTITUDE; // ALT clashes with qtnamespace.h:46
|
|
\"LAT\" return LAT;
|
|
\"LON\" return LON;
|
|
\"HEADWIND\" return HEADWIND;
|
|
\"SLOPE\" return SLOPE;
|
|
\"TEMP\" return TEMP;
|
|
\"LRBALANCE\" return LRBALANCE;
|
|
[-+]?[0-9]+ return INTEGER;
|
|
[-+]?[0-9]+e-[0-9]+ return FLOAT;
|
|
[-+]?[0-9]+\.[-+e0-9]* return FLOAT;
|
|
\"([^\"]|\\\")*\" return STRING; /* contains non-quotes or escaped-quotes */
|
|
[ \n\t\r] ; /* we just ignore whitespace */
|
|
. return JsonRideFiletext[0]; /* any other character, typically :, { or } */
|
|
%%
|
|
|
|
// Older versions of flex (prior to 2.5.9) do not have the destroy function
|
|
// Or We're not using GNU flex then we also won't have a destroy function
|
|
#if !defined(FLEX_SCANNER) || (YY_FLEX_SUBMINOR_VERSION < 9)
|
|
int JsonRideFilelex_destroy(void) { return 0; }
|
|
#endif
|
|
|
|
void JsonRideFile_setString(QString p)
|
|
{
|
|
JsonRideFile_scan_string(p.toLocal8Bit().data());
|
|
}
|