%{ /******************************************************************************* * Copyright (c) 2007, Perforce Software, Inc. 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 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 PERFORCE * SOFTWARE, INC. 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. *******************************************************************************/ /******************************************************************************* * Lexer for p4dctl ******************************************************************************/ /* * Definition section */ #include <dirent.h> #include <sys/stat.h> #include "parsesupp.h" #include "configparse.h" int lineno = 1; const char *fname = 0; static void include_push() { parser_ctx *pc = malloc( sizeof( parser_ctx ) ); pc->fname = fname; pc->lineno = lineno; pc->state = YY_CURRENT_BUFFER; parser_push( pc ); } static int include_pop() { parser_ctx *pc = parser_pop(); if( pc ) { fname = pc->fname; lineno = pc->lineno; yy_delete_buffer( YY_CURRENT_BUFFER ); yy_switch_to_buffer( pc->state ); free( pc ); return 1; } return 0; } static int include_file( const char *path ) { yyin = fopen( path, "r" ); if( !yyin ) yyerror( "Error opening include file"); include_push(); fname = path; lineno = 0; yy_switch_to_buffer(yy_create_buffer( yyin, YY_BUF_SIZE )); return 1; } static int include_dir( const char *path ) { struct dirent *ent; DIR *dir = opendir( path ); static const char *extension = ".conf"; if( !dir ) yyerror( "Failed to open directory" ); while( ent = readdir( dir ) ) { char p[1024]; int len; int elen; char *t; if( !strcmp( ent->d_name, "." ) ) continue; if( !strcmp( ent->d_name, ".." ) ) continue; len = strlen( ent->d_name ); elen = strlen( extension ); // If the name's too short to be well formed, move on. if( len <= elen ) continue; // Does it end in .conf? t = ent->d_name + len - elen; if( strcmp( t, extension ) ) continue; snprintf( p, 1024, "%s/%s", path, ent->d_name ); if( !include_file( p ) ) return 0; } closedir( dir ); return 1; } %} %s INCLUDE %% [ \t]* { } \n { lineno++; } <INCLUDE>[^ \t\n]+ { struct stat stb; if(stat( yytext, &stb ) ) yyerror( "Error accessing include file" ); if( S_ISREG( stb.st_mode ) ) include_file( strdup( yytext ) ); else if( S_ISDIR( stb.st_mode ) ) include_dir( strdup( yytext ) ); else yyerror( "Can't include files of this type" ); BEGIN( INITIAL ); } <<EOF>> { if( !include_pop() ) { yyterminate(); } } #[^\n]* { } [0-9]+ { yylval.sval = strdup(yytext); return NUMBER; } include { BEGIN( INCLUDE ); } [A-Za-z][A-Za-z0-9]* { yylval.sval = strdup(yytext); return WORD; } (\/[-_A-Za-z0-9]+)+ { yylval.sval = strdup(yytext); return PATH; } [./A-Za-z0-9][-_.=:;/A-Za-z0-9]* { yylval.sval = strdup(yytext); return WORD; } \"[^"]*\" { yytext[ yyleng - 1] = 0; yylval.sval = strdup(yytext+1); return STRING; } . { return yytext[0]; }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#5 | 8326 | Tony Smith |
Some significant updates to p4dctl. 1. Support for interacting with SSL enabled servers 2. New command 'list' to list configured servers p4dctl [ options ] list [ -t type ] -a p4dctl [ options ] list [ -t type ] servername 3. New command 'env' to allow you to fetch arbitrary settings from a configured server in a form suitable for use with 'eval'. p4dctl [ options ] env [ -t type ] -a var [ var... ] p4dctl [ options ] env [ -t type ] servername var [ var... ] 4. Supply a new manpage for p4dctl |
||
#4 | 8172 | Tony Smith |
Update p4dctl with a few fixes and enhancements: 1. New 'Enable=(true|false)' flag for servers so you can temporarily prevent servers from starting. 2. Ensure exit status is correct when commands partially fail. For example, start now exits with non-zero status if there are some failures. 3. Remove debug printf() that was left over from the change that introduced include files. |
||
#3 | 8093 | Tony Smith |
Make p4dctl support including configuration files from a specified path. This change allows it to support including from both files and directories. e.g. include /path/to/file.conf include /path/to/dir A common use of this might be something like: include /etc/p4d.d |
||
#2 | 7581 | Tony Smith |
Clean up use of yytext, which was incorrect and causes problems with some breeds of yacc. yytext is for the lexer, yylval for the parser, and the twain shall only meet in the lexer code. Thus configlex.l ensures that yytext is strdup'd into yylval.sval before we hand it over to the parser. Fix for bug reported by Mark Allender |
||
#1 | 5945 | Tony Smith |
Release p4dctl, a program for starting/stopping Perforce services on Unix operating systems. Similar to, and developed in concert with, Sven Erik Knop's p4dcfg. For example: p4dctl start -a Can start multiple P4D, P4P, P4Web, or P4FTP servers in one easy command line. It can be executed by root, or by the 'owners' of the configured services and it maintains pidfiles no matter who uses it (so they remain accurate). An init script using p4dctl will typically just use: p4dctl start -a p4dctl stop -a p4dctl restart -a And check the exit status. |