Source Code Cross Referenced for SyntacticDiffEngine.java in  » Search-Engine » semweb4j » org » ontoware » semversion » impl » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Search Engine » semweb4j » org.ontoware.semversion.impl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Created on 13-Jul-05
003:         *
004:         * To change the template for this generated file go to
005:         * Window>Preferences>Java>Code Generation>Code and Comments
006:         */
007:        package org.ontoware.semversion.impl;
008:
009:        import java.util.Iterator;
010:
011:        import org.ontoware.aifbcommons.collection.ClosableIterator;
012:        import org.ontoware.rdf2go.model.Diff;
013:        import org.ontoware.rdf2go.model.Model;
014:        import org.ontoware.rdf2go.model.Statement;
015:        import org.ontoware.rdf2go.model.impl.DiffImpl;
016:        import org.ontoware.rdf2go.model.impl.ModelAddRemoveMemoryImpl;
017:        import org.slf4j.Logger;
018:        import org.slf4j.LoggerFactory;
019:
020:        /**
021:         * @author mvo,careng
022:         * 
023:         */
024:        public class SyntacticDiffEngine {
025:
026:            private static final Logger log = LoggerFactory
027:                    .getLogger(SyntacticDiffEngine.class);
028:
029:            public static Diff getSyntacticDiff(Model a, Model b)
030:                    throws Exception {
031:
032:                // in b, but not in a
033:                ModelAddRemoveMemoryImpl added = new ModelAddRemoveMemoryImpl();
034:                // in a, but not in b
035:                ModelAddRemoveMemoryImpl removed = new ModelAddRemoveMemoryImpl();
036:
037:                Iterator<Statement> it;
038:                it = a.iterator();
039:                while (it.hasNext()) {
040:                    Statement s = it.next();
041:                    log.debug("removed: " + s);
042:                    if (!b.contains(s.getSubject(), s.getPredicate(), s
043:                            .getObject()))
044:                        removed.addStatement(s);
045:                }
046:
047:                it = b.iterator();
048:                while (it.hasNext()) {
049:                    Statement s = it.next();
050:                    log.debug("added: " + s);
051:                    if (!a.contains(s.getSubject(), s.getPredicate(), s
052:                            .getObject()))
053:                        added.addStatement(s);
054:                }
055:                return new DiffImpl(added.iterator(), removed.iterator());
056:            }
057:
058:            /**
059:             * Applies a diff
060:             * 
061:             * @param ts
062:             *            a TripleStore
063:             * @param sourceModel
064:             *            the source model
065:             * @param diff
066:             *            contains added and removed triplesets
067:             * @param resultURI
068:             *            under which a model with source + added - removed is created
069:             * @returns a temporary model with the diff applied
070:             * @throws Exception
071:             *             TODO: use blank node enrichment here
072:             */
073:            public static Model applyDiff(TripleStore ts, Model sourceModel,
074:                    Diff diff) {
075:                try {
076:                    Model result = ts.getTempModel(ts.newRandomUniqueURI());
077:
078:                    ClosableIterator<Statement> sourceIt = sourceModel
079:                            .iterator();
080:                    result.addAll(sourceIt);
081:                    sourceIt.close();
082:
083:                    Iterator<? extends Statement> it;
084:                    it = diff.getRemoved().iterator();
085:                    while (it.hasNext()) {
086:                        Statement s = it.next();
087:                        log.debug("remove " + s);
088:                        result.removeStatement(s);
089:                    }
090:
091:                    it = diff.getAdded().iterator();
092:                    while (it.hasNext()) {
093:                        Statement s = it.next();
094:                        log.debug("add " + s);
095:                        result.addStatement(s);
096:                    }
097:                    sourceModel.close();
098:                    return result;
099:                } catch (Exception e) {
100:                    throw new RuntimeException(e);
101:                }
102:            }
103:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.