Skip to content

Commit

Permalink
Begin work on API
Browse files Browse the repository at this point in the history
  • Loading branch information
LadyCailin committed Nov 1, 2016
1 parent a8d77a4 commit 37ae630
Show file tree
Hide file tree
Showing 7 changed files with 95 additions and 36 deletions.
Expand Up @@ -24,4 +24,11 @@ interface DeploymentMethod {
*/
void finish();

/**
* Should return a string that, given the input parameter, will be a unique (but human readable)
* identifier for that particular resource location.
* @return
*/
String getID();

}
Expand Up @@ -51,4 +51,9 @@ public boolean deploy(InputStream data, String toLocation) {
public void finish() {
}

@Override
public String getID() {
return rootDirectory;
}

}
Expand Up @@ -26,4 +26,9 @@ public void finish() {
SSHWrapper.closeSessions();
}

@Override
public String getID() {
return remote;
}

}
104 changes: 69 additions & 35 deletions src/main/java/com/laytonsmith/tools/docgen/sitedeploy/SiteDeploy.java
Expand Up @@ -19,6 +19,7 @@
import com.laytonsmith.core.MethodScriptFileLocations;
import com.laytonsmith.core.Static;
import com.laytonsmith.core.exceptions.CRE.CREThrowable;
import com.laytonsmith.core.exceptions.ConfigCompileException;
import com.laytonsmith.core.functions.Function;
import com.laytonsmith.persistence.DataSourceException;
import com.laytonsmith.persistence.PersistenceNetwork;
Expand Down Expand Up @@ -47,6 +48,7 @@
import java.util.Map;
import java.util.Queue;
import java.util.Set;
import java.util.TreeMap;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
Expand Down Expand Up @@ -613,9 +615,9 @@ public void run() {
if (notificationAboutLocalCache) {
hash = getLocalMD5(new ByteArrayInputStream(c));
try {
if (lc.containsKey(toLocation)) {
if (lc.containsKey(deploymentMethod.getID() + toLocation)) {
if (useLocalCache) {
String cacheHash = lc.get(toLocation);
String cacheHash = lc.get(deploymentMethod.getID() + toLocation);
if (cacheHash.equals(hash)) {
skipUpload = true;
}
Expand All @@ -632,7 +634,7 @@ public void run() {
}
if (pn != null && notificationAboutLocalCache && hash != null) {
try {
lc.put(toLocation, hash);
lc.put(deploymentMethod.getID() + toLocation, hash);
pn.set(dm, new String[]{"site_deploy", "local_cache"}, JSONValue.toJSONString(lc));
} catch (DataSourceException | ReadOnlyException | IllegalArgumentException ex) {
Logger.getLogger(SiteDeploy.class.getName()).log(Level.SEVERE, null, ex);
Expand Down Expand Up @@ -888,40 +890,72 @@ private void deployLearningTrail() throws IOException {
}

private void deployAPI() {
Set<Class<? extends Function>> functionClasses = ClassDiscovery.getDefaultInstance().loadClassesWithAnnotationThatExtend(api.class, Function.class);
// A map of where it maps the enclosing class to the list of function rows, which contains a list of
// table cells.
Map<Class<?>, List<List<String>>> data = new HashMap<>();
for(Class<? extends Function> functionClass : functionClasses) {
if(!data.containsKey(functionClass.getEnclosingClass())) {
data.put(functionClass.getEnclosingClass(), new ArrayList<List<String>>());
}
List<List<String>> d = data.get(functionClass.getEnclosingClass());
List<String> c = new ArrayList<>();
// function name, returns, arguments, throws, description, since, restricted
Function f;
try {
f = ReflectionUtils.instantiateUnsafe(functionClass);
} catch(ReflectionUtils.ReflectionException ex) {
throw new RuntimeException("While trying to construct " + functionClass + ", got the following", ex);
}
DocGen.DocInfo di = new DocGen.DocInfo(f.docs());
c.add(f.getName());
c.add(di.ret);
c.add(di.args);
List<String> exc = new ArrayList<>();
if(f.thrown() != null) {
for(Class<? extends CREThrowable> e : f.thrown()) {
CREThrowable ct = ReflectionUtils.instantiateUnsafe(e);
exc.add("{{object|" + ct.getName() + "}}");
generateQueue.submit(new Runnable() {
@Override
public void run() {
Set<Class<? extends Function>> functionClasses = ClassDiscovery.getDefaultInstance().loadClassesWithAnnotationThatExtend(api.class, Function.class);
// A map of where it maps the enclosing class to the list of function rows, which contains a list of
// table cells.
Map<Class<?>, List<List<String>>> data = new TreeMap<>();
for(Class<? extends Function> functionClass : functionClasses) {
if(!data.containsKey(functionClass.getEnclosingClass())) {
data.put(functionClass.getEnclosingClass(), new ArrayList<List<String>>());
}
List<List<String>> d = data.get(functionClass.getEnclosingClass());
List<String> c = new ArrayList<>();
// function name, returns, arguments, throws, description, since, restricted
Function f;
try {
f = ReflectionUtils.instantiateUnsafe(functionClass);
} catch(ReflectionUtils.ReflectionException ex) {
throw new RuntimeException("While trying to construct " + functionClass + ", got the following", ex);
}
DocGen.DocInfo di = new DocGen.DocInfo(f.docs());
c.add(f.getName());
c.add(di.ret);
c.add(di.args);
List<String> exc = new ArrayList<>();
if(f.thrown() != null) {
for(Class<? extends CREThrowable> e : f.thrown()) {
CREThrowable ct = ReflectionUtils.instantiateUnsafe(e);
exc.add("{{object|" + ct.getName() + "}}");
}
}
c.add(StringUtils.Join(exc, "<br>"));
StringBuilder desc = new StringBuilder();
desc.append(di.desc);
if(di.extendedDesc != null) {
desc.append(" [[functions/").append(f.getName()).append("|See more...]]");
}
try {
if(f.examples() != null && f.examples().length > 0) {
desc.append("<br>([[functions/").append(f.getName()).append("#Examples|Examples...]]");
}
} catch (ConfigCompileException ex) {
Logger.getLogger(SiteDeploy.class.getName()).log(Level.SEVERE, null, ex);
}
c.add(desc.toString());
c.add(f.since().toString());
c.add("<span class=\"api_" + (f.isRestricted() ? "yes" : "no") + "\">" + (f.isRestricted() ? "Yes" : "No")
+ "</span>");
d.add(c);
}
// data is now constructed.
StringBuilder b = new StringBuilder();
for(Map.Entry<Class<?>, List<List<String>>> e : data.entrySet()) {
Class<?> clazz = e.getKey();
b.append("== ").append(clazz.getSimpleName()).append(" ==\n");
String docs = (String)ReflectionUtils.invokeMethod(clazz, null, "docs");
b.append("<p>").append(docs).append("</p>");
}
}
c.add(StringUtils.Join(exc, "<br>"));
StringBuilder desc = new StringBuilder();

c.add(desc.toString());
d.add(c);
}
writePage("API", b.toString(), "API",
Arrays.asList(new String[]{"API", "functions"}),
"A list of all " + Implementation.GetServerType().getBranding() + " functions");
currentGenerateTask.addAndGet(1);
}
});
totalGenerateTasks.addAndGet(1);
}

private void deployEventAPI() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/docs/About
Expand Up @@ -16,7 +16,7 @@ For more information about how this site is generated, or information about the
Portions of the site are copyright &copy; 2016 - %%CURRENTYEAR%% by the %%branding%% Team, based on works
contributed under the license of the MethodScript project.

This site may use cookies. See our privacy policy [[privacy_policy|here]].
This site may use cookies. See our privacy policy [[privacy_policy.html|here]].

<div style="%%showTemplateCredit%%">The site template is provided by <a href="http://templated.co">TEMPLATED</a>.</div>

Expand Down
7 changes: 7 additions & 0 deletions src/main/resources/docs/Help
@@ -0,0 +1,7 @@


Need more help?

See the forums at the link above, or find us on IRC on esper.net #CommandHelper, or just use the widget below:

<iframe src="https://kiwiirc.com/client/irc.esper.net/?nick=kiwi-user%7C?&theme=cli#CommandHelper" style="border:0; width:100%; height:450px;"></iframe>
1 change: 1 addition & 0 deletions src/main/resources/siteDeploy/frame.html
Expand Up @@ -66,6 +66,7 @@ <h1><a href="%%siteRoot%%">%%branding%%</a></h1>
<li><a href="%%siteRoot%%">Home</a></li>
<li><a href="%%siteRoot%%docs/">Docs</a></li>
<li><a href="http://forum.sk89q.com/forums/commandhelper.20/">Forums</a></li>
<li><a href="%%docsBase%%Help.html">Help</a></li>
</ul>
</nav>
</header>
Expand Down

0 comments on commit 37ae630

Please sign in to comment.