aboutsummaryrefslogtreecommitdiffstats
path: root/evc/evcbase/src/main/java/com/cablelabs/vcpe/evc/evcbase/repository/EvcRespositoryInMem.java
blob: 15ee788ecc188ee5adbfad7ef88d28c766677a30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*******************************************************************************
* Copyright (c) 2015 CableLabs Inc. and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License, Version 2.0
* which accompanies this distribution, and is available at
* http://www.apache.org/licenses/LICENSE-2.0
*******************************************************************************/

package com.cablelabs.vcpe.evc.evcbase.repository;

import com.cablelabs.vcpe.common.Dbg;
import com.cablelabs.vcpe.evc.evcbase.model.Evc;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
 * Created by steve on 5/24/15.
 */


/*
    Singleton that contains a hashmap which holds instances of Evc objects, indexed by CiS ID
 */

public enum EvcRespositoryInMem implements EvcRespository {
    INSTANCE; // Singleton

    private Map<String, Evc> evcDB = new ConcurrentHashMap<>();

    @Override
  //--------------------------------------------------------
    public Evc add(Evc evc)
  //--------------------------------------------------------
    {
        if ( this.get(evc.getId()) != null ) {
            return null;
        }
        evcDB.put(evc.getId(), evc );
        return evc;
    }

    @Override
  //--------------------------------------------------------
    public Evc get(String evcId) {
        return evcDB.get(evcId);
    }
  //--------------------------------------------------------

    @Override
  //--------------------------------------------------------
    public Evc update(Evc evc)
  //--------------------------------------------------------
    {
        // put returns null if evc did not exist, other returns evc as it stood prior to put
        return evcDB.put(evc.getId(), evc);
    }

    @Override
  //--------------------------------------------------------
    public Evc delete(String evcId)
  //--------------------------------------------------------
    {
        // remove returns null if evc did not exist, other returns evc as it stood prior to remove
        return evcDB.remove(evcId);
    }

    @Override
  //--------------------------------------------------------
    public int count() {
        return evcDB.size();
    }
  //--------------------------------------------------------

    @Override
  //--------------------------------------------------------
    public List<Evc> getAll()
  //--------------------------------------------------------
    {
        List<Evc> evcList = new ArrayList<Evc>(evcDB.values());
        return evcList;
    }

    @Override
  //--------------------------------------------------------
    public void dump(int tab)
  //--------------------------------------------------------
    {
        Dbg.p(tab, "Evc Repo: " + evcDB.size() + " entrie(s)");
        int numEvc = 0;
        for (Evc curEvc : evcDB.values()) {
            numEvc++;
            Dbg.p(tab+1, "<Entry " + numEvc+">");
            curEvc.dump(tab+2);
        }
    }
}