Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
joram
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
joram
joram
Commits
668f76e9
Commit
668f76e9
authored
Feb 04, 2008
by
nobody
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
This commit was manufactured by cvs2svn to create tag 'JORAM_4_3_31'.
parent
fee1a525
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
954 deletions
+0
-954
joram/src/fr/dyade/aaa/jndi2/ha/HADistributedJndiServer.java
joram/src/fr/dyade/aaa/jndi2/ha/HADistributedJndiServer.java
+0
-124
joram/src/fr/dyade/aaa/jndi2/hascn/hascnURLContext.java
joram/src/fr/dyade/aaa/jndi2/hascn/hascnURLContext.java
+0
-747
joram/src/fr/dyade/aaa/jndi2/hascn/hascnURLContextFactory.java
.../src/fr/dyade/aaa/jndi2/hascn/hascnURLContextFactory.java
+0
-83
No files found.
joram/src/fr/dyade/aaa/jndi2/ha/HADistributedJndiServer.java
deleted
100644 → 0
View file @
fee1a525
/*
* JORAM: Java(TM) Open Reliable Asynchronous Messaging
* Copyright (C) 2008 - ScalAgent Distributed Technologies
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA.
*
*/
package
fr
.
dyade
.
aaa
.
jndi2
.
ha
;
import
java.net.ServerSocket
;
import
java.util.StringTokenizer
;
import
java.util.Vector
;
import
org.objectweb.util.monolog.api.BasicLevel
;
import
fr.dyade.aaa.agent.AgentId
;
import
fr.dyade.aaa.agent.AgentServer
;
import
fr.dyade.aaa.jndi2.distributed.ReplicationEntryPoint
;
import
fr.dyade.aaa.jndi2.distributed.ReplicationManager
;
import
fr.dyade.aaa.jndi2.server.AgentEntryPoint
;
import
fr.dyade.aaa.jndi2.server.Container
;
import
fr.dyade.aaa.jndi2.server.Trace
;
public
class
HADistributedJndiServer
{
private
static
HATcpServer
tcpServer
;
public
static
void
init
(
String
args
,
boolean
firstTime
)
throws
Exception
{
if
(
Trace
.
logger
.
isLoggable
(
BasicLevel
.
DEBUG
))
Trace
.
logger
.
log
(
BasicLevel
.
DEBUG
,
"HADistributedJndiServer.init("
+
args
+
','
+
firstTime
+
')'
);
StringTokenizer
st
=
new
StringTokenizer
(
args
);
String
portS
=
st
.
nextToken
();
int
port
=
Integer
.
parseInt
(
portS
);
Vector
list
=
new
Vector
();
while
(
st
.
hasMoreTokens
())
{
String
idS
=
st
.
nextToken
();
Short
id
=
Short
.
valueOf
(
idS
);
list
.
addElement
(
id
);
}
short
[]
serverIds
=
new
short
[
list
.
size
()];
for
(
int
i
=
0
;
i
<
list
.
size
();
i
++)
{
serverIds
[
i
]
=
((
Short
)
list
.
elementAt
(
i
)).
shortValue
();
}
// Create the socket here in order to throw an exception
// if the socket can't be created (even if firstTime is false).
ServerSocket
serverSocket
=
new
ServerSocket
(
port
);
tcpServer
=
new
HATcpServer
(
serverSocket
,
3
,
getDefault
());
tcpServer
.
start
();
if
(
firstTime
)
{
ReplicationManager
manager
=
new
ReplicationManager
(
serverIds
);
AgentEntryPoint
agentEP
=
new
AgentEntryPoint
();
agentEP
.
setRequestManager
(
manager
);
ReplicationEntryPoint
replicationEP
=
new
ReplicationEntryPoint
();
replicationEP
.
setRequestManager
(
manager
);
HARequestManager
haManager
=
new
HARequestManager
();
haManager
.
setRequestManager
(
manager
);
HAEntryPoint
haEP
=
new
HAEntryPoint
();
haEP
.
setHARequestManager
(
haManager
);
Container
container
=
new
Container
();
container
.
addEntryPoint
(
agentEP
);
container
.
addEntryPoint
(
replicationEP
);
container
.
addEntryPoint
(
haEP
);
container
.
setLifeCycleListener
(
haManager
);
container
.
setBagSerializer
(
haManager
);
manager
.
setContainer
(
container
);
container
.
deploy
();
}
}
/**
* Stops the <code>JndiServer</code> service.
*/
public
static
void
stopService
()
{
tcpServer
.
stop
();
}
/**
* Returns the default JndiServer id on the local agent server.
*
* @return the <code>AgentId</code> of the JndiServer
*/
public
static
AgentId
getDefault
()
{
return
getDefault
(
AgentServer
.
getServerId
());
}
/**
* Returns the default JndiServer id on the given agent server.
*
* @param serverId the id of the agent server
* @return the <code>AgentId</code> of the JndiServer
*/
public
static
AgentId
getDefault
(
short
serverId
)
{
return
new
AgentId
(
serverId
,
serverId
,
AgentId
.
LocalJndiServiceStamp
);
}
}
joram/src/fr/dyade/aaa/jndi2/hascn/hascnURLContext.java
deleted
100644 → 0
View file @
fee1a525
This diff is collapsed.
Click to expand it.
joram/src/fr/dyade/aaa/jndi2/hascn/hascnURLContextFactory.java
deleted
100644 → 0
View file @
fee1a525
/*
* JORAM: Java(TM) Open Reliable Asynchronous Messaging
* Copyright (C) 2001 - 2004 ScalAgent Distributed Technologies
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA.
*
* Initial developer(s): David Feliot
* Contributor(s):
*/
package
fr
.
dyade
.
aaa
.
jndi2
.
hascn
;
import
java.util.Hashtable
;
import
javax.naming.Context
;
import
javax.naming.Name
;
import
javax.naming.spi.ObjectFactory
;
import
org.objectweb.util.monolog.api.BasicLevel
;
import
org.objectweb.util.monolog.api.Logger
;
/**
* Context factory for hascnURLContext objects.
* This factory will be used for all "hascn:..." urls provided as Name objects
* for all JNDI operations.
*/
public
class
hascnURLContextFactory
implements
ObjectFactory
{
public
final
static
Logger
logger
;
static
{
logger
=
fr
.
dyade
.
aaa
.
util
.
Debug
.
getLogger
(
"fr.dyade.aaa.jndi2.hascn"
);
}
/**
* Returns an instance of hascnURLContext for a java URL.
*
* If url is null, the result is a context for resolving java URLs.
* If url is a URL, the result is a context named by the URL.
*
* @param url String with a "hascn:" prefix or null.
* @param name Name of context, relative to ctx, or null.
* @param ctx Context relative to which 'name' is named.
* @param env Environment to use when creating the context
*/
public
Object
getObjectInstance
(
Object
url
,
Name
name
,
Context
ctx
,
Hashtable
env
)
throws
Exception
{
if
(
logger
.
isLoggable
(
BasicLevel
.
DEBUG
))
logger
.
log
(
BasicLevel
.
DEBUG
,
"hascnURLContextFactory.getObjectInstance("
+
url
+
','
+
name
+
','
+
ctx
+
','
+
env
+
')'
);
if
(
url
==
null
)
{
return
new
hascnURLContext
(
env
);
}
else
if
(
url
instanceof
String
)
{
// Don't know what to do here
return
null
;
}
else
if
(
url
instanceof
String
[])
{
// Don't know what to do here
return
null
;
}
else
{
// invalid argument
throw
(
new
IllegalArgumentException
(
"hascnURLContextFactory"
));
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment