Stefano Cossu 7 år sedan
förälder
incheckning
d49241b86b
6 ändrade filer med 76 tillägg och 3 borttagningar
  1. 36 0
      doc/notes/TODO
  2. 32 0
      etc.skeleton/gunicorn.py
  3. 3 0
      fcrepo
  4. 1 1
      lakesuperior/model/ldp_rs.py
  5. 2 0
      server.py
  6. 2 2
      tests/10K_children.py

+ 36 - 0
doc/notes/TODO

@@ -0,0 +1,36 @@
+# Alpha 1 TODO
+
+H Pairtree resources
+D Logging
+D Server-managed triples
+  D PATCH
+  D PUT + POST
+D Single-subject rule
+  D PATCH
+  D PUT + POST
+D Prefer headers
+D LDP-NR
+D Direct and Indirect containers
+D Referential integrity
+D Tombstone
+  D Set
+  D Retrieve
+  D Delete
+D Refactor toolbox
+- GUnicorn
+- Tests
+- Messaging SPI
+
+# Alpha 2 TODO
+
+- Separate read-only graph/resource generation from RW graph/res generation
+- Move server-managed triples to separate graph in simple layout
+- Full provenance layout
+- Fixity checks
+
+# Alpha 3 TODO
+- Basic UI
+- Versioning
+- Async coroutines
+  - Within sync request
+  - Fully async request

+ 32 - 0
etc.skeleton/gunicorn.py

@@ -0,0 +1,32 @@
+# See: http://docs.gunicorn.org/en/stable/settings.html
+
+# Directory where to store logs, PIDfile, etc.
+_data_dir = '/tmp'
+
+# Set app_mode to either 'prod', 'test' or 'dev'.
+# 'prod' is normal running mode. 'test' is used for running test suites.
+# 'dev' is similar to normal mode but with reload and debug enabled.
+_app_mode = 'dev'
+
+
+bind = "0.0.0.0:8000"
+workers = 4
+threads = 2
+max_requests = 1000
+
+#user = "user"
+#group = "group"
+
+raw_env = 'APP_MODE={}'.format(_app_mode)
+
+# Set this to the directory containing logs, etc.
+# The path must end with a slash.
+#chdir = "/usr/local/lakesuperior/"
+
+daemon = _app_mode=='prod'
+pidfile = _data_dir + "run/fcrepo.pid"
+reload = _app_mode=='dev'
+
+accesslog = _data_dir + "log/gunicorn-access.log"
+errorlog = _data_dir + "log/gunicorn-error.log"
+

+ 3 - 0
fcrepo

@@ -0,0 +1,3 @@
+#!/bin/bash
+
+gunicorn -c "${FCREPO_CONFIG_DIR}/gunicorn.py" server:fcrepo

+ 1 - 1
lakesuperior/model/ldp_rs.py

@@ -228,7 +228,7 @@ class LdpRs(Ldpr):
         Ensure that a RDF payload for a POST or PUT has a single resource.
         '''
         for s in set(g.subjects()):
-            if not s == self.uri:
+            if not s == self.urn:
                 raise SingleSubjectError(s, self.uuid)
 
 

+ 2 - 0
server.py

@@ -50,3 +50,5 @@ def debug():
     '''
     raise RuntimeError()
 
+if __name__ == "__main__":
+    fcrepo.run(host='0.0.0.0')

+ 2 - 2
tests/10K_children.py

@@ -5,13 +5,13 @@ import requests
 
 # Generate 10,000 children of root node.
 
-requests.put('http://localhost:5000/ldp/pomegranate')
+requests.put('http://localhost:8000/ldp/pomegranate')
 
 start = arrow.utcnow()
 ckpt = start
 
 for i in range(1, 10000):
-    requests.post('http://localhost:5000/ldp/pomegranate')
+    requests.post('http://localhost:8000/ldp/pomegranate')
     if i % 100 == 0:
         now = arrow.utcnow()
         tdelta = now - ckpt