File: ensmetacoordinate.c

package info (click to toggle)
emboss 6.6.0%2Bdfsg-15
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 571,580 kB
  • sloc: ansic: 460,579; java: 29,383; perl: 13,573; sh: 12,753; makefile: 3,295; csh: 706; asm: 351; xml: 239; pascal: 237; modula3: 8
file content (638 lines) | stat: -rw-r--r-- 17,801 bytes parent folder | download | duplicates (6)
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
/* @source ensmetacoordinate **************************************************
**
** Ensembl Meta-Coordinate functions
**
** @author Copyright (C) 1999 Ensembl Developers
** @author Copyright (C) 2006 Michael K. Schuster
** @version $Revision: 1.38 $
** @modified 2009 by Alan Bleasby for incorporation into EMBOSS core
** @modified $Date: 2013/02/17 13:02:40 $ by $Author: mks $
** @@
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License as published by the Free Software Foundation; either
** version 2.1 of the License, or (at your option) any later version.
**
** This library 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
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this library; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
** MA  02110-1301,  USA.
**
******************************************************************************/

/* ========================================================================= */
/* ============================= include files ============================= */
/* ========================================================================= */

#include "ensmetacoordinate.h"
#include "enstable.h"




/* ========================================================================= */
/* =============================== constants =============================== */
/* ========================================================================= */




/* ========================================================================= */
/* =========================== global variables ============================ */
/* ========================================================================= */




/* ========================================================================= */
/* ============================= private data ============================== */
/* ========================================================================= */




/* ========================================================================= */
/* =========================== private constants =========================== */
/* ========================================================================= */




/* ========================================================================= */
/* =========================== private variables =========================== */
/* ========================================================================= */




/* ========================================================================= */
/* =========================== private functions =========================== */
/* ========================================================================= */

static AjBool metacoordinateadaptorCacheInit(EnsPMetacoordinateadaptor mca);




/* ========================================================================= */
/* ======================= All functions by section ======================== */
/* ========================================================================= */




/* @filesection ensmetacoordinate *********************************************
**
** @nam1rule ens Function belongs to the Ensembl library
**
******************************************************************************/




/* @datasection [EnsPMetacoordinateadaptor] Ensembl Meta-Coordinate Adaptor ***
**
** @nam2rule Metacoordinateadaptor Functions for manipulating
** Ensembl Meta-Coordinate Adaptor objects
**
** @cc Bio::EnsEMBL::DBSQL::MetaCoordContainer
** @cc CVS Revision: 1.16
** @cc CVS Tag: branch-ensembl-68
**
******************************************************************************/




/* @funcstatic metacoordinateadaptorCacheInit *********************************
**
** Initialise the internal Meta-Coordinate cache of an
** Ensembl Meta-Coordinate Adaptor.
**
** @param [u] mca [EnsPMetacoordinateadaptor] Ensembl Meta-Coordinate Adaptor
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.3.0
** @@
******************************************************************************/

