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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
using System;
using System.Runtime.InteropServices;
using System.Data;
using Microsoft.SqlServer.Server;
using System.Data.SqlTypes;
using System.Data.SqlClient;
using System.Collections;
using System.IO;
using System.Text;
using Microsoft.Win32;
namespace indigo
{
public unsafe class BingoCore
{
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int GetNextRecordHandler (IntPtr context);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void ProcessResultHandler (IntPtr context);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void ProcessErrorHandler (int id, IntPtr context);
private static BingoCoreLib _lib = null;
public static BingoCoreLib lib
{
get
{
if (_lib == null)
{
BingoDllLoader.Instance.loadLibrary(null, "bingo-core-c.dll", "indigo.resource", false);
_lib = BingoDllLoader.Instance.getInterface<BingoCoreLib>("bingo-core-c.dll");
}
return _lib;
}
}
public static string bingoGetNameCore (byte[] buffer)
{
sbyte* res = lib.bingoGetNameCore(buffer, buffer.Length);
if ((IntPtr)res == IntPtr.Zero)
throw new Exception(lib.bingoGetError());
return new String(res);
}
public static string mangoGrossGetConditions ()
{
sbyte* res = lib.mangoGrossGetConditions();
if ((IntPtr)res == IntPtr.Zero)
throw new Exception(lib.bingoGetError());
return new String(res);
}
public static string mangoGross (byte[] target_buf)
{
sbyte* res = lib.mangoGross(target_buf, target_buf.Length);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static string checkMolecule (byte[] molecule)
{
sbyte* res = lib.mangoCheckMolecule(molecule, molecule.Length);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static string checkReaction (byte[] reaction)
{
sbyte* res = lib.ringoCheckReaction(reaction, reaction.Length);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static string ringoAAM (byte[] reaction, string options)
{
sbyte* res = lib.ringoAAM(reaction, reaction.Length, options);
if ((IntPtr)res == IntPtr.Zero)
throw new Exception(lib.bingoGetError());
return new String(res);
}
public static string ringoGetHightlightedReaction ()
{
sbyte* res = lib.ringoGetHightlightedReaction();
if ((IntPtr)res == IntPtr.Zero)
throw new Exception(lib.bingoGetError());
return new String(res);
}
public static string mangoGetHightlightedMolecule ()
{
sbyte* res = lib.mangoGetHightlightedMolecule();
if ((IntPtr)res == IntPtr.Zero)
throw new Exception(lib.bingoGetError());
return new String(res);
}
public static string mangoTauGetQueryGross ()
{
return new String(lib.mangoTauGetQueryGross());
}
public static string mangoGetCountedElementName (int index)
{
return new String(lib.mangoGetCountedElementName(index));
}
public static string bingoProfilingGetStatistics (bool for_session)
{
return new String(lib.bingoProfilingGetStatistics(for_session));
}
public static string ringoRxnfile (byte[] reaction)
{
sbyte* res = lib.ringoRxnfile(reaction, reaction.Length);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static string ringoRCML (byte[] reaction)
{
sbyte* res = lib.ringoRCML(reaction, reaction.Length);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static string mangoMolfile (byte[] molecule)
{
sbyte* res = lib.mangoMolfile(molecule, molecule.Length);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static string mangoCML (byte[] molecule)
{
sbyte* res = lib.mangoCML(molecule, molecule.Length);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static byte[] mangoICM (byte[] molecule, bool save_xyz)
{
int out_len;
IntPtr icm_ptr = lib.mangoICM(molecule, molecule.Length, save_xyz, out out_len);
if ((IntPtr)icm_ptr == IntPtr.Zero)
return null;
byte[] icm = new byte[out_len];
Marshal.Copy(icm_ptr, icm, 0, out_len);
return icm;
}
public static byte[] ringoICR (byte[] reaction, bool save_xyz)
{
int out_len;
IntPtr icr_ptr = lib.ringoICR(reaction, reaction.Length, save_xyz, out out_len);
if ((IntPtr)icr_ptr == IntPtr.Zero)
return null;
byte[] icr = new byte[out_len];
Marshal.Copy(icr_ptr, icr, 0, out_len);
return icr;
}
public static string ringoRSMILES (byte[] buffer)
{
sbyte* res = lib.ringoRSMILES(buffer, buffer.Length);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static string mangoSMILES (byte[] buffer, bool canonical)
{
sbyte* res = lib.mangoSMILES(buffer, buffer.Length, canonical ? 1 : 0);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static byte[] mangoFingerprint(byte[] molecule, string options)
{
int fp_len;
IntPtr fp_ptr = lib.mangoFingerprint(molecule, molecule.Length, options, out fp_len);
if (fp_ptr == IntPtr.Zero)
return null;
byte[] fp = new byte[fp_len];
Marshal.Copy(fp_ptr, fp, 0, fp_len);
return fp;
}
public static byte[] ringoFingerprint(byte[] reaction, string options)
{
int fp_len;
IntPtr fp_ptr = lib.ringoFingerprint(reaction, reaction.Length, options, out fp_len);
if (fp_ptr == IntPtr.Zero)
return null;
byte[] fp = new byte[fp_len];
Marshal.Copy(fp_ptr, fp, 0, fp_len);
return fp;
}
public static string mangoInChI(byte[] molecule, string options)
{
int out_len;
sbyte* res = lib.mangoInChI(molecule, molecule.Length, options, out out_len);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static string mangoInChIKey(string incho)
{
sbyte* res = lib.mangoInChIKey(incho);
if ((IntPtr)res == IntPtr.Zero)
return null;
return new String(res);
}
public static int mangoGetQueryFingerprint(out byte[] fp)
{
IntPtr fp_ptr;
int fp_len;
int ret = lib.mangoGetQueryFingerprint(out fp_ptr, out fp_len);
fp = new byte[fp_len];
Marshal.Copy(fp_ptr, fp, 0, fp_len);
return ret;
}
public static int ringoGetQueryFingerprint (out byte[] fp)
{
IntPtr fp_ptr;
int fp_len;
int ret = lib.ringoGetQueryFingerprint(out fp_ptr, out fp_len);
fp = new byte[fp_len];
Marshal.Copy(fp_ptr, fp, 0, fp_len);
return ret;
}
public static string bingoRDFImportGetNext ()
{
return new String(lib.bingoRDFImportGetNext());
}
public static string bingoRDFImportGetParameter (string param_name)
{
return new String(lib.bingoRDFImportGetProperty(param_name));
}
public static string bingoSDFImportGetNext ()
{
return new String(lib.bingoSDFImportGetNext());
}
public static string bingoSDFImportGetParameter (string param_name)
{
return new String(lib.bingoSDFImportGetProperty(param_name));
}
public static void tautomerRulesReady ()
{
if (lib.bingoTautomerRulesReady() == 0)
throw new Exception(lib.bingoGetError());
}
public static void addTautomerRule (int n, string beg, string end)
{
if (lib.bingoAddTautomerRule(n, beg, end) == 0)
throw new Exception(lib.bingoGetError());
}
public static void clearTautomerRules ()
{
if (lib.bingoClearTautomerRules() == 0)
throw new Exception(lib.bingoGetError());
}
public static byte[] getConfigBin (string name)
{
IntPtr value_ptr;
int value_len;
if (lib.bingoGetConfigBin(name, out value_ptr, out value_len) == 0)
throw new Exception(lib.bingoGetError());
byte[] data = new byte[value_len];
Marshal.Copy(value_ptr, data, 0, value_len);
return data;
}
public static void setConfigBin (string name, byte[] value)
{
if (lib.bingoSetConfigBin(name, value, value.Length) == 0)
throw new Exception(lib.bingoGetError());
}
public static int getConfigInt (string name)
{
int value;
if (lib.bingoGetConfigInt(name, out value) == 0)
throw new Exception(lib.bingoGetError());
return value;
}
public static void setConfigInt (string name, int value)
{
if (lib.bingoSetConfigInt(name, value) == 0)
throw new Exception(lib.bingoGetError());
}
public static void setContext (int id)
{
if (lib.bingoSetContext(id) == 0)
throw new Exception(lib.bingoGetError());
}
}
}
|