Source Code Cross Referenced for MemoryStorePersistor.java in  » Net » Terracotta » com » tc » objectserver » persistence » impl » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » Terracotta » com.tc.objectserver.persistence.impl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
003:         * notice. All rights reserved.
004:         */
005:        package com.tc.objectserver.persistence.impl;
006:
007:        import com.tc.io.serializer.api.StringIndex;
008:        import com.tc.logging.TCLogger;
009:        import com.tc.logging.TCLogging;
010:        import com.tc.memorydatastore.client.MemoryDataStoreClient;
011:        import com.tc.objectserver.persistence.api.ClassPersistor;
012:        import com.tc.objectserver.persistence.api.ClientStatePersistor;
013:        import com.tc.objectserver.persistence.api.ManagedObjectPersistor;
014:        import com.tc.objectserver.persistence.api.PersistenceTransactionProvider;
015:        import com.tc.objectserver.persistence.api.PersistentCollectionFactory;
016:        import com.tc.objectserver.persistence.api.PersistentMapStore;
017:        import com.tc.objectserver.persistence.api.Persistor;
018:        import com.tc.objectserver.persistence.api.TransactionPersistor;
019:        import com.tc.properties.TCPropertiesImpl;
020:        import com.tc.util.sequence.MutableSequence;
021:
022:        public class MemoryStorePersistor implements  Persistor {
023:            private static final String ROOT_DB_NAME = "roots";
024:            private static final String OBJECT_DB_NAME = "objects";
025:            private static final String TRANSACTION_DB_NAME = "transactions";
026:            private static final String CLUSTER_STATE_STORE = "clusterstatestore";
027:            private static final String MAP_DB_NAME = "mapsdatabase";
028:
029:            private final ClientStatePersistor clientStatePersistor;
030:            private final StringIndex stringIndex;
031:            private final ManagedObjectPersistor managedObjectPersistor;
032:            private final ClassPersistor clazzPersistor;
033:            private final PersistentMapStore clusterStateStore;
034:            private final TransactionPersistor transactionPerisistor;
035:            private final MutableSequence mutableSequence;
036:            private final PersistenceTransactionProvider persistenceTransactionProvider;
037:            private final MemoryStoreCollectionFactory memoryStoreCollectionFactory;
038:            private final MemoryStoreCollectionsPersistor memoryStoreCollectionsPersistor;
039:
040:            private final String PropertyMemoryStoreHost = "l2.memorystore.host";
041:            private final String PropertyMemoryStorePort = "l2.memorystore.port";
042:            private final String memoryStoreHost;
043:            private final int memoryStorePort;
044:
045:            public MemoryStorePersistor() {
046:                this (TCLogging.getLogger(MemoryStorePersistor.class));
047:            }
048:
049:            public MemoryStorePersistor(TCLogger logger) {
050:                memoryStoreHost = TCPropertiesImpl.getProperties().getProperty(
051:                        PropertyMemoryStoreHost);
052:                memoryStorePort = TCPropertiesImpl.getProperties().getInt(
053:                        PropertyMemoryStorePort);
054:
055:                this .persistenceTransactionProvider = new NullPersistenceTransactionProvider();
056:                this .clientStatePersistor = new InMemoryClientStatePersistor();
057:                this .stringIndex = new StringIndexImpl(
058:                        new NullStringIndexPersistor());
059:                this .clazzPersistor = new InMemoryClassPersistor();
060:                this .memoryStoreCollectionFactory = new MemoryStoreCollectionFactory();
061:                MemoryDataStoreClient mapsDB = new MemoryDataStoreClient(
062:                        MAP_DB_NAME, memoryStoreHost, memoryStorePort);
063:                this .memoryStoreCollectionsPersistor = new MemoryStoreCollectionsPersistor(
064:                        logger, mapsDB, this .memoryStoreCollectionFactory);
065:                this .memoryStoreCollectionFactory.setMemoryDataStore(mapsDB);
066:                this .memoryStoreCollectionFactory
067:                        .setPersistor(this .memoryStoreCollectionsPersistor);
068:
069:                MemoryDataStoreClient objectDB = new MemoryDataStoreClient(
070:                        OBJECT_DB_NAME, memoryStoreHost, memoryStorePort);
071:                MemoryDataStoreClient rootDB = new MemoryDataStoreClient(
072:                        ROOT_DB_NAME, memoryStoreHost, memoryStorePort);
073:                this .managedObjectPersistor = new MemoryStoreManagedObjectPersistor(
074:                        logger, objectDB, new InMemorySequenceProvider(),
075:                        rootDB, this .memoryStoreCollectionsPersistor);
076:                MemoryDataStoreClient transactionStore = new MemoryDataStoreClient(
077:                        TRANSACTION_DB_NAME, memoryStoreHost, memoryStorePort);
078:                this .transactionPerisistor = new MemoryStoreTransactionPersistor(
079:                        transactionStore);
080:                this .mutableSequence = new InMemorySequenceProvider();
081:                MemoryDataStoreClient clusterStateDB = new MemoryDataStoreClient(
082:                        CLUSTER_STATE_STORE, memoryStoreHost, memoryStorePort);
083:                this .clusterStateStore = new MemoryStorePersistentMapStore(
084:                        clusterStateDB);
085:            }
086:
087:            public void close() {
088:                return;
089:            }
090:
091:            public PersistenceTransactionProvider getPersistenceTransactionProvider() {
092:                return this .persistenceTransactionProvider;
093:            }
094:
095:            public ClientStatePersistor getClientStatePersistor() {
096:                return this .clientStatePersistor;
097:            }
098:
099:            public ManagedObjectPersistor getManagedObjectPersistor() {
100:                return this .managedObjectPersistor;
101:            }
102:
103:            public TransactionPersistor getTransactionPersistor() {
104:                return this .transactionPerisistor;
105:            }
106:
107:            public MutableSequence getGlobalTransactionIDSequence() {
108:                return this .mutableSequence;
109:            }
110:
111:            public StringIndex getStringIndex() {
112:                return stringIndex;
113:            }
114:
115:            public ClassPersistor getClassPersistor() {
116:                return this .clazzPersistor;
117:            }
118:
119:            public PersistentCollectionFactory getPersistentCollectionFactory() {
120:                return this .memoryStoreCollectionFactory;
121:            }
122:
123:            public PersistentMapStore getClusterStateStore() {
124:                return clusterStateStore;
125:            }
126:
127:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.