static AjBool metacoordinateadaptorCacheInit(EnsPMetacoordinateadaptor mca)
{
    ajuint csid   = 0U;
    ajint  length = 0;

    ajuint *Pcsid   = NULL;
    ajint  *Plength = NULL;

    AjPList css  = NULL;
    AjPList list = NULL;

    AjPTable table = NULL;

    AjISqlrow       sqli = NULL;
    AjPSqlrow       sqlr = NULL;
    AjPSqlstatement sqls = NULL;

    AjPStr csv       = NULL;
    AjPStr name      = NULL;
    AjPStr statement = NULL;

    EnsPCoordsystem cs = NULL;

    EnsPDatabaseadaptor dba = NULL;

    if (!mca)
        return ajFalse;

    /* Fetch all Ensembl Coordinate System objects for this species. */

    dba = ensMetacoordinateadaptorGetDatabaseadaptor(mca);

    css = ajListNew();

    ensCoordsystemadaptorFetchAll(
        ensRegistryGetCoordsystemadaptor(dba),
        css);

    csv = ajStrNew();

    while (ajListPop(css, (void **) &cs))
    {
        ajFmtPrintAppS(&csv, "%u, ", ensCoordsystemGetIdentifier(cs));

        ensCoordsystemDel(&cs);
    }

    ajListFree(&css);

    /* Remove the last comma and space from the comma-separated values. */

    ajStrCutEnd(&csv, 2);

    statement = ajFmtStr(
        "SELECT "
        "meta_coord.table_name, "
        "meta_coord.coord_system_id, "
        "meta_coord.max_length "
        "FROM "
        "meta_coord "
        "WHERE "
        "meta_coord.coord_system_id IN (%S)",
        csv);

    ajStrDel(&csv);

    sqls = ensDatabaseadaptorSqlstatementNew(dba, statement);

    sqli = ajSqlrowiterNew(sqls);

    while (!ajSqlrowiterDone(sqli))
    {
        name   = ajStrNew();
        csid   = 0;
        length = 0;

        sqlr = ajSqlrowiterGet(sqli);

        ajSqlcolumnToStr(sqlr, &name);
        ajSqlcolumnToUint(sqlr, &csid);
        ajSqlcolumnToInt(sqlr, &length);

        ajStrFmtLower(&name);

        /* Add to the Feature Type Cache. */

        list = (AjPList) ajTableFetchmodS(mca->CacheByName, name);

        if (!list)
        {
            list = ajListNew();

            ajTablePut(mca->CacheByName,
                       (void *) ajStrNewS(name),
                       (void *) list);
        }

        AJNEW0(Pcsid);

        *Pcsid = csid;

        ajListPushAppend(list, (void *) Pcsid);

        /* Add to the Length Cache. */

        table = (AjPTable) ajTableFetchmodV(mca->CacheByLength,
                                            (const void *) &csid);

        if (!table)
        {
            AJNEW0(Pcsid);

            *Pcsid = csid;

            table = ajTablestrNew(0U);

            ajTableSetDestroyvalue(table, &ajMemFree);

            ajTablePut(mca->CacheByLength, (void *) Pcsid, (void *) table);
        }

        AJNEW0(Plength);

        *Plength = length;

        ajTablePut(table, (void *) ajStrNewS(name), (void *) Plength);

        ajStrDel(&name);
    }

    ajSqlrowiterDel(&sqli);

    ensDatabaseadaptorSqlstatementDel(dba, &sqls);

    ajStrDel(&statement);

    return ajTrue;
}




/* @section constructors ******************************************************
**
** All constructors return a new Ensembl Meta-Coordinate Adaptor by pointer.
** It is the responsibility of the user to first destroy any previous
** Meta-Coordinate Adaptor. The target pointer does not need to be
** initialised to NULL, but it is good programming practice to do so anyway.
**
** @fdata [EnsPMetacoordinateadaptor]
**
** @nam3rule New Constructor
**
** @argrule New dba [EnsPDatabaseadaptor] Ensembl Database Adaptor
**
** @valrule * [EnsPMetacoordinateadaptor]
** Ensembl Meta-Coordinate Adaptor or NULL
**
** @fcategory new
******************************************************************************/




/* @func ensMetacoordinateadaptorNew ******************************************
**
** Default constructor for an Ensembl Meta-Coordinate Adaptor.
**
** Ensembl Object Adaptors are singleton objects in the sense that a single
** instance of an Ensembl Object Adaptor connected to a particular database is
** sufficient to instantiate any number of Ensembl Objects from the database.
** Each Ensembl Object will have a weak reference to the Object Adaptor that
** instantiated it. Therefore, Ensembl Object Adaptors should not be
** instantiated directly, but rather obtained from the Ensembl Registry,
** which will in turn call this function if neccessary.
**
** @see ensRegistryGetDatabaseadaptor
** @see ensRegistryGetMetacoordinateadaptor
**
** @cc Bio::EnsEMBL::DBSQL::MetaCoordContainer::new
** @param [u] dba [EnsPDatabaseadaptor] Ensembl Database Adaptor
**
** @return [EnsPMetacoordinateadaptor] Ensembl Meta-Coordinate Adaptor or NULL
**
** @release 6.2.0
** @@
******************************************************************************/

EnsPMetacoordinateadaptor ensMetacoordinateadaptorNew(
    EnsPDatabaseadaptor dba)
{
    EnsPMetacoordinateadaptor mca = NULL;

    if (!dba)
        return NULL;

    AJNEW0(mca);

    mca->Adaptor = dba;

    mca->CacheByName = ajTablestrNew(0U);

    ajTableSetDestroyvalue(
        mca->CacheByName,
        (void (*)(void **)) &ajListFreeData);

    mca->CacheByLength = ajTableuintNew(0U);

    ajTableSetDestroyvalue(
        mca->CacheByLength,
        (void (*)(void **)) &ajTableDel);

    metacoordinateadaptorCacheInit(mca);

    return mca;
}




