%{ /*- * APM (Advanced Power Management) Event Dispatcher * * Copyright (c) 1999 Mitsuru IWASAKI * Copyright (c) 1999 KOIE Hidetaka * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. * * $FreeBSD: src/usr.sbin/apmd/apmdlex.l,v 1.2.2.1 2001/08/13 17:30:30 nsayer Exp $ */ #include #include #include #include "apmd.h" #include "y.tab.h" int lineno; int first_time; %} %option noinput %option nounput %s TOP %% %{ if (first_time) { BEGIN TOP; lineno = 1; first_time = 0; } %} [ \t]+ ; \n lineno++; , { return COMMA; } ; { return SEMICOLON; } #.*$ ; apm_event { return APMEVENT; } NOEVENT { yylval.ev = EVENT_NOEVENT; return EVENT; } STANDBYREQ { yylval.ev = EVENT_STANDBYREQ; return EVENT; } SUSPENDREQ { yylval.ev = EVENT_SUSPENDREQ; return EVENT; } NORMRESUME { yylval.ev = EVENT_NORMRESUME; return EVENT; } CRITRESUME { yylval.ev = EVENT_CRITRESUME; return EVENT; } BATTERYLOW { yylval.ev = EVENT_BATTERYLOW; return EVENT; } POWERSTATECHANGE { yylval.ev = EVENT_POWERSTATECHANGE; return EVENT; } UPDATETIME { yylval.ev = EVENT_UPDATETIME; return EVENT; } CRITSUSPEND { yylval.ev = EVENT_CRITSUSPEND; return EVENT; } USERSTANDBYREQ { yylval.ev = EVENT_USERSTANDBYREQ; return EVENT; } USERSUSPENDREQ { yylval.ev = EVENT_USERSUSPENDREQ; return EVENT; } STANDBYRESUME { yylval.ev = EVENT_STANDBYRESUME; return EVENT; } CAPABILITIESCHANGE { yylval.ev = EVENT_CAPABILITIESCHANGE; return EVENT; } apm_battery { return APMBATT; } charging { return BATTCHARGE; } discharging { return BATTDISCHARGE; } [0-9]+% { yylval.i = atoi(yytext); return BATTPERCENT; } [0-9]+[Mm] { yylval.i = -atoi(yytext); return BATTTIME; } exec { return EXECCMD; } reject { return REJECTCMD; } \{ { return BEGINBLOCK; } \} { return ENDBLOCK; } \"[^"]+\" { int len = strlen(yytext) - 2; if ((yylval.str = (char *) malloc(len + 1)) == NULL) goto out; memcpy(yylval.str, yytext + 1, len); yylval.str[len] = '\0'; out: return STRING; } [^"{},;#\n\t ]+ { yylval.str = strdup(yytext); return UNKNOWN; } %% void yyerror(const char *s) { syslog(LOG_ERR, "line %d: %s%s %s.\n", lineno, yytext, yytext?":":"", s); }