Convert tags to lower case

This commit is contained in:
Alexander S. Aganichev 2003-02-20 14:17:33 +00:00
parent b36593ba88
commit dbb2ccc327

View File

@ -1,114 +1,114 @@
// This may look like C code, but it is really -*- C++ -*- // This may look like C code, but it is really -*- C++ -*-
// ------------------------------------------------------------------ // ------------------------------------------------------------------
// The Goldware Library // The Goldware Library
// Copyright (C) 2002 Alexander S. Aganichev // Copyright (C) 2002 Alexander S. Aganichev
// ------------------------------------------------------------------ // ------------------------------------------------------------------
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either // License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version. // version 2 of the License, or (at your option) any later version.
// //
// This library is distributed in the hope that it will be useful, // This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details. // Library General Public License for more details.
// //
// You should have received a copy of the GNU Library General Public // You should have received a copy of the GNU Library General Public
// License along with this program; if not, write to the Free // License along with this program; if not, write to the Free
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, // Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
// MA 02111-1307, USA // MA 02111-1307, USA
// ------------------------------------------------------------------ // ------------------------------------------------------------------
// $Id$ // $Id$
// ------------------------------------------------------------------ // ------------------------------------------------------------------
// Read areas from Synchronet BBS // Read areas from Synchronet BBS
// ------------------------------------------------------------------ // ------------------------------------------------------------------
#include <cstdlib> #include <cstdlib>
#include <gcrcall.h> #include <gcrcall.h>
#include <gstrall.h> #include <gstrall.h>
#undef GCFG_NOSYNCHRONET #undef GCFG_NOSYNCHRONET
#include <gedacfg.h> #include <gedacfg.h>
#include <gs_sync.h> #include <gs_sync.h>
// ------------------------------------------------------------------ // ------------------------------------------------------------------
// Synchronet configuration reader // Synchronet configuration reader
void gareafile::ReadSynchronet(char* tag) { void gareafile::ReadSynchronet(char* tag) {
Path file, path; Path file, path;
char options[80]; char options[80];
ushort shrt, i; ushort shrt, i;
grp_t grp; grp_t grp;
sub_t sub; sub_t sub;
strcpy(options, tag); strcpy(options, tag);
char* ptr = strtok(tag, " \t"); char* ptr = strtok(tag, " \t");
while(ptr) { while(ptr) {
if(*ptr != '-') { if(*ptr != '-') {
strcpy(file, ptr); strcpy(file, ptr);
strschg_environ(file); strschg_environ(file);
} }
ptr = strtok(NULL, " \t"); ptr = strtok(NULL, " \t");
} }
if(not fexist(file)) { if(not fexist(file)) {
AddBackslash(file); AddBackslash(file);
strcat(file, "msgs.cnf"); strcat(file, "msgs.cnf");
} }
extractdirname(path, file); extractdirname(path, file);
FILE* in = fsopen(file, "rb", sharemode); FILE* in = fsopen(file, "rb", sharemode);
if(in) { if(in) {
setvbuf(in, NULL, _IOFBF, 8192); setvbuf(in, NULL, _IOFBF, 8192);
if(not quiet) if(not quiet)
std::cout << "* Reading " << file << std::endl; std::cout << "* Reading " << file << std::endl;
// Skip header: // Skip header:
// max_qwkmsgs 4 // max_qwkmsgs 4
// mail_maxcrcs 4 // mail_maxcrcs 4
// mail_maxage 2 // mail_maxage 2
// unused (NULL) 512 // unused (NULL) 512
// unused (0xff) 512 // unused (0xff) 512
fseek(in, 1034, SEEK_CUR); fseek(in, 1034, SEEK_CUR);
if(fread(&shrt, sizeof(ushort), 1, in) == 1) { if(fread(&shrt, sizeof(ushort), 1, in) == 1) {
for(i = 0; i < shrt; i++) { for(i = 0; i < shrt; i++) {
if(fread(&grp, sizeof(grp_t), 1, in) != 1) if(fread(&grp, sizeof(grp_t), 1, in) != 1)
break; break;
} }
} }
if(fread(&shrt, sizeof(ushort), 1, in) == 1) { if(fread(&shrt, sizeof(ushort), 1, in) == 1) {
for(i = 0; i < shrt; i++) { for(i = 0; i < shrt; i++) {
if(fread(&sub, sizeof(sub_t), 1, in) != 1) if(fread(&sub, sizeof(sub_t), 1, in) != 1)
break; break;
AreaCfg aa; AreaCfg aa;
aa.reset(); aa.reset();
aa.type = GMB_ECHO; aa.type = GMB_ECHO;
aa.attr = attribsecho; aa.attr = attribsecho;
aa.msgbase = GMB_SMB; aa.msgbase = GMB_SMB;
aa.setechoid((sub.misc & SUB_FIDO) ? sub.sname : sub.code); aa.setechoid((sub.misc & SUB_FIDO) ? sub.sname : sub.code);
aa.setdesc(sub.lname); aa.setdesc(sub.lname);
aa.groupid = 0x8000 + sub.grp; aa.groupid = 0x8000 + sub.grp;
if(*sub.data_dir) if(*sub.data_dir)
MakePathname(file, sub.data_dir, sub.code); MakePathname(file, sub.data_dir, strlwr(sub.code));
else else
MakePathname(file, path, sub.code); MakePathname(file, path, strlwr(sub.code));
aa.setpath(file); aa.setpath(file);
aa.aka = primary_aka; aa.aka = primary_aka;
aa.aka.set(sub.faddr); aa.aka.set(sub.faddr);
if(*sub.origline) if(*sub.origline)
aa.setorigin(sub.origline); aa.setorigin(sub.origline);
AddNewArea(aa); AddNewArea(aa);
} }
} }
} }
fclose(in); fclose(in);
} }
// ------------------------------------------------------------------ // ------------------------------------------------------------------