/* @section destructors *******************************************************
**
** Destruction destroys all internal data structures and frees the memory
** allocated for an Ensembl Meta-Coordinate Adaptor object.
**
** @fdata [EnsPMetacoordinateadaptor]
**
** @nam3rule Del Destroy (free) an Ensembl Meta-Coordinate Adaptor
**
** @argrule * Pmca [EnsPMetacoordinateadaptor*]
** Ensembl Meta-Coordinate Adaptor address
**
** @valrule * [void]
**
** @fcategory delete
******************************************************************************/




/* @func ensMetacoordinateadaptorDel ******************************************
**
** Default destructor for an Ensembl Meta-Coordinate Adaptor.
**
** This function also clears the internal cordinate system identifer and
** maximum length caches.
**
** Ensembl Object Adaptors are singleton objects that are registered in the
** Ensembl Registry and weakly referenced by Ensembl Objects that have been
** instantiated by it. Therefore, Ensembl Object Adaptors should never be
** destroyed directly. Upon exit, the Ensembl Registry will call this function
** if required.
**
** @param [d] Pmca [EnsPMetacoordinateadaptor*]
** Ensembl Meta-Coordinate Adaptor address
**
** @return [void]
**
** @release 6.2.0
** @@
******************************************************************************/

void ensMetacoordinateadaptorDel(EnsPMetacoordinateadaptor *Pmca)
{
    EnsPMetacoordinateadaptor pthis = NULL;

    if (!Pmca)
        return;

#if defined(AJ_DEBUG) && AJ_DEBUG >= 1
    if (ajDebugTest("ensMetacoordinateadaptorDel"))
        ajDebug("ensMetacoordinateadaptorDel\n"
                "  *Pmca %p\n",
                *Pmca);
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 1 */

    if (!(pthis = *Pmca))
        return;

    ajTableDel(&pthis->CacheByName);
    ajTableDel(&pthis->CacheByLength);

    ajMemFree((void **) Pmca);

    return;
}




/* @section member retrieval **************************************************
**
** Functions for returning members of an
** Ensembl Meta-Coordinate Adaptor object.
**
** @fdata [EnsPMetacoordinateadaptor]
**
** @nam3rule Get Return Ensembl Meta-Coordinate Adaptor attribute(s)
** @nam4rule Databaseadaptor Return the Ensembl Database Adaptor
**
** @argrule * mca [EnsPMetacoordinateadaptor] Ensembl Meta-Coordinate Adaptor
**
** @valrule Databaseadaptor [EnsPDatabaseadaptor]
** Ensembl Database Adaptor or NULL
**
** @fcategory use
******************************************************************************/




/* @func ensMetacoordinateadaptorGetDatabaseadaptor ***************************
**
** Get the Ensembl Database Adaptor of an Ensembl Meta-Coordinate Adaptor.
**
** @param [u] mca [EnsPMetacoordinateadaptor]
** Ensembl Meta-Coordinate Adaptor
**
** @return [EnsPDatabaseadaptor] Ensembl Database Adaptor or NULL
**
** @release 6.5.0
** @@
******************************************************************************/

EnsPDatabaseadaptor ensMetacoordinateadaptorGetDatabaseadaptor(
    EnsPMetacoordinateadaptor mca)
{
    return (mca) ? mca->Adaptor : NULL;
}




/* @section accessory object retrieval ****************************************
**
** Functions for retrieving objects releated to Ensembl Meta-Coordinate objects
** from an Ensembl SQL database.
**
** @fdata [EnsPMetacoordinateadaptor]
**
** @nam3rule Retrieve Retrieve Ensembl Meta-Coordinate-releated object(s)
** @nam4rule All Retrieve all Ensembl Meta-Coordinate-releated objects
** @nam5rule Coordsystems Retrieve all Ensembl Coordinate System objects
** @nam4rule Maximumlength Retrieve the maximum length
**
** @argrule * mca [EnsPMetacoordinateadaptor] Ensembl Meta-Coordinate Adaptor
** @argrule AllCoordsystems name [const AjPStr]
** Ensembl Feature (i.e. SQL table) name
** @argrule AllCoordsystems css [AjPList]
** AJAX List of Ensembl Coordinate System objects
** @argrule Maximumlength cs [const EnsPCoordsystem] Ensembl Coordinate System
** @argrule Maximumlength name [const AjPStr]
** Ensembl Feature (i.e. SQL table) name
** @argrule Maximumlength Pmaxlength [ajint*]
** AJAX signed integer (maximum length) address
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory use
******************************************************************************/




