use of com.ramussoft.common.Engine in project ramus by Vitaliy-Yakovchuk.
the class ElistTabView method createComponent.
@Override
public JComponent createComponent() {
final Engine engine = framework.getEngine();
AccessRules rules = framework.getAccessRules();
ElementListPropertyPersistent p = (ElementListPropertyPersistent) engine.getAttribute(null, elementList);
boolean addListener = q1 == null;
q1 = engine.getQualifier(p.getQualifier1());
q2 = engine.getQualifier(p.getQualifier2());
readOnly = !((rules.canUpdateAttribute(q1.getId(), elementList.getId())) && (rules.canUpdateAttribute(q2.getId(), elementList.getId())));
if (addListener) {
engine.addElementAttributeListener(q1, leftAttributeListener);
engine.addElementAttributeListener(q2, rightAttributeListener);
}
left = new ElistPanel(framework, engine, rules, q1, elementList) {
@Override
public String getPropertiesPrefix() {
return "left" + elementList.getId();
}
@Override
public void changeSelection(SelectionEvent event) {
ElistTabView.this.changeSelection(this, event);
}
@Override
public JComponent createComponent() {
unique = null;
if (getComponent() != null) {
left.clearSelection();
left.setSelectType(SelectType.RADIO);
right.clearSelection();
right.setSelectType(SelectType.RADIO);
}
JComponent component2 = super.createComponent();
getComponent().getPane().getVerticalScrollBar().addAdjustmentListener(new AdjustmentListener() {
@Override
public void adjustmentValueChanged(AdjustmentEvent e) {
comp.repaint();
}
});
getComponent().getTable().getModel().addTableModelListener(modelListener);
getComponent().getTable().getSelectionModel().addListSelectionListener(new ListSelectionListener() {
@SuppressWarnings("unchecked")
@Override
public void valueChanged(ListSelectionEvent e) {
TreeTableNode node = left.getComponent().getTable().getSelectedNode();
if ((node != null) && (node.getRow() != null)) {
leftElement = node.getRow().getElement();
leftValue = (List<ElementListPersistent>) engine.getAttribute(leftElement, elementList);
if (unique == null)
rightValue = null;
} else
leftValue = null;
comp.repaint();
}
});
return component2;
}
@Override
public void setSelectType(SelectType selectType) {
if ((!readOnly) || (selectType.equals(SelectType.NONE)))
super.setSelectType(selectType);
}
};
right = new ElistPanel(framework, engine, rules, q2, elementList) {
@Override
public String getPropertiesPrefix() {
return "right" + elementList.getId();
}
@Override
public void changeSelection(SelectionEvent event) {
ElistTabView.this.changeSelection(this, event);
}
@Override
public JComponent createComponent() {
unique = null;
if (getComponent() != null) {
left.clearSelection();
left.setSelectType(SelectType.RADIO);
right.clearSelection();
right.setSelectType(SelectType.RADIO);
}
JComponent component2 = super.createComponent();
getComponent().getPane().getVerticalScrollBar().addAdjustmentListener(new AdjustmentListener() {
@Override
public void adjustmentValueChanged(AdjustmentEvent e) {
comp.repaint();
}
});
getComponent().getTable().getModel().addTableModelListener(modelListener);
getComponent().getTable().getSelectionModel().addListSelectionListener(new ListSelectionListener() {
@SuppressWarnings("unchecked")
@Override
public void valueChanged(ListSelectionEvent e) {
TreeTableNode node = right.getComponent().getTable().getSelectedNode();
if ((node != null) && (node.getRow() != null)) {
rightElement = node.getRow().getElement();
rightValue = (List<ElementListPersistent>) engine.getAttribute(rightElement, elementList);
if (unique == null)
leftValue = null;
} else
rightValue = null;
comp.repaint();
}
});
return component2;
}
@Override
public void setSelectType(SelectType selectType) {
if ((!readOnly) || (selectType.equals(SelectType.NONE)))
super.setSelectType(selectType);
}
};
JSplitPane pane1 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
pane1.setRightComponent(rightContainer);
comp.setBackground(Color.white);
pane1.setLeftComponent(comp);
JSplitPane pane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
pane.setLeftComponent(leftContainer);
Properties properties = engine.getProperties(getProperiesName());
revert = Options.getBoolean("REVERT", false, properties);
revertAction.putValue(Action.SELECTED_KEY, revert);
addPanels();
JPanel panel = new JPanel(new BorderLayout());
panel.add(pane1, BorderLayout.CENTER);
pane.setRightComponent(panel);
component = new JPanel(new BorderLayout());
component.add(pane, BorderLayout.CENTER);
Options.loadOptions(component, properties);
if (readOnly) {
left.setSelectType(SelectType.NONE);
right.setSelectType(SelectType.NONE);
}
return component;
}
use of com.ramussoft.common.Engine in project ramus by Vitaliy-Yakovchuk.
the class RamusService method close.
public void close() {
if (myThread != null)
server.getLogins().remove(myThread);
Engine engine = userEngineFactory.getJournaledEngine();
if (engine instanceof CachedEngine) {
((CachedEngine) engine).removeBranchCache();
}
IEngine deligate = engine.getDeligate();
if (deligate instanceof IEngineImpl) {
try {
((IEngineImpl) deligate).getTemplate().close();
} catch (SQLException e) {
e.printStackTrace();
}
}
if (directoryJournalFactory != null) {
directoryJournalFactory.close();
delete(directoryJournalFactory.getDirectory());
}
}
use of com.ramussoft.common.Engine in project ramus by Vitaliy-Yakovchuk.
the class EngineConnection method main.
public static void main(String[] args) throws Exception {
EngineConnection connection = new EngineConnection();
Engine engine = connection.getEngine();
System.out.println(engine.getQualifiers());
connection.close();
}
use of com.ramussoft.common.Engine in project ramus by Vitaliy-Yakovchuk.
the class EngineFactory method createJournaledEngine.
public Engine createJournaledEngine(DirectoryJournalFactory journalFactory) {
try {
JDBCTemplate template = new JDBCTemplate(createNewConnectionA());
suits = new ArrayList<PluginProvider>();
suits.add(new SimpleAttributePluginSuit());
suits.add(new IDEF0PluginProvider());
Properties ps = getPropeties();
if (ps != null) {
String suitNames = ps.getProperty("AdditionalSuits");
if (suitNames != null)
PluginFactory.loadAdditionalSuits(suitNames, suits);
canUndoRedo = !"false".equals(ps.getProperty("CanUndoRedo"));
}
suits.addAll(getAdditionalSuits());
createUniversalPersistentFactory(template, (ps == null) ? null : ps.getProperty("PersistentPluginsProvider"));
factory = createPluginFactory(suits);
String prefix = "ramus_";
impl = new ServerIEngineImpl(0, template, prefix, factory);
accessor = impl.getAccessor();
persistentFactory = new PersistentFactory(prefix, factory.getAttributePlugins(), template);
persistentFactory.rebuild();
checkIfGroupsExists();
Engine result;
Journaled journaled;
if (cachedData == null) {
JournaledEngine journaledEngine2 = new JournaledEngine(factory, impl, persistentFactory.getRows(), journalFactory, accessor);
result = journaledEngine2;
journaled = journaledEngine2.getJournal();
} else {
JournaledEngine engine = new JournaledEngine(factory, impl, persistentFactory.getRows(), journalFactory, accessor) {
@Override
protected void initPlugins(PluginFactory pluginFactory, AccessRules accessor) {
}
};
journaled = engine.getJournal();
CachedEngine cachedEngine = new CachedEngine(engine, cachedData);
for (Plugin plugin : factory.getPlugins()) plugin.init(cachedEngine, accessor);
result = cachedEngine;
}
EngineLogExtension engineLogExtension = new EngineLogExtension(result, journaled);
log = new Log(result, journaled) {
protected Event createEvent(String type, UpdateEventCallback callback) {
String user = "admin";
if (impl.getServerAccessRules() != null)
user = impl.getServerAccessRules().getUser().getLogin();
long id = impl.nextValue("qualifiers_log_seq");
return callback.createEvent(this, id, new Timestamp(System.currentTimeMillis()), type, user, null);
}
};
log.addExtension(engineLogExtension);
log.addExtension(new StorageLogExtension(new JDBCTemplate(createNewConnection()), prefix));
return result;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
use of com.ramussoft.common.Engine in project ramus by Vitaliy-Yakovchuk.
the class EngineFactory method createPluginFactory.
protected PluginFactory createPluginFactory(List<PluginProvider> list) {
ArrayList<Plugin> plugins = new ArrayList<Plugin>();
for (PluginProvider suit : list) {
plugins.addAll(suit.getPlugins());
}
plugins.add(new AbstractPlugin() {
@Override
public String getName() {
return "Log";
}
@Override
public Class getFunctionalInterface() {
return ILog.class;
}
@Override
public Object createFunctionalInterfaceObject(Engine engine, IEngine iEngine) {
return log;
}
});
PluginFactory factory = new PluginFactory(plugins);
return factory;
}
Aggregations