interaction: add global variable store

Conflicts:
	source/net/yacy/interaction/Interaction.java
pull/1/head
cominch 13 years ago committed by Michael Peter Christen
parent 8e80894812
commit 4e4e7a99f8

@ -12,7 +12,7 @@
<body id="index">
<p>
JavaScript example: Permanent storage of value
JavaScript example: Permanent storage of value, assigned to logged in user account
</p>
<br/>
@ -50,6 +50,36 @@
</script>
</p>
<br/>
<br/>
<p>
JavaScript example: Load value from global RDF store
</p>
<br/>
<br/>
<p>
<input id="output" type="text" name="output" value="--"/>
<input type="submit" name="sub" onclick="storevalueglobal ('http://virtual.x/global/entry1', 'http://virtual.x/global/hasvalue', document.getElementById('output').value)"/>
l
<script type="text/javascript" charset="utf-8">
var oldvalue = loadvalueglobal ('http://virtual.x/global/entry1', 'http://virtual.x/global/hasvalue');
document.getElementById('output').value = oldvalue;
</script>
</p>

@ -32,6 +32,7 @@ package interaction;
import net.yacy.cora.protocol.HeaderFramework;
import net.yacy.cora.protocol.RequestHeader;
import net.yacy.interaction.Interaction;
import net.yacy.kelondro.logging.Log;
import net.yacy.search.Switchboard;
import de.anomic.data.UserDB;
import de.anomic.server.serverObjects;
@ -99,7 +100,8 @@ public class Triple {
String s = "";
String p = "";
String o = "";
String from = "";
Boolean global = false;
if(post != null){
@ -118,20 +120,18 @@ public class Triple {
if(post.containsKey("o")){
o = post.get("o");
}
if(post.containsKey("from")){
from = post.get("from");
}
global = post.containsKey("global");
}
if (post.containsKey("load")) {
o = Interaction.TripleGet(s, p, username);
o = Interaction.TripleGet(s, p, global ? "" : username);
} else {
Interaction.Triple(url, s, p, o, username);
Interaction.Triple(url, s, p, o, global ? "" : username);
}
prop.put("result", o);

@ -42,6 +42,15 @@ function storevalue (s, p, o) {
}
function storevalueglobal (s, p, o) {
$.getJSON('/currentyacypeer/interaction/Triple.json?global=true&url='+document.location.href+'&s='+s+'&p='+p+'&o='+o, function(data) {
});
}
function loadvalue (s, p) {
var res = {result: ""};
@ -55,6 +64,23 @@ function loadvalue (s, p) {
});
return res.result;
}
function loadvalueglobal (s, p) {
var res = {result: ""};
$.ajaxSetup({async: false});
$.getJSON('/currentyacypeer/interaction/Triple.json?global=true&s='+s+'&p='+p+'&load=true', function (data) {
res = data;
});
return res.result;
}

@ -448,22 +448,53 @@ public static String Contribution(String url, String comment, String from, Strin
return "";
}
public static String Triple(String url, String s, String p, String o) {
return Triple (url, s, p, o, "");
}
public static String Triple(String url, String s, String p, String o, String username) {
final Switchboard sb = Switchboard.getSwitchboard();
if (username != "") {
username = "/"+username;
}
Resource r = TripleStore.model.getResource(s+username);
Property pr = TripleStore.model.getProperty(p);
TripleStore.model.removeAll(r, pr, (Resource) null);
r.addProperty(pr, o);
Log.logInfo ("TRIPLESTORE", "PUT "+username+" / "+s+" - "+p+" - "+o);
public static String Triple(String url, String s, String p, String o, String from) {
Resource r = TripleStore.model.getResource(s+"/"+from);
Property pr = TripleStore.model.getProperty(p);
TripleStore.model.removeAll(r, pr, (Resource) null);
r.addProperty(pr, o);
Log.logInfo ("TRIPLESTORE", "PUT "+from+" / "+s+" - "+p+" - "+o);
return "";
}
public static String TripleGet(String s, String p, String username) {
Resource r = TripleStore.model.getResource(s+"/"+username);
public static String TripleGet(String s, String p) {
return TripleGet (s, p, "");
}
public static String TripleGet(String s, String p, String username) {
final Switchboard sb = Switchboard.getSwitchboard();
if (username != "") {
username = "/"+username;
}
Resource r = TripleStore.model.getResource(s+username);
Property pr = TripleStore.model.getProperty(p);
StmtIterator iter = TripleStore.model.listStatements(r, pr, (Resource) null);
Log.logInfo ("TRIPLESTORE", "GET "+s+" - "+p);
StmtIterator iter = TripleStore.model.listStatements(r, pr, (Resource) null);
Log.logInfo ("TRIPLESTORE", "GET "+username+" / "+s+" - "+p+" ... ");
while (iter.hasNext()) {
String obj = iter.nextStatement().getObject().toString();

Loading…
Cancel
Save