/* @func ensMetacoordinateadaptorRetrieveAllCoordsystems **********************
**
** Retrieve all Ensembl Coordinate System objects associated with a particular
** Ensembl Feature name.
**
** @cc Bio::EnsEMBL::DBSQL::MetaCoordContainer::
**     fetch_all_Coordsystems_by_feature_type
** @param [u] mca [EnsPMetacoordinateadaptor]
** Ensembl Meta-Coordinate Adaptor
** @param [r] name [const AjPStr] Ensembl Feature (i.e. SQL table) name
** @param [u] css [AjPList] AJAX List of Ensembl Coordinate System objects
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.5.0
** @@
******************************************************************************/

AjBool ensMetacoordinateadaptorRetrieveAllCoordsystems(
    EnsPMetacoordinateadaptor mca,
    const AjPStr name,
    AjPList css)
{
    ajuint *Pcsid = NULL;

    AjIList iter = NULL;
    AjPList list = NULL;

    EnsPCoordsystem cs         = NULL;
    EnsPCoordsystemadaptor csa = NULL;

    EnsPDatabaseadaptor dba = NULL;

    if (ajDebugTest("ensMetacoordinateadaptorRetrieveAllCoordsystems"))
        ajDebug("ensMetacoordinateadaptorRetrieveAllCoordsystems\n"
                "  mca %p\n"
                "  name '%S'\n"
                "  css %p\n",
                mca,
                name,
                css);

    if (!mca)
        return ajFalse;

    if (!name)
        return ajFalse;

    list = (AjPList) ajTableFetchmodS(mca->CacheByName, name);

    if (!list)
    {
        ajDebug("ensMetacoordinateadaptorRetrieveAllCoordsystems "
                "got no AJAX List of "
                "Ensembl Coordinate System objects for name '%S'\n", name);

        return ajTrue;
    }

    dba = ensMetacoordinateadaptorGetDatabaseadaptor(mca);

    csa = ensRegistryGetCoordsystemadaptor(dba);

    iter = ajListIterNew(list);

    while (!ajListIterDone(iter))
    {
        Pcsid = (ajuint *) ajListIterGet(iter);

        ensCoordsystemadaptorFetchByIdentifier(csa, *Pcsid, &cs);

        if (cs)
            ajListPush(css, (void *) cs);
        else
            ajFatal("ensMetacoordinateadaptorRetrieveAllCoordsystems "
                    "Ensembl Core 'meta_coord' table refers to non-existing "
                    "Ensembl Coordinate System with identifier %u\n", *Pcsid);
    }

    ajListIterDel(&iter);

    return ajTrue;
}




/* @func ensMetacoordinateadaptorRetrieveMaximumlength ************************
**
** Retrieve the maximum length of a particular Ensembl Feature type in an
** Ensembl Coordinate System.
**
** @cc Bio::EnsEMBL::DBSQL::MetaCoordContainer::
**     fetch_max_length_by_Coordsystem_feature_type
** @param [u] mca [EnsPMetacoordinateadaptor]
** Ensembl Meta-Coordinate Adaptor
** @param [r] cs [const EnsPCoordsystem] Ensembl Coordinate System
** @param [r] name [const AjPStr] Ensembl Feature (i.e. SQL table) name
** @param [wP] Pmaxlength [ajint*]
** AJAX signed integer (maximum length) address
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.5.0
** @@
******************************************************************************/

AjBool ensMetacoordinateadaptorRetrieveMaximumlength(
    EnsPMetacoordinateadaptor mca,
    const EnsPCoordsystem cs,
    const AjPStr name,
    ajint *Pmaxlength)
{
    ajuint csid = 0U;

    ajint *Plength = NULL;

    AjPTable table = NULL;

    if (!mca)
        return ajFalse;

    if (!cs)
        return ajFalse;

    if (!name)
        return ajFalse;

    if (!Pmaxlength)
        return ajFalse;

    *Pmaxlength = 0;

    csid = ensCoordsystemGetIdentifier(cs);

    table = (AjPTable) ajTableFetchmodV(mca->CacheByLength,
                                        (const void *) &csid);

    if (table)
    {
        Plength = (ajint *) ajTableFetchmodV(table, (const void *) name);

        *Pmaxlength = *Plength;

        return ajTrue;
    }

    return ajFalse;
}