}
IContainer container = (IContainer) resource;
final IFile file = container.getFile(new Path(fileName));
+ String className = getClassName(fileName);
+
try {
- InputStream stream = openContentStream();
+ InputStream stream;
+ if (className == null) {
+ stream = openContentStream();
+ } else {
+ stream = openContentStreamClass(className);
+ }
if (file.exists()) {
file.setContents(stream, true, true, monitor);
} else {
}
/**
+ * Check if the filename is like this anyname.class.php
+ * @param fileName the filename
+ * @return the anyname or null
+ */
+ private static final String getClassName(final String fileName) {
+ final int lastDot = fileName.lastIndexOf('.');
+ if (lastDot == -1) return null;
+ final int precLastDot = fileName.lastIndexOf('.',lastDot-1);
+ if (precLastDot == -1) return null;
+ if (!fileName.substring(precLastDot+1,lastDot).toUpperCase().equals("CLASS")) return null;
+ return fileName.substring(0,precLastDot-1);
+ }
+
+ /**
+ * We will initialize file contents for a class
+ * @param className the classname
+ */
+ private InputStream openContentStreamClass(final String className) {
+ StringBuffer contents = new StringBuffer("<?php\n\n");
+ contents.append("class ");
+ contents.append(className);
+ contents.append(" {\n\n");
+ contents.append(" function ");
+ contents.append(className);
+ contents.append("() {\n");
+ contents.append(" }\n}\n?>");
+ return new ByteArrayInputStream(contents.toString().getBytes());
+ }
+
+ /**
* We will initialize file contents with a sample text.
*/
private InputStream openContentStream() {
- String className = fileName.substring(0, fileName.length() - 3);
StringBuffer contents = new StringBuffer("<?php\n\n");
contents.append("function f0() {\n\n");
contents.append("}\n\n");