//
// aegis - project change supervisor
// Copyright (C) 2005-2008 Peter Miller
//
// 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 3 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, see
// .
//
#include // for assert
#include
#include
#include
#include
#include
#include
validation_files_crlf::~validation_files_crlf()
{
}
validation_files_crlf::validation_files_crlf()
{
}
bool
validation_files_crlf::check(change::pointer cp, fstate_src_ty *src)
{
nstring path(change_file_path(cp, src));
assert(!path.empty());
if (path.empty())
return true;
os_become_orig();
bool crlf_seen = false;
bool nul_seen = false;
input ip = input_file_open(path);
int state = 0;
for (;;)
{
int c = ip->getch();
if (c < 0)
break;
if (c == 0)
{
//
// These days, the only difference between text files
// and binary files is the presence of NUL characters.
// All other characters can be part of an international
// character set encoding.
//
nul_seen = true;
}
if (state == '\r' && c == '\n')
crlf_seen = true;
state = c;
}
ip.close();
os_become_undo();
bool result = nul_seen || !crlf_seen;
if (!result)
{
sub_context_ty sc;
sc.var_set_string("File_Name", src->file_name);
change_error(cp, &sc, i18n("$filename: dos line termination"));
}
return result;
}