//
// aegis - project change supervisor
// Copyright (C) 2005, 2006, 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
#include
#include
#include
#include
#include
#include
#ifdef SOURCE_FORGE_HACK
static void
fix_magic_path()
{
static bool fixed;
if (fixed)
return;
fixed = true;
const char *cp = getenv("MAGIC");
nstring_list files;
files.split(nstring(cp), ":");
files.push_back_unique("/etc/magic");
files.push_back_unique("/usr/share/file/magic");
files.push_back_unique("/usr/share/misc/magic");
files.push_back_unique("/usr/share/misc/file/magic");
env_set("MAGIC", files.unsplit(":").c_str());
}
#endif
nstring
os_magic_file(const nstring &filename)
{
#ifdef SOURCE_FORGE_HACK
fix_magic_path();
#endif
os_become_must_be_active();
magic_t cookie = magic_open(MAGIC_MIME | MAGIC_SYMLINK);
if (!cookie)
{
fail:
sub_context_ty sc;
sc.var_set_string("File_Name", filename);
sc.var_set_charstar("ERRNO", magic_error(cookie));
sc.var_override("ERRNO");
sc.fatal_intl(i18n("read $filename: $errno"));
// NOTREACHED
}
if (magic_load(cookie, 0))
goto fail;
const char *content_type = magic_file(cookie, filename.c_str());
if (!content_type)
goto fail;
if (!*content_type)
{
// Make sure we never return the empty string.
content_type = "text/plain; charset=us-ascii";
}
nstring result(content_type);
magic_close(cookie);
content_type = 0; // not valid after magic_close
//
// The BSD libmagic is weird. It returns stuff like
// "text/plain charset=ascii" so we need to insert a
// semicolon before the space. If there is no space,
// assume there is no charset either.
//
if (!strchr(result.c_str(), ';'))
{
const char *start = result.c_str();
const char *sp = strchr(start, ' ');
if (sp)
{
const char *end = start + result.size();
result = nstring(start, sp - start) + ";" + nstring(sp, end - sp);
}
}
return result;
}
nstring
os_magic_file(string_ty *filename)
{
// just for compatibility
return os_magic_file(nstring(filename));
}