source: fmts/trunk/p/C0XRDF.m@ 1385

Last change on this file since 1385 was 1385, checked in by George Lilly, 12 years ago

fixes to rdf output

File size: 2.6 KB
Line 
1C0XRDF ; GPL - Fileman Triples RDF out ;11/07/11 17:05
2 ;;0.1;C0X;nopatch;noreleasedate;Build 7
3 ;Copyright 2012 George Lilly. Licensed under the terms of the GNU
4 ;General Public License See attached copy of the License.
5 ;
6 ;This program is free software; you can redistribute it and/or modify
7 ;it under the terms of the GNU General Public License as published by
8 ;the Free Software Foundation; either version 2 of the License, or
9 ;(at your option) any later version.
10 ;
11 ;This program is distributed in the hope that it will be useful,
12 ;but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;GNU General Public License for more details.
15 ;
16 ;You should have received a copy of the GNU General Public License along
17 ;with this program; if not, write to the Free Software Foundation, Inc.,
18 ;51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 ;
20 Q
21 ;
22REPLYSTART(ZARY);
23 D ADD(ZARY,"<?xml version=""1.0"" encoding=""UTF-8""?>")
24 D ADD(ZARY,"<rdf:RDF xmlns:rdf=""http://www.w3.org/1999/02/22-rdf-syntax-ns#"">")
25 Q
26 ;
27LISTSTART(ZARY,ZNAM)
28 Q
29 ;
30DICTSTART(ZARY,ZSUB)
31 I ZSUB["http" D Q ;
32 . D ADD(ZARY,"<rdf:Description rdf:about="""_ZSUB_""">")
33 I $E(ZSUB,1,1)="/" D Q ;
34 . D ADD(ZARY,"<rdf:Description rdf:about="""_ZSUB_""">")
35 D ADD(ZARY,"<rdf:Description rdf:nodeID="""_ZSUB_""">")
36 Q
37 ;
38DASSERT(ZARY,ZPRED,ZOBJ)
39 I ZPRED[":" D Q ;
40 . I ZPRED="rdf:type" D Q ;
41 . . D ADD(ZARY,"<rdf:type rdf:resource="""_$$EXT^C0XUTIL(ZOBJ)_"""/>")
42 . N ZA,ZB,ZC
43 . S ZA=$P(ZPRED,":",1)
44 . S ZB=$P(ZPRED,":",2)
45 . S ZC=C0XVOC(ZA)
46 . I ZOBJ["nodeID:" D Q ;
47 . . D ADD(ZARY,"<"_ZB_" xmlns="""_ZC_""" rdf:nodeID="""_$$EXT^C0XUTIL(ZOBJ)_"""/>")
48 . S ZOBJ=$$EXT^C0XUTIL(ZOBJ)
49 . I ZOBJ["http" D Q ;
50 . . D ADD(ZARY,"<"_ZB_" xmlns="""_ZC_""" rdf:resource="""_ZOBJ_"""/>")
51 . I $E(ZOBJ,1,1)="/" D Q ;
52 . . D ADD(ZARY,"<"_ZB_" xmlns="""_ZC_""" rdf:resource="""_ZOBJ_"""/>")
53 . D ADD(ZARY,"<"_ZB_" xmlns="""_ZC_""">"_$$EXT^C0XUTIL(ZOBJ)_"</"_ZB_">")
54 Q
55 ;
56DICTEND(ZARY)
57 D ADD(ZARY,"</rdf:Description>")
58 Q
59 ;
60LISTEND(ZARY)
61 Q
62 ;
63REPLYEND(ZARY)
64 D ADD(ZARY,"</rdf:RDF>")
65 Q
66 ;
67ADD(ZARY,ZELE)
68 N ZI
69 I '$D(ZARY) S @ZARY@(1)=ZELE Q ;
70 S ZI=$O(@ZARY@(""),-1)
71 S @ZARY@(ZI+1)=ZELE
72 Q
73 ;
74rdfout(rdfout,zary) ;
75 d REPLYSTART("rdfout")
76 d LISTSTART("rdfout","results")
77 n zi s zi=""
78 f s zi=$o(zary(zi)) q:zi="" d ; for each subject
79 . n zii s zii=""
80 . D DICTSTART("rdfout",$$EXT^C0XUTIL(zi))
81 . f s zii=$o(zary(zi,zii)) q:zii="" d ; for each pred^obj pair
82 . . d DASSERT("rdfout",$p(zii,"^",1),$p(zii,"^",2))
83 . D DICTEND("rdfout")
84 d LISTEND("rdfout")
85 d REPLYEND("rdfout")
86 q
87 ;
Note: See TracBrowser for help on using the repository browser.