mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-11-05 16:43:26 +00:00
159cc171a9
Now gtk widgets are in the same Gitg namespace
107 lines
2.4 KiB
Vala
107 lines
2.4 KiB
Vala
/*
|
|
* This file is part of gitg
|
|
*
|
|
* Copyright (C) 2012 - Jesse van den Kieboom
|
|
*
|
|
* gitg 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 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* gitg 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 gitg. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace Gitg
|
|
{
|
|
class DiffViewRequestResource : DiffViewRequest
|
|
{
|
|
private File? d_resource;
|
|
|
|
public DiffViewRequestResource(DiffView? view, WebKit.URISchemeRequest request, Soup.URI uri)
|
|
{
|
|
base(view, request, uri);
|
|
d_view = null;
|
|
d_hasView = false;
|
|
}
|
|
|
|
private File ensure_resource()
|
|
{
|
|
if (d_resource != null)
|
|
{
|
|
return d_resource;
|
|
}
|
|
|
|
var path = Soup.URI.decode(d_uri.get_path());
|
|
|
|
d_resource = File.new_for_uri("resource://" + path);
|
|
|
|
// For debugging
|
|
if (Environment.get_variable("GITG_GTK_DIFF_VIEW_DEBUG") == "local")
|
|
{
|
|
var pre = "/org/gnome/gitg/gtk/diff-view";
|
|
|
|
if (path.has_prefix(pre))
|
|
{
|
|
path = path.substring(pre.length);
|
|
}
|
|
|
|
File? repopath;
|
|
|
|
try
|
|
{
|
|
repopath = Ggit.Repository.discover(File.new_for_path("."));
|
|
}
|
|
catch
|
|
{
|
|
repopath = null;
|
|
}
|
|
|
|
if (repopath != null)
|
|
{
|
|
d_resource = File.new_for_path(Path.build_filename(repopath.get_path(), "..", "libgitg", "resources", path));
|
|
}
|
|
else
|
|
{
|
|
d_resource = File.new_for_path(Path.build_filename("resources", path));
|
|
}
|
|
}
|
|
|
|
return d_resource;
|
|
}
|
|
|
|
public override InputStream? run_async(Cancellable? cancellable) throws GLib.Error
|
|
{
|
|
var f = ensure_resource();
|
|
|
|
var stream = f.read(cancellable);
|
|
|
|
try
|
|
{
|
|
var info = f.query_info(FileAttribute.STANDARD_CONTENT_TYPE +
|
|
"," +
|
|
FileAttribute.STANDARD_SIZE,
|
|
0,
|
|
cancellable);
|
|
|
|
d_size = info.get_size();
|
|
|
|
var ctype = info.get_content_type();
|
|
|
|
if (ctype != null)
|
|
{
|
|
d_mimetype = ContentType.get_mime_type(ctype);
|
|
}
|
|
} catch {}
|
|
|
|
return stream;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ex:ts=4 noet
|