1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
//
// GeckoHtmlRender.cs: Implementation of IHtmlRender that uses Gecko
//
// Author: Mario Sopena
// Author: Rafael Ferreira <raf@ophion.org>
//
using System;
using System.Text;
using System.IO;
using System.Collections;
using Gecko;
using Gtk;
#if USE_GTKHTML_PRINT
using Gnome;
#endif
namespace Monodoc {
public class GeckoHtmlRender : IHtmlRender {
//Images are cached in a temporal directory
Hashtable cache_imgs;
string tmpPath;
WebControl html_panel;
Viewport panel;
public Widget HtmlPanel {
get { return (Widget) panel; }
}
string url;
public string Url {
get { return url; }
}
RootTree help_tree;
public event EventHandler OnUrl;
public event EventHandler UrlClicked;
public GeckoHtmlRender (RootTree help_tree)
{
this.help_tree = help_tree;
}
public bool Initialize ()
{
tmpPath = Path.Combine (Path.GetTempPath (), "monodoc");
try {
string mozHome = System.Environment.GetEnvironmentVariable ("MOZILLA_HOME");
if (mozHome != null)
WebControl.CompPath = mozHome;
html_panel = new WebControl (tmpPath, "MonodocGecko");
}
catch (Exception ex) {
Console.WriteLine (ex.Message);
Console.WriteLine (ex.StackTrace);
return false;
}
html_panel.Show(); //due to Gecko bug
html_panel.OpenUri += OnOpenUri;
html_panel.LinkMsg += OnLinkMsg;
panel = new Viewport();
panel.Add (html_panel);
cache_imgs = new Hashtable();
return true;
}
public Capabilities Capabilities
{
get { return Capabilities.Css | Capabilities.Fonts; }
}
public string Name
{
get { return "Gecko"; }
}
protected void OnOpenUri (object o, OpenUriArgs args)
{
url = CheckUrl (args.AURI);
// if the file is cached on disk, return
if (url.StartsWith ("file:///") || url.StartsWith("javascript:", StringComparison.InvariantCultureIgnoreCase))
return;
if (UrlClicked != null)
UrlClicked (this, new EventArgs());
args.RetVal = true; //this prevents Gecko to continue processing
}
protected void OnLinkMsg (object o, EventArgs args)
{
url = CheckUrl (html_panel.LinkMessage);
if (OnUrl != null)
OnUrl (this, args);
}
// URL like T:System.Activator are lower cased by gecko to t.;System.Activator
// so we revert that
string CheckUrl (string u)
{
if (u.IndexOf (':') == 1)
return Char.ToUpper (u[0]) + u.Substring (1);
return u;
}
/* NOT ALREADY IMPLEMENTED */
public void JumpToAnchor (string anchor_name)
{
}
/* NOT ALREADY IMPLEMENTED */
public void Copy() {}
/* NOT ALREADY IMPLEMENTED */
public void SelectAll() {}
static int tmp_file = 0;
public void Render (string html_code)
{
string r = ProcessImages (html_code);
// if the html code is too big, write it down to a tmp file
if (((uint) r.Length) > 50000) {
string filename = (tmp_file++) + ".html";
string filepath = Path.Combine (tmpPath, filename);
using (FileStream file = new FileStream (filepath, FileMode.Create)) {
StreamWriter sw = new StreamWriter (file);
sw.Write (r);
sw.Close ();
}
html_panel.LoadUrl (filepath);
} else {
html_panel.OpenStream ("file:///", "text/html");
html_panel.AppendData (r);
html_panel.CloseStream ();
}
}
// Substitute the src of the images with the appropriate path
string ProcessImages (string html_code)
{
//If there are no Images return fast
int pos = html_code.IndexOf ("<img", 0, html_code.Length);
if (pos == -1)
return html_code;
StringBuilder html = new StringBuilder ();
html.Append (html_code.Substring (0, pos));
int srcIni, srcEnd;
string Img;
Stream s;
string path, img_name;
while (pos != -1) {
//look for the src of the img
srcIni = html_code.IndexOf ("src=\"", pos);
srcEnd = html_code.IndexOf ("\"", srcIni+6);
Img = html_code.Substring (srcIni+5, srcEnd-srcIni-5);
path = "NO_IMG";
//is the img cached?
if (cache_imgs.Contains(Img)) {
path = (string) cache_imgs[Img];
} else {
//obtain the stream from the compressed sources
s = help_tree.GetImage (Img);
if (s == null) {
s = help_tree.GetImage (Img.Substring (Img.LastIndexOf ("/") + 1));
}
if (s != null) {
//write the file to a tmp directory
img_name = Img.Substring (Img.LastIndexOf (":")+1);
path = Path.Combine (tmpPath, img_name);
Directory.CreateDirectory (Path.GetDirectoryName (path));
FileStream file = new FileStream (path, FileMode.Create);
byte[] buffer = new byte [8192];
int n;
while ((n = s.Read (buffer, 0, 8192)) != 0)
file.Write (buffer, 0, n);
file.Flush();
file.Close();
System.Console.WriteLine("Cache: {0}", path);
//Add the image to the cache
cache_imgs[Img] = path;
}
}
//Add the html code from <img until src="
html.Append (html_code.Substring (pos, srcIni + 5 - pos));
//Add the Image path
html.Append (path);
//Look for the next image
pos = html_code.IndexOf ("<img", srcIni);
if (pos == -1)
//Add the rest of the file
html.Append (html_code.Substring (srcEnd));
else
//Add from " to the next <img
html.Append (html_code.Substring (srcEnd, pos - srcEnd)); //check this
}
foreach (string cached in cache_imgs.Keys) {
html.Replace ("\"" + cached + "\"", "\"" + (string)cache_imgs[cached] + "\"");
}
return html.ToString();
}
public void Print (string Html) {
if (Html == null) {
Console.WriteLine ("empty print");
return;
}
Console.WriteLine ("XXXX");
#if USE_GTKHTML_PRINT
try {
PrintManager.Print (Html);
} catch {
MessageDialog md = new MessageDialog (null,
DialogFlags.DestroyWithParent,
MessageType.Error,
ButtonsType.Close, "Printing not supported without gtkhtml");
int result = md.Run ();
md.Destroy();
}
#else
MessageDialog md = new MessageDialog (null,
DialogFlags.DestroyWithParent,
MessageType.Error,
ButtonsType.Close, "Printing not supported without gtkhtml");
int result = md.Run ();
md.Destroy();
#endif
}
}
}
|